mirror of
https://github.com/Fluffy-Bean/dots.git
synced 2025-05-14 07:42:14 +00:00
9 lines
253 B
Bash
9 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
|