答案1
Mint-Y 主题文件夹:
~/.themes/Mint-Y
~/.themes/Mint-Y-Dark
~/.themes/Mint-Y-Darker
它应该在 ~/.themes/Mint-Y-Dark/cinnamon/cinnamon.css 中
请下载今天的主题版本:
https://github.com/linuxmint/mint-y-theme/archive/master.zip
GitHub 上的编辑说明:
不要直接在 usr/share/themes 目录中修改主题。这些是从 src/ 目录中的文件自动生成的。每个子目录都包含有关如何编辑的单独说明。编辑完成后,您可以通过运行 build-themes.py 脚本生成最终主题。
最好是使用脚本定期更新图标和主题:
#!/bin/bash
mkdir -p ~/Downloads/themes-mint/
wget -O ~/Downloads/themes-mint/themes.zip https://github.com/linuxmint/mint-y-theme/archive/master.zip
wget -O ~/Downloads/themes-mint/icons.zip https://github.com/linuxmint/mint-y-icons/archive/master.zip
unzip -o ~/Downloads/themes-mint/themes.zip -d ~/Downloads/themes-mint/
unzip -o ~/Downloads/themes-mint/icons.zip -d ~/Downloads/themes-mint/
cp -r ~/Downloads/themes-mint/mint-y-theme-master/usr/share/themes/* ~/.themes/
cp -r ~/Downloads/themes-mint/mint-y-icons-master/usr/share/icons/* ~/.icons/
将其保存为主目录中的文本文件,将其命名为 例如update-themes
并运行chmod 700 update-themes
,然后始终像./update-themes
.