web-dev-qa-db-ja.com

Ubuntu 18.10の2つの異なるログイン画面!

だから私はUbuntu 18.10のフレッシュインストールをインストールし、ubuntu gdm3の通常の新しいログイン画面がありました。私はgnomeテーマをダウンロードしていて、コンピューターをロックしたときにすべてを実行した後(新しいテーマをインストールした場合はIDK)に気づきましたが、それでも通常のロック画面が表示され、上にスライドするとstamdartログイン画面が表示されます。

  1. ロック画面 - enter image description here

  2. ログイン画面 enter image description here

しかし、「別のユーザーとしてログイン」をクリックすると奇妙になります。ロゴのロード画面の後にUbuntuを起動したときに表示される、別のタイプのログイン画面も表示されます(このログイン画面では、タップしてクリックします)また動作しません!):

  1. 2番目のログイン画面 enter image description here

編集:申し訳ありませんが、質問を追加するのを忘れていました-これは何ですか(これは正常ですか?)、それをデフォルトに戻す方法は?

追加されたテーマ:「フラットリミックス」という名前 enter image description here

よろしくお願いします。

4

パッケージflat-remix-gnomeがインストールされたとき。
自動的にgdm3.cssの代替案が更新されます

$ Sudo apt install flat-remix-gnome
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following package was automatically installed and is no longer required:
  libfcitx-config4
Use 'Sudo apt autoremove' to remove it.
The following NEW packages will be installed:
  flat-remix-gnome
0 upgraded, 1 newly installed, 0 to remove and 36 not upgraded.
Need to get 1,754 kB of archives.
After this operation, 19.8 MB of additional disk space will be used.
Get:1 http://ppa.launchpad.net/daniruiz/flat-remix/ubuntu cosmic/main AMD64 flat-remix-gnome AMD64 3.30.13-1 [1,754 kB]
Fetched 1,754 kB in 33s (53.8 kB/s)                                            
Selecting previously unselected package flat-remix-gnome.
(Reading database ... 204723 files and directories currently installed.)
Preparing to unpack .../flat-remix-gnome_3.30.13-1_AMD64.deb ...
Unpacking flat-remix-gnome (3.30.13-1) ...
Setting up flat-remix-gnome (3.30.13-1) ...
update-alternatives: using /usr/share/themes/Flat-Remix/gnome-Shell/gnome-Shell.css to provide /usr/share/gnome-Shell/theme/gdm3.css (gdm3.css) in auto mode
$

デフォルトに戻すには、以下のコマンドを実行し、/usr/share/gnome-Shell/theme/Yaru/gnome-Shell.cssに一致する適切な値を選択します

Sudo update-alternatives --config gdm3.css

例:

$ Sudo update-alternatives --config gdm3.css
[Sudo] password for maduri: 
There are 7 choices for the alternative gdm3.css (providing /usr/share/gnome-Shell/theme/gdm3.css).

  Selection    Path                                                                 Priority   Status
------------------------------------------------------------
* 0            /usr/share/themes/Flat-Remix/gnome-Shell/gnome-Shell.css              20        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
  3            /usr/share/themes/Flat-Remix-Dark/gnome-Shell/gnome-Shell.css         17        manual mode
  4            /usr/share/themes/Flat-Remix-Darkest/gnome-Shell/gnome-Shell.css      17        manual mode
  5            /usr/share/themes/Flat-Remix-Miami-Dark/gnome-Shell/gnome-Shell.css   17        manual mode
  6            /usr/share/themes/Flat-Remix-Miami/gnome-Shell/gnome-Shell.css        17        manual mode
  7            /usr/share/themes/Flat-Remix/gnome-Shell/gnome-Shell.css              20        manual mode

Press <enter> to keep the current choice[*], or type selection number: 1
update-alternatives: using /usr/share/gnome-Shell/theme/Yaru/gnome-Shell.css to provide /usr/share/gnome-Shell/theme/gdm3.css (gdm3.css) in manual mode
$ 

自動モードと手動モードについて:

   automatic mode
          When  a  link  group is in automatic mode, the alternatives system ensures that the
          links in the group point to the highest priority alternative  appropriate  for  the
          group.

   manual mode
          When  a  link  group  is  in manual mode, the alternatives system will not make any
          changes to the system administrator's settings.

ソース: http://manpages.ubuntu.com/manpages/trusty/en/man8/update-alternatives.8.html

2
PRATAP