美化ubuntu主题系统

(1) 2024-04-21 14:12

Hi,大家好,我是编程小6,很荣幸遇见你,我把这些年在开发过程中遇到的问题或想法写出来,今天说一说美化ubuntu主题系统,希望能够帮助你!!!。

文章目录

      • 安装主题选择软件
      • 下载主题及加载
      • ubuntu18登录界面更改
      • Docky
      • 个人设置效果

这里我们给予ubuntu14.04和ubuntu18.4来进行说明

安装主题选择软件

对于ubuntu18.04来说

sudo apt-get install gnome-tweeks

美化ubuntu主题系统_https://bianchenghao6.com/blog__第1张
对于ubuntu14.04来说
ubuntu-tweeks和unity-tweak-tool都可以

sudo add-apt-repository ppa:tualatrix/ppa
sudo apt-get update
sudo apt-get install ubuntu-tweeks
sudo apt-get install unity-tweak-tool

美化ubuntu主题系统_https://bianchenghao6.com/blog__第2张
无论对于哪个软件的使用来说都很简单,直接切换主题theme以及icons就可以,当然也有其他的设置可以使用。

下载主题及加载

加载主题是把下载好的主题包解压成文件夹直接放在以下的两个目录中就可以生效,这里我们只列出了比较重要的桌面主题和图标主题的路径。
/usr/share/themes/
/usr/share/icons/

这里推荐一个主题网站 https://www.opendesktop.org/

  • 选择桌面主题
    https://www.opendesktop.org/p/1275087/
    美化ubuntu主题系统_https://bianchenghao6.com/blog__第3张
    https://github.com/anmoljagetia/Flatabulous
  • 选择图标主题
    https://www.opendesktop.org/p/1171748/

ubuntu18登录界面更改

对于ubuntu18的默认登录界面输入密码的窗口是纯紫色的界面,当我们更换了自身的桌面以及锁屏页面之后,这个的视觉效果很不好,所以这里给出了替换的方法。
sudo cp /usr/share/gnome-shell/theme/ubuntu.css /usr/share/gnome-shell/theme/ubuntu.css.bak
sudo vi /usr/share/gnome-shell/theme/ubuntu.css

#lockDialogGroup {
   background: #2c001e url(resource:///org/gnome/shell/theme/noise-texture.png);
   background-repeat: repeat; 
}
转换为
#lockDialogGroup {
   background: #2c001e url(file:///home/**/**.png);
   background-repeat: no-repeat; 
   background-size: cover;
   background-position: center;
}

Docky

用过macos系统会觉得,docky十分方便以及简洁好看。ubuntu默认的侧边栏就要不好看许多,所以这里推荐安装此插件,并把侧边栏设计为自动隐藏,这样整体效果会好很多。

sudo apt-get install docky

个人设置效果

推荐一个壁纸图片网站:https://wallhaven.cc/
美化ubuntu主题系统_https://bianchenghao6.com/blog__第4张
美化ubuntu主题系统_https://bianchenghao6.com/blog__第5张

今天的分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。

上一篇

已是最后文章

下一篇

已是最新文章

发表回复