mirror of
https://github.com/LCTT/TranslateProject.git
synced 2024-12-26 21:30:55 +08:00
108 lines
4.6 KiB
Markdown
108 lines
4.6 KiB
Markdown
|
[#]: subject: "Give your Terminal a Retro Look Using this Neat Application"
|
|||
|
[#]: via: "https://www.debugpoint.com/cool-retro-terminal/"
|
|||
|
[#]: author: "Arindam https://www.debugpoint.com/author/admin1/"
|
|||
|
[#]: collector: "lkxed"
|
|||
|
[#]: translator: "wxy"
|
|||
|
[#]: reviewer: "wxy"
|
|||
|
[#]: publisher: "wxy"
|
|||
|
[#]: url: "https://linux.cn/article-15493-1.html"
|
|||
|
|
|||
|
给你的终端一个复古的外观
|
|||
|
======
|
|||
|
|
|||
|
> 想让你的终端有一个复古的外观?本指南将帮助你在 Linux 发行版中安装 Cool Retro Terminal 应用程序。
|
|||
|
|
|||
|
![酷炫复古终端][1]
|
|||
|
|
|||
|
你有没有想过如何在你的 Linux 终端中模仿那些老式 CRT 显示器的外观?
|
|||
|
|
|||
|
那些 CRT 屏幕有自己的粉丝。如果你把苹果 2 或 IBM 3278 终端之类与今天的 4K 显示器显示相比较,它们的外观真的很酷。我并不是说 4K 显示器不好,但有时传统的显示器会让我们想起那些过去的日子。闲话少说。让我们开始安装这个应用程序。
|
|||
|
|
|||
|
### Cool Retro Terminal
|
|||
|
|
|||
|
该应用程序是自由开源的。它被称为 [cool-retro-term][2]。它是轻量级的,有许多自定义选项,有预先设置的配置文件,如 Apple 2 等。它还能在你的终端中提供那些静态噪音和扫描线效果。很酷,不是吗?
|
|||
|
|
|||
|
它是用 Qt 构建的,需要 Qt 5.2 或更高版本。如果你使用的是最新的 Linux 发行版,在依赖性方面你应该没问题。
|
|||
|
|
|||
|
![绿色扫描线主题][3]
|
|||
|
|
|||
|
### 如何下载和安装 Cool Retro Terminal
|
|||
|
|
|||
|
Ubuntu、Linux Mint 和其他基于 Debian 的发行版:
|
|||
|
|
|||
|
使用下面的简单命令在你的 Ubuntu 和其他相关发行版中安装这个应用程序:
|
|||
|
|
|||
|
```
|
|||
|
sudo apt install cool-retro-term
|
|||
|
```
|
|||
|
|
|||
|
Arch Linux:
|
|||
|
|
|||
|
这个软件包在 Arch 用户仓库(AUR)中可用。如果你没有启用 AUR,请使用 [本指南][4] 启用它,然后使用以下命令来安装它:
|
|||
|
|
|||
|
```
|
|||
|
pacman -S cool-retro-term
|
|||
|
```
|
|||
|
|
|||
|
Fedora、RHEL 和其他相关发行版:
|
|||
|
|
|||
|
对于 Fedora 和其他相关的 Linux,使用下面的命令来安装这个应用程序:
|
|||
|
|
|||
|
```
|
|||
|
sudo dnf install cool-retro-term
|
|||
|
```
|
|||
|
|
|||
|
Appimage:
|
|||
|
|
|||
|
也有一个 AppImage 格式的独立的可执行程序,你可以直接下载并运行。不需要安装。按照下面的命令来做:
|
|||
|
|
|||
|
```
|
|||
|
wget https://github.com/Swordfish90/cool-retro-term/releases/download/1.1.1/Cool-Retro-Term-1.1.1-x86_64.AppImage
|
|||
|
chmod a+x Cool-Retro-Term-1.1.1-x86_64.AppImage
|
|||
|
./Cool-Retro-Term-1.1.1-x86_64.AppImage
|
|||
|
```
|
|||
|
|
|||
|
注意:在 GitHub 中,没有 1.2.0 以后的版本的 AppImage 构建版。
|
|||
|
|
|||
|
### 配置
|
|||
|
|
|||
|
安装完成后,你可以在应用程序菜单中找到终端应用程序 “Cool Retro Term”。那么,启动该应用程序并享受其中吧。
|
|||
|
|
|||
|
请记住,这覆盖你的 Linux 发行版中的默认控制台/终端应用程序。它是一个独立的控制台应用程序。
|
|||
|
|
|||
|
配置选项可以通过右键菜单访问。
|
|||
|
|
|||
|
上下文菜单给你提供了以下预设。然后你可以通过设置窗口对它们中的每一个进行颜色和外观设置的配置。例如,如果你想要更多的透明度、对比度或更多的噪音、环境光或闪烁。所有这些都可以从下面的设置窗口通过几个选项进行配置。
|
|||
|
|
|||
|
而且,你可以轻松地制作你自己的主题。
|
|||
|
|
|||
|
![Cool Retro Term 中的预装主题][5]
|
|||
|
|
|||
|
![设置中的各种效果][6]
|
|||
|
|
|||
|
### 总结
|
|||
|
|
|||
|
Cool Retro Terminal 是一个用于 Linux 桌面的老式显示管终端,它可以让你体验到如同坐在复古终端前的感觉。你可能喜欢,也可能不喜欢,而且人们几乎不把它作为日常使用。但它仍然是一个漂亮的终端,可以时不时地体验一下,以摆脱平凡的终端。
|
|||
|
|
|||
|
你喜欢复古的外观吗?你最喜欢的主题是什么?请在下面的评论区告诉我。
|
|||
|
|
|||
|
--------------------------------------------------------------------------------
|
|||
|
|
|||
|
via: https://www.debugpoint.com/cool-retro-terminal/
|
|||
|
|
|||
|
作者:[Arindam][a]
|
|||
|
选题:[lkxed][b]
|
|||
|
译者:[wxy](https://github.com/wxy)
|
|||
|
校对:[wxy](https://github.com/wxy)
|
|||
|
|
|||
|
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
|||
|
|
|||
|
[a]: https://www.debugpoint.com/author/admin1/
|
|||
|
[b]: https://github.com/lkxed
|
|||
|
[1]: https://www.debugpoint.com/wp-content/uploads/2021/12/cool-retro-terminal-1024x576.jpg
|
|||
|
[2]: https://github.com/Swordfish90/cool-retro-term
|
|||
|
[3]: https://www.debugpoint.com/wp-content/uploads/2021/12/Green-Scanlines-Theme-1024x594.jpg
|
|||
|
[4]: https://www.debugpoint.com/2021/01/install-yay-arch/
|
|||
|
[5]: https://www.debugpoint.com/wp-content/uploads/2021/12/Pre-loaded-Themes-in-Cool-Retro-Term-1024x599.jpg
|
|||
|
[6]: https://www.debugpoint.com/wp-content/uploads/2021/12/Various-Effects-in-Settings.jpg
|