summaryrefslogtreecommitdiff
path: root/dotfiles/hyprland/.local
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/hyprland/.local')
-rwxr-xr-xdotfiles/hyprland/.local/bin/cycle-layout30
-rwxr-xr-xdotfiles/hyprland/.local/bin/toggle-scratchpad29
-rwxr-xr-xdotfiles/hyprland/.local/bin/waybar-layout54
-rwxr-xr-xdotfiles/hyprland/.local/bin/waybar-netspeed52
4 files changed, 165 insertions, 0 deletions
diff --git a/dotfiles/hyprland/.local/bin/cycle-layout b/dotfiles/hyprland/.local/bin/cycle-layout
new file mode 100755
index 0000000..a3b1b1a
--- /dev/null
+++ b/dotfiles/hyprland/.local/bin/cycle-layout
@@ -0,0 +1,30 @@
+#!/bin/sh
+# Cycle through Hyprland layouts
+
+LAYOUT=$(hyprctl getoption general:layout -j | jq -r '.str')
+ORIENTATION=""
+
+if [ "$LAYOUT" = "master" ]; then
+ ORIENTATION=$(hyprctl getoption master:orientation -j | jq -r '.str')
+fi
+
+# Cycle: master-left -> master-top -> master-center -> dwindle -> master-left
+if [ "$LAYOUT" = "dwindle" ]; then
+ hyprctl keyword general:layout master
+ hyprctl keyword master:orientation left
+elif [ "$LAYOUT" = "master" ]; then
+ case "$ORIENTATION" in
+ left)
+ hyprctl keyword master:orientation top
+ ;;
+ top)
+ hyprctl keyword master:orientation center
+ ;;
+ center)
+ hyprctl keyword general:layout dwindle
+ ;;
+ *)
+ hyprctl keyword master:orientation left
+ ;;
+ esac
+fi
diff --git a/dotfiles/hyprland/.local/bin/toggle-scratchpad b/dotfiles/hyprland/.local/bin/toggle-scratchpad
new file mode 100755
index 0000000..bb10ef7
--- /dev/null
+++ b/dotfiles/hyprland/.local/bin/toggle-scratchpad
@@ -0,0 +1,29 @@
+#!/bin/sh
+# Toggle a special workspace from waybar click
+# Tracks state to handle focus-loss auto-close issue
+# Usage: toggle-scratchpad <name>
+
+NAME="$1"
+if [ -z "$NAME" ]; then
+ echo "Usage: toggle-scratchpad <name>"
+ exit 1
+fi
+
+STATEFILE="/tmp/scratchpad-$NAME-open"
+NOW=$(date +%s)
+
+# If state file exists and recent, scratchpad was open and just closed by focus loss
+# Don't reopen it - user intended to close
+if [ -f "$STATEFILE" ]; then
+ LAST=$(cat "$STATEFILE")
+ AGE=$((NOW - LAST))
+ rm -f "$STATEFILE"
+ if [ "$AGE" -lt 2 ]; then
+ # Was just open, user clicked to close - don't reopen
+ exit 0
+ fi
+fi
+
+# Opening the scratchpad - mark timestamp
+echo "$NOW" > "$STATEFILE"
+hyprctl dispatch togglespecialworkspace "$NAME"
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\"}"
diff --git a/dotfiles/hyprland/.local/bin/waybar-netspeed b/dotfiles/hyprland/.local/bin/waybar-netspeed
new file mode 100755
index 0000000..504ad8c
--- /dev/null
+++ b/dotfiles/hyprland/.local/bin/waybar-netspeed
@@ -0,0 +1,52 @@
+#!/bin/sh
+# Network speed monitor with fixed-width output for waybar
+# Outputs JSON with upload/download speeds padded to consistent width
+
+INTERFACE=$(ip route | awk '/default/ {print $5; exit}')
+
+if [ -z "$INTERFACE" ]; then
+ echo '{"text": "No network", "class": "disconnected"}'
+ exit 0
+fi
+
+RX1=$(cat /sys/class/net/$INTERFACE/statistics/rx_bytes)
+TX1=$(cat /sys/class/net/$INTERFACE/statistics/tx_bytes)
+sleep 1
+RX2=$(cat /sys/class/net/$INTERFACE/statistics/rx_bytes)
+TX2=$(cat /sys/class/net/$INTERFACE/statistics/tx_bytes)
+
+RX_RATE=$((RX2 - RX1))
+TX_RATE=$((TX2 - TX1))
+
+format_speed() {
+ local bytes=$1
+ if [ $bytes -ge 1073741824 ]; then
+ printf "%6.2f G" $(echo "scale=2; $bytes / 1073741824" | bc)
+ elif [ $bytes -ge 1048576 ]; then
+ printf "%6.2f M" $(echo "scale=2; $bytes / 1048576" | bc)
+ elif [ $bytes -ge 1024 ]; then
+ printf "%6.2f K" $(echo "scale=2; $bytes / 1024" | bc)
+ else
+ printf "%6d B" $bytes
+ fi
+}
+
+UP=$(format_speed $TX_RATE)
+DOWN=$(format_speed $RX_RATE)
+
+# Get IP for tooltip
+IP=$(ip -4 addr show $INTERFACE | awk '/inet / {print $2}')
+
+# Check if WiFi and get SSID
+SSID=""
+if command -v iwgetid >/dev/null 2>&1; then
+ SSID=$(iwgetid -r 2>/dev/null)
+fi
+
+if [ -n "$SSID" ]; then
+ TOOLTIP="$SSID ($INTERFACE: $IP)"
+else
+ TOOLTIP="$INTERFACE: $IP"
+fi
+
+echo "{\"text\": \"${UP} 󰕒 ${DOWN} 󰇚\", \"tooltip\": \"$TOOLTIP\", \"class\": \"connected\"}"