mirror of
https://github.com/Fluffy-Bean/dots.git
synced 2024-12-29 10:46:08 +00:00
11 lines
263 B
Bash
11 lines
263 B
Bash
#!/bin/sh
|
|
|
|
value=$(gsettings get org.gnome.desktop.notifications show-banners)
|
|
|
|
if [ $value == "true" ]; then
|
|
#echo "%{F#666} " # Icon toggle
|
|
echo "" # Icon only when do not distrub is on
|
|
elif [ $value == "false" ]; then
|
|
echo " "
|
|
fi
|