]> danix's work - my-dotfiles.git/blame - home-bin/dunst-snooze.sh
added mail script to polybar
[my-dotfiles.git] / home-bin / dunst-snooze.sh
CommitLineData
45a360f5 1#!/bin/sh
2
3case "$1" in
4 --toggle)
5 dunstctl set-paused toggle
6 ;;
7 *)
8 if [ "$(dunstctl is-paused)" = "true" ]; then
9 echo "  "
10 else
11 echo "  "
12 fi
13 ;;
14esac