답변:
12.04에서는 (또는 ) 명령을 nm-applet
사용하여 gconf 데이터베이스 항목을 통해 해당 동작을 토글 할 수 있어야합니다.gconftool
gconftool-2
gconftool --set /apps/nm-applet/disable-disconnected-notifications --type bool true
연결된 연결된 알림도 비활성화하고 싶을 것입니다.
gconftool --set /apps/nm-applet/disable-connected-notifications --type bool true
다음을 사용하여 현재 설정을 확인할 수 있습니다
gconftool -a /apps/nm-applet
이후 버전의 우분투에 대한 답변을 원하는 사람들을 위해 @Jos는 14.04에서 설정이 기본 dconf
데이터베이스 로 마이그레이션되었으며 /org/gnome/nm-applet
GUI dconf-editor
도구를 사용하여 토글 할 수 있음을 확인했습니다 . 를 사용하여 CLI를 통한 수정이 가능해야합니다 gsettings
.
당신은 그것을 변경할 수 있습니다 gsettings
:-
gsettings는 GSettings에 대한 간단한 명령 줄 인터페이스를 제공합니다. 변경 사항에 대한 개별 키를 가져 오거나 설정하거나 모니터링 할 수 있습니다.
현재 설정 을 얻으 려면 다음 명령을 실행하십시오.
gsettings get org.gnome.nm-applet disable-disconnected-notifications
연결이 끊긴 알림을 사용하지 않도록 설정 하려면 (활성화) 다음 명령을 실행하십시오.
gsettings set org.gnome.nm-applet disable-disconnected-notifications true
그러나 다음과 같이 사용 가능한 모든 알림 에 대한 모든 설정을 grep 할 수 있습니다 gsettings
.
gsettings list-recursively | grep "notifications"
& schema = org.gnome.nm-applet의 경우
gsettings list-recursively org.gnome.nm-applet