当我通过编辑代码在 Linux Mint 中缩放窗口时,如何删除背景上的黑色半透明覆盖层?

当我通过编辑代码在 Linux Mint 中缩放窗口时,如何删除背景上的黑色半透明覆盖层?

我知道这是由主题引起的,因为有些主题有,有些没有。但我真的很喜欢保留我的薄荷色主题,因为它看起来棒极了。因此,出现了这个问题,我知道它有一些代码,编辑它们可以解决问题,但我不知道它是什么代码以及它在 mint-Y-Dark 主题文件夹中的位置。我正在使用 Linux mint 18 Cinnamon。

这是桌面;未缩放: 桌面,未缩放

这是缩放后的窗口,请注意半透明的黑色覆盖层:
带有半透明黑色覆盖层的缩放窗口

答案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.

相关内容