diff options
Diffstat (limited to '.config/polybar/notification_pause.sh')
-rwxr-xr-x | .config/polybar/notification_pause.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.config/polybar/notification_pause.sh b/.config/polybar/notification_pause.sh new file mode 100755 index 0000000..7e59453 --- /dev/null +++ b/.config/polybar/notification_pause.sh | |||
@@ -0,0 +1,9 @@ | |||
1 | #!/usr/bin/env bash | ||
2 | |||
3 | TOGGLE=$HOME/.local/share/.pause_notifications | ||
4 | |||
5 | if [ ! -e $TOGGLE ]; then | ||
6 | echo | ||
7 | else | ||
8 | printf "🔕" | ||
9 | fi | ||