summary refs log tree commit diff
path: root/.config/waybar/modules/hotspots.sh
diff options
context:
space:
mode:
Diffstat (limited to '.config/waybar/modules/hotspots.sh')
-rwxr-xr-x.config/waybar/modules/hotspots.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/.config/waybar/modules/hotspots.sh b/.config/waybar/modules/hotspots.sh
new file mode 100755
index 0000000..fe2ff65
--- /dev/null
+++ b/.config/waybar/modules/hotspots.sh
@@ -0,0 +1,21 @@
+#!/bin/bash
+set -e
+
+case "$1" in
+click)
+	uri=$(hspl -u)
+	xdg-open "http://$uri"
+	;;
+*)
+	output=$(hspl || echo "none")
+	if [ "$output" != "none" ]; then
+		jq -nc \
+			--arg text "󱛄 $(head -n1 <<<"$output")" \
+			--arg tooltip "$(tail -n+2 <<<"$output")" \
+			--arg class "$(if [ "$(hspl -d)" -lt 100 ]; then echo "soon"; else echo ""; fi)" \
+			'{text:$text,tooltip:$tooltip,class:$class}'
+	else
+		jq -nc '{}'
+	fi
+	;;
+esac