mirror of
https://github.com/Fluffy-Bean/dots.git
synced 2025-05-14 07:42:14 +00:00
10 lines
263 B
Bash
Executable file
10 lines
263 B
Bash
Executable file
#!/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
|