更改登入畫面背景後登入畫面發生錯誤 (Ubuntu 19.04)

更改登入畫面背景後登入畫面發生錯誤 (Ubuntu 19.04)

我的問題是在我嘗試更改登入畫面的背景後發生的。我已經更改了文件/usr/share/gnome-shell/theme/Yaru/gnome-shell.css和這個 /usr/share/gnome-shell/theme/gdm3.css.我從這個開始改變了

#lockDialogGroup {
  background-color: #2C001E; }

對此

#lockDialogGroup {
   background-image: url(file:///home/rico/Pictures/login/wolf.jpg);
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center; }

但是當我重新啟動時,螢幕看起來像這樣

影像

我已將所有內容更改為預設值,但錯誤仍然存在。有什麼方法可以恢復更改,或者在最壞的情況下,我該如何重新安裝它?

答案1

根據我們之前的評論/聊天..

據觀察,您的 /usr/share/gnome-shell/theme/Yaru/gnome-shell.css 檔案內容已變更。

要恢復更改,您需要從新安裝的Ubuntu 19.04 中的/usr/share/gnome-shell/theme/Yaru/gnome-shell.css 檔案或從執行的Ubuntu 19.04 檔案中還原未更改的gnome-shell.css 檔案。

這是文件,https://we.tl/t-BjnNI9u9Si我剛剛安裝了 Ubuntu 19.04 的全新副本。

下載此文件後..打開它..複製所有內容..

運行以下命令開啟文件

sudo -H gedit /usr/share/gnome-shell/theme/Yaru/gnome-shell.css

刪除文件中的所有內容/usr/share/gnome-shell/theme/Yaru/gnome-shell.css,然後貼上從上述連結下載的文件中複製的內容。

儲存檔案並關閉..

下載這兩個文件https://we.tl/t-7Tq96QZy6n並將/usr/share/gnome-shell/modes/ubuntu.json和替換/usr/share/gnome-shell/modes/yaru.json為這些下載的檔案。

檢查哪個檔案用於替代 gdm3.css 檔案。

運行sudo update-alternatives --config gdm3.css並選擇檔案所屬的編號/usr/share/gnome-shell/theme/Yaru/gnome-shell.css

例子:

pratap@i7-4770:~$ sudo update-alternatives --config gdm3.css
[sudo] password for pratap: 
There are 2 choices for the alternative gdm3.css (providing /usr/share/gnome-shell/theme/gdm3.css).

  Selection    Path                                               Priority   Status
------------------------------------------------------------
* 0            /usr/share/gnome-shell/theme/Yaru/gnome-shell.css   15        auto mode
  1            /usr/share/gnome-shell/theme/Yaru/gnome-shell.css   15        manual mode
  2            /usr/share/gnome-shell/theme/gnome-shell.css        10        manual mode

Press <enter> to keep the current choice[*], or type selection number: 0

現在..您的登入畫面和解鎖畫面都將具有預設外觀,因為它是作為 Ubuntu 19.04 的全新安裝安裝的

若要變更登入畫面背景,請參閱此連結..無法在 18.10 中變更登入畫面背景

相關內容