diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-16 15:03:35 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-16 15:03:35 +0100 |
commit | bcbbc6097ec6c85adf4fe2d93f5d9d04f80e77a5 (patch) | |
tree | 91059c802218ee3ed05d0ca8d7d7930f43a6e13d /.local/bin | |
parent | 497b1dbf39044db541a46710387b7fc033ef0463 (diff) |
Update icon in mail script
Diffstat (limited to '.local/bin')
-rwxr-xr-x | .local/bin/statusbar/sb-mailbox | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.local/bin/statusbar/sb-mailbox b/.local/bin/statusbar/sb-mailbox index 16006de..fb58ee7 100755 --- a/.local/bin/statusbar/sb-mailbox +++ b/.local/bin/statusbar/sb-mailbox @@ -4,17 +4,17 @@ # When clicked, brings up `neomutt`. case $BLOCK_BUTTON in - 1) setsid -f "$TERMINAL" -e neomutt ;; - 2) setsid -f mw -Y >/dev/null ;; - 3) notify-send " Mail module" "\- Shows unread mail -- Shows if syncing mail +1) setsid -f "$TERMINAL" -e neomutt ;; +2) setsid -f mw -Y >/dev/null ;; +3) notify-send " Mail module" "\- Shows unread mail +- Shows if syncing mail - Left click opens neomutt - Middle click syncs mail" ;; - 6) "$TERMINAL" -e "$EDITOR" "$0" ;; +6) "$TERMINAL" -e "$EDITOR" "$0" ;; esac unread="$(find "${XDG_DATA_HOME:-$HOME/.local/share}"/mail/*/[Ii][Nn][Bb][Oo][Xx]/new/ -type f | wc -l 2>/dev/null)" -pidof mbsync >/dev/null 2>&1 && icon=" " +pidof mbsync >/dev/null 2>&1 && icon=" " [ "$unread" = "0" ] && [ "$icon" = "" ] || echo " $unread$icon" |