답변:
알림을 종료하는 데 사용하는 .desktop 파일이 있습니다.
[Desktop Entry]
Name=Notify Kill
Comment=Kill those pesky notifications!
Exec=killall notify-osd
Icon=utilities-terminal
Type=Application
StartupNotify=true
OnlyShowIn=GNOME;Unity;
notify-kill.desktop
에서 ~/.local/share/applications
와 같이 던지십시오 . 잠시 기다리면 Unity 대시에 나타납니다.
사용하려면, 그냥 대시를 열고 검색 kill
하거나 notify
, 그것은 알림을 취소합니다!
이 솔루션은 모든 OSD 알림 (화면 디스플레이 소음)을 다음에서 인용
합니다. notify-osd?
dbus-monitor "interface='org.freedesktop.Notifications'" | \
grep --line-buffered "member=Notify" | \
sed -u -e 's/.*/killall notify-osd/g' | \
bash
이것은 터미널에서 또는 백그라운드 작업으로 실행될 수 있습니다. 중지하고 팝업 낙서가 다시 시작됩니다.
실행하려면 터미널 창에 복사하여 붙여 넣습니다 ( ctrl+ alt+ 를 통해 열림 T). 창 을 닫거나 ctrl+ C를 입력 하여 중지하십시오.
교차 심판. :