aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/dot_config/waybar
diff options
context:
space:
mode:
authorLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-05-13 13:43:19 +0100
committerLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-05-13 13:43:19 +0100
commit083a99063d5092e0895424f652804065c84463f8 (patch)
treeb2096345b0a77795c5e1f913b2dd03ef3d22a9dd /dot_config/waybar
parent1d5ea18ba2e2d98394c992e747df20a75682ec42 (diff)
downloaddotfiles-083a99063d5092e0895424f652804065c84463f8.tar.gz
dotfiles-083a99063d5092e0895424f652804065c84463f8.tar.bz2
dotfiles-083a99063d5092e0895424f652804065c84463f8.zip
chore(fmt): apply shfmt and prettier formatting
- shfmt -i 2 -ci -s on the four updated shell scripts (tabs → 2 spaces) - prettier --write on KEYBINDS.md and README.md
Diffstat (limited to 'dot_config/waybar')
-rw-r--r--dot_config/waybar/executable_mako-status.sh26
1 files changed, 13 insertions, 13 deletions
diff --git a/dot_config/waybar/executable_mako-status.sh b/dot_config/waybar/executable_mako-status.sh
index a2fb792..ed89661 100644
--- a/dot_config/waybar/executable_mako-status.sh
+++ b/dot_config/waybar/executable_mako-status.sh
@@ -4,25 +4,25 @@
set -eu
if ! command -v makoctl >/dev/null 2>&1; then
- printf '{"text":"","tooltip":"mako not installed","class":"off"}\n'
- exit 0
+ printf '{"text":"","tooltip":"mako not installed","class":"off"}\n'
+ exit 0
fi
-count=$(makoctl history 2>/dev/null \
- | grep -c '"summary"' || true)
-pending=$(makoctl list 2>/dev/null \
- | grep -c '"summary"' || true)
+count=$(makoctl history 2>/dev/null |
+ grep -c '"summary"' || true)
+pending=$(makoctl list 2>/dev/null |
+ grep -c '"summary"' || true)
if [ "$pending" -gt 0 ]; then
- text="!$pending"
- class="pending"
+ text="!$pending"
+ class="pending"
elif [ "$count" -gt 0 ]; then
- text="$count"
- class="history"
+ text="$count"
+ class="history"
else
- text="0"
- class="empty"
+ text="0"
+ class="empty"
fi
printf '{"text":"%s","tooltip":"%s pending / %s history","class":"%s"}\n' \
- "$text" "$pending" "$count" "$class"
+ "$text" "$pending" "$count" "$class"