我正在使用 Ubuntu 18.04。
我想从锁定屏幕上删除数字时钟,因为我只想在那里看到一张好的墙纸。
我该怎么办?
答案1
解决方法
操作系统:Ubuntu 18.04
除非挖掘 gnome-shell 文件的核心文件,否则无法删除时钟,但这非常困难。
相反,您可以通过编辑文件来隐藏它ubuntu.css
。
免责声明:玩弄 gdm3 文件非常危险,小错误将导致无法访问 gnome 桌面会话。只有 tty 可以工作。我曾多次在这种情况下重新安装 Ubuntu。尽管我已成功隐藏了锁屏上的时钟显示。请自行承担风险。
/usr/share/gnome-shell/theme/ubuntu.css
使用以下命令打开文件。
sudo -H gedit /usr/share/gnome-shell/theme/ubuntu.css
搜索“屏蔽”并找到以下内容
.screen-shield-clock-time {
font-size: 72pt;
text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
font-feature-settings: "tnum"; }
.screen-shield-clock-date {
font-size: 28pt;
font-weight: normal; }
然后将字体大小设置为 0,如下所示
.screen-shield-clock-time {
font-size: 0pt;
text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
font-feature-settings: "tnum"; }
.screen-shield-clock-date {
font-size: 0pt;
font-weight: normal; }
保存文件,刷新 Gnome-Shell Alt+F2 r Enter。