commit df654b7eaa7d2d71f08d38c12309851a4fb9712c
parent e557ec54abcf7316083351150674e6fcd9a443be
Author: Benjamin Chausse <benjamin@chausse.xyz>
Date: Tue, 20 Oct 2020 17:33:27 -0400
Now using mw sync with dwmblocks
Diffstat:
3 files changed, 37 insertions(+), 0 deletions(-)
diff --git a/.local/bin/dwmbar/dwmb-internet b/.local/bin/dwmbar/dwmb-internet
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+case "$(cat /sys/class/net/wlp0s20f3/operstate)" in
+ up) echo " " ;;
+ down) echo " " ;;
+esac
+
+#
+#
+#
diff --git a/.local/bin/dwmbar/dwmb-mail b/.local/bin/dwmbar/dwmb-mail
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+# Displays number of unread mail and an loading icon if updating.
+# When clicked, brings up `neomutt`.
+
+case $BLOCK_BUTTON in
+ 1) setsid -f "$TERMINAL" -e neomutt ;;
+ 2) setsid -f mw sync >/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" ;;
+esac
+
+unread="$(find "${XDG_DATA_HOME:-$HOME/.local/share}"/mail/*/*/new/* -type f | wc -l 2>/dev/null)"
+
+pidof mbsync >/dev/null 2>&1 && icon=" "
+
+[ "$unread" = "0" ] && [ "$icon" = "" ] || echo " $unread$icon"
diff --git a/.local/bin/dwmbar/dwmb-time b/.local/bin/dwmbar/dwmb-time
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+date +" %H:%M "
+case $BLOCK_BUTTON in
+ 6) "$TERMINAL" -e "$EDITOR" "$0" ;;
+esac+
\ No newline at end of file