You can undo your settings with changing false
to true
:
$ gsettings set org.gnome.nm-applet disable-connected-notifications true
$ gsettings set org.gnome.nm-applet disable-disconnected-notifications true
$ gsettings set org.gnome.nm-applet disable-vpn-notifications true
Or you can reset the value of keys to default with reset
option:
$ gsettings reset org.gnome.nm-applet disable-connected-notifications
$ gsettings reset org.gnome.nm-applet disable-disconnected-notifications
$ gsettings reset org.gnome.nm-applet disable-vpn-notifications
I hope see all settings and change them
Here it is you can list all of them by using this command:
$ gsettings list-schemas
Or if you want to get list all schemas with all keys and values, use the following command:
$ gsettings list-recursively
And for listing all the keys from a specific schemas, use gsettings list-keys <SCHEMA-PATH>
$ gsettings list-keys org.gnome.nm-applet
stamp
disable-disconnected-notifications
disable-vpn-notifications
disable-connected-notifications
suppress-wireless-networks-available
show-applet
disable-wifi-create
And listing their schemas-path and value:
$ gsettings list-recursively org.gnome.nm-applet
See man gsettings
for more info.