TranslateProject/translated/tech/20230721.1 ⭐️ Install and Use Additional Gedit Color Themes.md

205 lines
7.2 KiB
Markdown
Raw Normal View History

[#]: subject: "Install and Use Additional Gedit Color Themes"
[#]: via: "https://itsfoss.com/gedit-themes/"
[#]: author: "Sreenath https://itsfoss.com/author/sreenath/"
[#]: collector: "lkxed"
2023-08-08 09:16:18 +08:00
[#]: translator: "geekpi"
[#]: reviewer: " "
[#]: publisher: " "
[#]: url: " "
2023-08-10 08:48:12 +08:00
安装和使用额外的 Gedit 颜色主题
======
2023-08-10 08:48:12 +08:00
Gedit 是 Linux 世界中最流行的文本编辑器之一。它主要是一个文本编辑器,但[经过一些调整][1],你也可以使用它进行编程。
2023-08-10 08:48:12 +08:00
现在程序员通常更喜欢较暗的主题Gedit 对此并不陌生。它有很多主题可供选择。
2023-08-10 08:48:12 +08:00
但是,如果你对它们不满意,你也可以安装第三方配色方案。如果需要,你甚至可以创建自己的配色方案,使其完全独一无二。
2023-08-10 08:48:12 +08:00
首先让我向你展示如何更改默认的 Gedit 主题,然后我将分享如何安装其他第三方主题。
2023-08-10 08:48:12 +08:00
### 更改默认的 Gedit 主题
2023-08-10 08:48:12 +08:00
正如我之前提到的Gedit 带有一些自己的配色方案。你可以轻松切换到它们。
2023-08-10 08:48:12 +08:00
转到右上角的菜单并选择_首选项_。
![Select Preferences from the top-right hamburger menu][2]
2023-08-10 08:48:12 +08:00
现在,转到字体和颜色选项卡。
![Select the Fonts & Colors tab in the preferences section for changing colors][3]
2023-08-10 08:48:12 +08:00
在这里,你可以更改配色方案。你可以在下面的截图中看到所有配色方案的外观。
![][4]
![][5]
![][6]
![][7]
![][8]
![][9]
![][10]
![][11]
![][12]
2023-08-10 08:48:12 +08:00
不喜欢你所看到的? 让我们探索一下第三方 Gedit 主题。
2023-08-10 08:48:12 +08:00
### 安装第三方配色方案
2023-08-10 08:48:12 +08:00
你需要先从互联网下载所需的配色方案文件,然后从首选项将它们添加到 Gedit 或将它们放在 .local/share/gedit/styles 文件夹中。
2023-08-10 08:48:12 +08:00
#### 步骤 1下载配色方案文件
2023-08-10 08:48:12 +08:00
第三方 Gedit 主题可在各种 GitHub 仓库中找到。为了你的方便,我列出了一些仓库,你可以在其中找到很多方案文件。
2023-08-10 08:48:12 +08:00
- [Mig 的方案][13](更好看)
- [gmate 的方案][14]
- [GNOME Wiki][15]
2023-08-10 08:48:12 +08:00
- [其他仓库][16]
- [Gnome 外观][17]
2023-08-10 08:48:12 +08:00
在上面的仓库中,你可以找到 XML 文件。打开主题 XML 文件并使用_将文件另存为原始数据_选项下载它们如下所示。
![Download XML files for Gedit themes][18]
2023-08-10 08:48:12 +08:00
#### 步骤 2安装单独的主题文件
2023-08-10 08:48:12 +08:00
如果你精心挑选了一些主题文件,你可以使用 Gedit 添加方案功能一一安装它们。为此请打开_首选项>字体和颜色_选项卡。现在单击左下角的 “+” 符号:
![Click on the "+" sign on Fonts & Colors page for adding individual XML files][19]
2023-08-10 08:48:12 +08:00
从文件浏览器中,选择下载的主题文件,然后单击“确定”。
!["Neon", a newly installed theme][20]
2023-08-10 08:48:12 +08:00
该主题现在将在同一“字体和颜色”选项卡上可见,你可以通过单击它进行切换。
2023-08-10 08:48:12 +08:00
#### 步骤 2 替代:批量安装主题
2023-08-10 08:48:12 +08:00
你是否下载了整个 GitHub 主题仓库? 那么一一安装主题就不方便了。不用担心Gedit 有可用于批量安装的颜色主题目录。
2023-08-10 08:48:12 +08:00
你必须将所有 XML 文件复制并粘贴到 `.local/share/gedit/styles`
2023-08-10 08:48:12 +08:00
之后,你将在“字体和颜色”选项卡上获得所有主题的缩略图。
![Fonts & Colors tab will list all the user installed third partyy themes, that are available for switching][21]
2023-08-10 08:48:12 +08:00
如果没有 _Styles_ 目录,请创建一个。现在,主题将可供该特定用户使用。
💡
2023-08-10 08:48:12 +08:00
在 Linux Mint 上,你可以将 XML 文件复制到 `/usr/share/gtksourceview-3.0` 目录Gedit 和 Xed 编辑器都可以访问该目录。
2023-08-10 08:48:12 +08:00
### 删除 Gedit 主题
2023-08-10 08:48:12 +08:00
如果你不喜欢某些主题,可以从该位置删除这些文件。或者,转到字体和颜色部分。现在选择你要删除的主题,然后按左下角的 “-” 号。
![Select theme that you want to remove from the list and press "-" button][22]
2023-08-10 08:48:12 +08:00
这将删除该特定的配色方案。
2023-08-10 08:48:12 +08:00
### 一些好看的 Gedit 主题
2023-08-10 08:48:12 +08:00
下面的截图给出了我的一些建议。
#### Blackboard
![Blackboard (gmate)][23]
#### Catppuccin
2023-08-10 08:48:12 +08:00
[Catppuccin][24] 是一个深色的 Gedit如果你使用任何类似的 GTK 主题,那就太好了。
![Catppuccin][25]
#### Lowlight
![Lowlight theme from gmate][26]
#### Midnight
![Midnight (gmate)][27]
#### Monakai
![Monakai (gmate)][28]
#### Neopro
![Neopro theme from gmate][29]
#### Plastic Code Wrap
![Plastic Code Wrap theme from gmate][30]
#### Slate
![Slate (gmate)][31]
#### Vibrant Fun
![Vibrant Fun (gmate / mig)][32]
2023-08-10 08:48:12 +08:00
你可以通过搜索 [GitHub 话题][33]和仓库来获取更多主题。
2023-08-10 08:48:12 +08:00
### 更多 Gedit 调整
2023-08-10 08:48:12 +08:00
这只是众多[调整 Gedit 的方法][1]之一。这里还有更多内容供你探索。
2023-08-10 08:48:12 +08:00
享受更多颜色的 Gedit :)
--------------------------------------------------------------------------------
via: https://itsfoss.com/gedit-themes/
作者:[Sreenath][a]
选题:[lkxed][b]
2023-08-10 08:48:12 +08:00
译者:[geekpi](https://github.com/geekpi)
校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]: https://itsfoss.com/author/sreenath/
[b]: https://github.com/lkxed/
[1]: https://itsfoss.com/gedit-tweaks/
[2]: https://itsfoss.com/content/images/2023/07/select-preferences.png
[3]: https://itsfoss.com/content/images/2023/07/Fonts-and-Colors-tab-change-default-themes.png
[4]: https://itsfoss.com/content/images/2023/07/Default-Classic.png
[5]: https://itsfoss.com/content/images/2023/07/Default-Cobalt.png
[6]: https://itsfoss.com/content/images/2023/07/Default-Kate.png
[7]: https://itsfoss.com/content/images/2023/07/Default-Oblivion.png
[8]: https://itsfoss.com/content/images/2023/07/Default-Solarized-Dark.png
[9]: https://itsfoss.com/content/images/2023/07/default-Solarized-Light.png
[10]: https://itsfoss.com/content/images/2023/07/Default-tango.png
[11]: https://itsfoss.com/content/images/2023/07/Default-Yaru.png
[12]: https://itsfoss.com/content/images/2023/07/Default-Yaru-Dark.png
[13]: https://github.com:443/mig/gedit-themes
[14]: https://github.com:443/gmate/gmate/tree/master/styles
[15]: https://wiki.gnome.org:443/Projects/GtkSourceView/StyleSchemes
[16]: https://github.com:443/topics/gedit-theme
[17]: https://www.gnome-look.org:443/browse?cat=279&ord=latest
[18]: https://itsfoss.com/content/images/2023/07/save-raw-data-1.png
[19]: https://itsfoss.com/content/images/2023/07/Select-plus-sign-to-add-schemes.png
[20]: https://itsfoss.com/content/images/2023/07/newly-installed-theme.png
[21]: https://itsfoss.com/content/images/2023/07/multiple-installed-themes.png
[22]: https://itsfoss.com/content/images/2023/07/remove-a-theme.png
[23]: https://itsfoss.com/content/images/2023/07/Blackboard.png
[24]: https://github.com:443/catppuccin/gedit
[25]: https://itsfoss.com/content/images/2023/07/Catppuccin-macchiato.png
[26]: https://itsfoss.com/content/images/2023/07/Lowlight.png
[27]: https://itsfoss.com/content/images/2023/07/Midnight.png
[28]: https://itsfoss.com/content/images/2023/07/Monakai.png
[29]: https://itsfoss.com/content/images/2023/07/Neopro.png
[30]: https://itsfoss.com/content/images/2023/07/Plastic-code-wrap.png
[31]: https://itsfoss.com/content/images/2023/07/slate.png
[32]: https://itsfoss.com/content/images/2023/07/Vibrant-fun.png
2023-08-08 09:16:18 +08:00
[33]: https://github.com:443/topics/gedit-theme