summaryrefslogtreecommitdiff
path: root/dotfiles/hyprland/.local/bin/waybar-layout
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-01-25 20:29:28 -0600
committerCraig Jennings <c@cjennings.net>2026-01-25 20:29:28 -0600
commite601c536ec79e9c46105cdbc67825e0cd97e7818 (patch)
treef25ef54b736d3c1aeb2310b9295e144d25bc0772 /dotfiles/hyprland/.local/bin/waybar-layout
parentf7308974b180d59c8b43083727565bd672875a38 (diff)
feat(waybar): enhance status bar with icons, modules, and interactivity
- Add nerd font icons (large size) for cpu, memory, disk, temperature, volume - Add temperature module next to CPU in sysmonitor group - Add battery module with warning/critical states - Add custom netspeed module with fixed-width output and SSID tooltip - Add layout indicator with clickable cycling through layouts - Add window title module to left panel - Add network scratchpad with nmtui (click netspeed to toggle) - Add toggle-scratchpad script to handle focus-loss auto-close - Make sysmonitor modules clickable to toggle monitor scratchpad - Add right-click on volume to toggle audio scratchpad - Update clock format to "Sun, Jan 25 2025 08:04 PM CST" - Remove nm-applet from autostart (replaced by nmtui scratchpad) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'dotfiles/hyprland/.local/bin/waybar-layout')
-rwxr-xr-xdotfiles/hyprland/.local/bin/waybar-layout54
1 files changed, 54 insertions, 0 deletions
diff --git a/dotfiles/hyprland/.local/bin/waybar-layout b/dotfiles/hyprland/.local/bin/waybar-layout
new file mode 100755
index 0000000..7ffb8a8
--- /dev/null
+++ b/dotfiles/hyprland/.local/bin/waybar-layout
@@ -0,0 +1,54 @@
+#!/bin/sh
+# Hyprland layout indicator for waybar
+# Shows current layout with nerd font icons
+
+# Get current layout
+LAYOUT=$(hyprctl getoption general:layout -j | jq -r '.str')
+
+# Get master orientation if using master layout
+ORIENTATION=""
+if [ "$LAYOUT" = "master" ]; then
+ ORIENTATION=$(hyprctl getoption master:orientation -j | jq -r '.str')
+fi
+
+# Check if active window is fullscreen (monocle)
+FULLSCREEN=$(hyprctl activewindow -j | jq -r '.fullscreen')
+
+# Check if active window is floating
+FLOATING=$(hyprctl activewindow -j | jq -r '.floating')
+
+# Determine icon and tooltip
+if [ "$FULLSCREEN" = "2" ] || [ "$FULLSCREEN" = "1" ]; then
+ ICON="󰊓"
+ TOOLTIP="Monocle (fullscreen)"
+elif [ "$FLOATING" = "true" ]; then
+ ICON="󰖲"
+ TOOLTIP="Floating"
+elif [ "$LAYOUT" = "dwindle" ]; then
+ ICON="󱒎"
+ TOOLTIP="Dwindle"
+elif [ "$LAYOUT" = "master" ]; then
+ case "$ORIENTATION" in
+ left)
+ ICON="󰕰"
+ TOOLTIP="Master (left)"
+ ;;
+ top)
+ ICON="󱂩"
+ TOOLTIP="Master (top)"
+ ;;
+ center)
+ ICON="󰘸"
+ TOOLTIP="Master (center)"
+ ;;
+ *)
+ ICON="󰕰"
+ TOOLTIP="Master"
+ ;;
+ esac
+else
+ ICON="󰕰"
+ TOOLTIP="Unknown"
+fi
+
+echo "{\"text\": \"<span size='large'>$ICON</span>\", \"tooltip\": \"$TOOLTIP\"}"