Como posso desativar as bolhas de notificação de status da rede?

1

Estou usando a versão mais recente do Ubuntu, com um adaptador Wi-Fi que o Ubuntu detectou sem falhas.

Quando a internet desaparece, o Ubuntu me fornece uma bolha de notificação no canto superior direito da tela, por exemplo, "Rede sem fio, desconectado". Não há "x" clicável nessas notificações e parece que não consigo impedi-las de voltar repetidamente, aproximadamente uma vez a cada 5 segundos. Para piorar, não consigo acessar o menu de configurações de rede no canto superior direito da tela, porque toda vez que eu abro as configurações de rede, surge um balão de notificação e cancela o menu. Isso significa que não posso configurar minha rede, que é do que o Ubuntu está reclamando.

Então, a pequena pergunta: como posso desabilitar essas bolhas de notificação? Ou, o que devo fazer para reconhecer uma bolha para que ela não apareça de novo e de novo e de novo a menos que tenha havido um outro evento significativo?

    
por ugcheleuce 15.04.2014 / 17:12

2 respostas

2

Tente isto: O Ubuntu desativa as notificações pop-up

Depois faça o oposto para reativá-los. Eu colocaria isso como um comentário, mas tenho 4 rep curto.

    
por eyoung100 15.04.2014 / 17:18
0

Funciona lindamente @ eyoung100. Eu coloco em um script no caso de alguém estar interessado.

#!/bin/bash
enabled=/usr/share/dbus-1/services/org.freedesktop.Notifications.service
disabled=/usr/share/dbus-1/services/org.freedesktop.Notifications.service.disabled
if [ $# -eq 0 ] ; then
    echo "To turn off notifications, type toggleNotify off"
    echo "To turn on  notifications, type toggleNotify on"
    echo "-h print help"
    echo "-t report whether notifications are on or off"
    exit
elif [  = "-h" ] ; then
    toggleNotify
elif [  = "-t" ] ; then
    if test -f $enabled ; then
        echo "notifications are on" 
    else
        echo "notifications are off"    
    fi
    exit
elif [  = "on" ] ; then
    if test -f $disabled ; then
        echo "Turning on notifications"
        sudo mv $disabled $enabled
    fi
elif [  = "off" ] ; then
    if test -f $enabled ; then
        echo "Turning off notifications"
        sudo mv $enabled $disabled
        killall notify-osd
    fi
else
    #to get the help message
    toggleNotify
fi
    
por Leo Simon 27.07.2016 / 10:07