如何刪除輔助功能圖示 GDM3(登入畫面)

如何刪除輔助功能圖示 GDM3(登入畫面)

我想刪除 GDM3 登入畫面上的「輔助功能」圖示。

我怎樣才能做到這一點?

答案1

背景:

之前18.04.X版本可以用在 ubuntu 18.04.2 LTS 上登出後更改遊標顏色
最近沒工作GDM 螢幕上有夜燈嗎?

解決方法:

使用以下命令99-a11y-settings在目錄中建立一個名為的文字檔案。/usr/share/gdm/dconf/

sudo touch /usr/share/gdm/dconf/99-a11y-settings

編輯文件並將密鑰放入類似以下內容的值

sudo -H gedit /usr/share/gdm/dconf/99-a11y-settings

內容:

[org/gnome/desktop/a11y]
always-show-universal-access-status=false

然後運行

sudo dconf update

需要重新啟動才能使變更生效。


這是我的實際文件內容:

[org/gnome/desktop/a11y]
always-show-universal-access-status=false

[org/gnome/desktop/interface]
clock-show-seconds=true
clock-show-date=true
cursor-theme='DMZ-White'
cursor-size=48

[org/gnome/login-screen]
banner-message-enable=true
banner-message-text='TESTING WELCOME MESSAGE'

[org/gnome/settings-daemon/plugins/color]
night-light-enabled=true

在此輸入影像描述


為什麼檔案保存在/usr/share/gdm/dconf/目錄中?因為文件上/usr/share/gdm/dconf/00-upstream-settings說(僅部分內容)

# This file is part of the GDM packaging and should not be changed.
#
# Instead create your own file next to it with a higher numbered prefix,
# and run
#
#       dconf update
#

並且該文件作為符號鏈接/etc/gdm3/greeter.dconf-default連接/usr/share/gdm/dconf/90-debian-settings並且不起作用。

因此,作為一種解決方法,採用比 90 更大的數字 99,91 也可以。

相關內容