summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2024-01-25 00:16:30 -0500
committerBenjamin Chausse <benjamin@chausse.xyz>2024-01-25 00:16:30 -0500
commitadcb6518d48ab41b26aeba77b3d0147d24dc287d (patch)
tree0ad7b3c40e7145360d3443c2238c89f31c431419
parent2a4848c8fdf131e92a4d66eff4f9d0f4f4081eaf (diff)
Remove BLOCK_BUTTONS from dwmblocks
-rwxr-xr-x.local/bin/dwmbar/dwmb-date5
-rwxr-xr-x.local/bin/dwmbar/dwmb-dotfiles38
-rwxr-xr-x.local/bin/dwmbar/dwmb-mail10
-rwxr-xr-x.local/bin/dwmbar/dwmb-time4
-rwxr-xr-x.local/bin/dwmbar/dwmb-vpn24
5 files changed, 26 insertions, 55 deletions
diff --git a/.local/bin/dwmbar/dwmb-date b/.local/bin/dwmbar/dwmb-date
index 4caf8b4..cd598b1 100755
--- a/.local/bin/dwmbar/dwmb-date
+++ b/.local/bin/dwmbar/dwmb-date
@@ -1,8 +1,3 @@
#!/bin/sh
date +"  %a %b %d"
-
-case $BLOCK_BUTTON in
-1) notify-send -a " Calendar" "$(cal | tail -n +2)" ;;
-6) "$TERMINAL" -e "$EDITOR" "$0" ;;
-esac
diff --git a/.local/bin/dwmbar/dwmb-dotfiles b/.local/bin/dwmbar/dwmb-dotfiles
index aca2727..1138929 100755
--- a/.local/bin/dwmbar/dwmb-dotfiles
+++ b/.local/bin/dwmbar/dwmb-dotfiles
@@ -1,20 +1,32 @@
#!/bin/bash
-dotfiles=$(yadm status | sed '1,3d;
- 5,$d;
- s/.$//g')
+# Other icons that could be used:
+# Git:                    
+# Config:  
-if [[ ${dotfiles:0:1} == "n" ]]; then
- warn=""
-else
- warn=" "
-fi
+# Dotfiles tracker for dwmblocks (using yadm)
+# This block aims to never show up (to be out of sight, out of mind)
+# If the following situation occurs, the following icons will be shown:
+#
+# -  : There are uncommitted changes
+# -  : There are staged changes
+# -  : Unpushed changes
+# -  : Upstream has changes that are not pulled
+#
+# These icons will sit next the this block's base icon
+#
+# Only one icon will be shown at a time, and the order of priority is:
+# uncommitted > staged > unpushed > upstream
+status=$(yadm status --porcelain 2>/dev/null)
+[ -z "$status" ] && exit 0
-echo " $warn "
-case $BLOCK_BUTTON in
- 1) $TERMINAL -c dropdown -e yadm diff ;;
- 3) $TERMINAL -c dropdown -e dfup ;;
- 6) "$TERMINAL" -e "$EDITOR" "$0" ;;
+case "$status" in
+*M*) icon=" " ;;
+*A*) icon=" " ;;
+*U*) icon=" " ;;
+*D*) icon=" " ;;
esac
+
+printf " %s" "$icon"
diff --git a/.local/bin/dwmbar/dwmb-mail b/.local/bin/dwmbar/dwmb-mail
index 1d78528..faa01e6 100755
--- a/.local/bin/dwmbar/dwmb-mail
+++ b/.local/bin/dwmbar/dwmb-mail
@@ -3,16 +3,6 @@
# 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 && mw -Y ;;
-2) setsid -f mw -Y ;;
-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=" "
diff --git a/.local/bin/dwmbar/dwmb-time b/.local/bin/dwmbar/dwmb-time
index 4fb102b..fc17227 100755
--- a/.local/bin/dwmbar/dwmb-time
+++ b/.local/bin/dwmbar/dwmb-time
@@ -1,6 +1,4 @@
#!/bin/sh
date +"  %H:%M "
-case $BLOCK_BUTTON in
- 6) "$TERMINAL" -e "$EDITOR" "$0" ;;
-esac \ No newline at end of file
+
diff --git a/.local/bin/dwmbar/dwmb-vpn b/.local/bin/dwmbar/dwmb-vpn
index 4ce86f9..d049f60 100755
--- a/.local/bin/dwmbar/dwmb-vpn
+++ b/.local/bin/dwmbar/dwmb-vpn
@@ -13,28 +13,4 @@ DisconnectingToReconnect) icon="  " ;;
Disconnecting) icon="  " ;;
esac
-# case "$vpnstatus" in
-# *"Not"*) icon=""
-# ;;
-# *"Connected"*) icon=""
-# ;;
-# *"Connecting"*) icon=" "
-# ;;
-# *) icon=""
-# esac
-
echo " $icon"
-
-# \033]01;31\] # pink
-# \033]00m\] # white
-# \033]01;36\] # bold green
-# \033]02;36\] # green
-# \033]01;34\] # blue
-# \033]01;33\] # bold yellow
-# s/onnected\sto\s//;
-case $BLOCK_BUTTON in
-1) piactl connect && notify-send -a "VPN" "Connected" && kill -36 "$(pidof dwmblocks)" ;;
-2) vpnmenu ;;
-3) piactl disconnect && notify-send -a "VPN" "Disonnected" && kill -36 "$(pidof dwmblocks)" ;;
-6) "$TERMINAL" -e "$EDITOR" "$0" ;;
-esac