Ubuntu 18.04美化

写在前面

主要介绍我的 Ubuntu18.04 美化

个人使用建议选择最新版 Ubuntu,很多功能已经优化。

安装工具

sudo apt install gnome-tweak-tool gnome-shell-extensions chrome-gnome-shell

gnome-tewak-tool: 强大的美化工具
gnome-shell-extensions: 为gnome-tweak-tool安装扩展插件
chrome-gnome-shell: 可以在浏览器中管理插件, 打开浏览器安装插件GNOME Shell integration
GNOME Shell
一些扩展介绍

主题美化

主题网址

使用方法

解压放置在指定目录
主题和 shell:/usr/share/themes/
图标:/usr/share/icons/
需要 root 权限

打开gnome-tweak-tool工具即可更改。
gnome-tweak-toos

其他

修改登录背景
修改文件/etc/alternatives/gdm3.css

#lockDialogGroup {
  background: #2c001e url(resource:///org/gnome/shell/theme/noise-texture.png);
  background-repeat: repeat; }

修改为

#lockDialogGroup {
  background: #2c001e url(file:///home/milk/Pictures/desktop.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

url 内放置你的图片路径(以file://开头)

最后

重启后即可看到相应设置


comment: