mirror of
https://github.com/Fluffy-Bean/dots.git
synced 2025-01-16 11:15:18 +00:00
10 lines
253 B
Bash
10 lines
253 B
Bash
#!/bin/sh
|
|
|
|
value=$(gsettings get org.gnome.desktop.notifications show-banners)
|
|
|
|
if [ "$value" == "true" ]; then
|
|
gsettings set org.gnome.desktop.notifications show-banners false
|
|
else
|
|
gsettings set org.gnome.desktop.notifications show-banners true
|
|
fi
|