Como desabilito as notificações pop-up no Xubuntu?

8

Como posso desativar a notificação pop-up no Xubuntu 11.10

Eu tentei: sudo apt-get remove notify-osd

O que resultou em

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package notify-osd is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
    
por craizzz 15.02.2012 / 00:16

3 respostas

16

Obviamente, remover o notify-osd não funcionará porque o Xubuntu não o usa, ele usa xfce4-notifyd .

Então, se você quiser removê-los , remova esse pacote.

 sudo apt-get remove xfce4-notifyd

Se você quiser desativá-los, use isto:

 sudo mv /usr/share/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service /usr/share/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service.disabled

Para reverter isso:

 sudo mv /usr/share/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service.disabled /usr/share/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service

Fonte

    
por Uri Herrera 15.02.2012 / 00:25
0

Tente isto:

sudo mv /usr/share/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service /usr/share/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service.disabled
    
por Chris Wayne 15.02.2012 / 00:26
0

você também pode executar este comando e editar o que deseja exibir ou bloquear nas notificações. Eu tive que fazer isso para SMB4K para montarias de unidade, pois estava me deixando louco lol.

xfce4-notifyd-config

    
por mastertwitchy 01.07.2017 / 07:56