ubuntu18.04 登录界面美化之记录

ubuntu18.04 登录界面美化之记录

#登录界面主题

安装登录主题的安装方法无法成功之后进行尝试,做个记录!!!

  1. 解压后直接把High_Ubunterra_CC-2.3(Pass)/bin/high_ubunterra.css重命名为ubuntu.css
    然后直接替换掉/usr/share/gnome-shell/theme/ubuntu.css(建议先备份)

  2. 修改18.04相关配置文件:/etc/alternatives/gdm3.css

  3. 修改代码中的#lockDialogGroup部分

代码如下:

#lockDialogGroup {
  background: #2c001e url(file:///usr/share/backgrounds/gdmlock.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /*background-color: none;*/
  /*background-gradient-direction: vertical;
  background-gradient-start: rgb(49, 160, 49);
  background-gradient-end: rgb(85, 12, 12); */
}

把其中

   background: #2c001e url(file:///usr/share/backgrounds/gdmlock.jpg);

修改为自己图片的路径即可(建议放在同目录下)!

最后重启系统!

最后,放张图展示一下
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_44451210/article/details/89145801