答案1
可以通过编辑“user-shell”主题的.css 文件来更改应用程序抽屉的背景颜色。
请注意,对于这个答案,背景并没有完全被我们想要的颜色覆盖,边缘和第二页仍然是透明的。
备份您正在使用的“user-shell”主题的.css 文件。
如果您没有使用自定义用户 shell 主题,以下是默认文件。
适用于 Ubuntu 18.04
/usr/share/gnome-shell/theme/ubuntu.css
适用于 Ubuntu 19.04 和 19.10/usr/share/gnome-shell/theme/Yaru/gnome-shell.css
打开文件,找到以下内容。
/* App Vault/Grid */
.icon-grid {
spacing: 30px;
-shell-grid-horizontal-item-size: 136px;
-shell-grid-vertical-item-size: 136px; }
.icon-grid .overview-icon {
icon-size: 96px; }
并像下面这样进行更改,用您想要的任何颜色替换 rgba 字段。
/* App Vault/Grid */
.icon-grid {
spacing: 30px;
-shell-grid-horizontal-item-size: 136px;
-shell-grid-vertical-item-size: 136px;
background-color: rgba(71, 68, 68, 1); }
.icon-grid .overview-icon {
icon-size: 96px; }
请注意,我已编辑第 1321 行,并将其添加到第 1321 行下
background-color: rgba(71, 68, 68, 1); }
保存文件,关闭并重新启动或注销并登录以查看更改。
我使用这个网站来选择颜色https://www.color-hex.com/
通过第四个值控制透明度rgba(71, 68, 68, 1)
透明度为 0.5 的其他颜色:rgba(0, 165, 230, 0.5)