summaryrefslogtreecommitdiff
path: root/home/.selfconfigs/waybar
diff options
context:
space:
mode:
Diffstat (limited to 'home/.selfconfigs/waybar')
-rw-r--r--home/.selfconfigs/waybar/sshd_poll10
1 files changed, 10 insertions, 0 deletions
diff --git a/home/.selfconfigs/waybar/sshd_poll b/home/.selfconfigs/waybar/sshd_poll
new file mode 100644
index 0000000..723af9e
--- /dev/null
+++ b/home/.selfconfigs/waybar/sshd_poll
@@ -0,0 +1,10 @@
+#!/bin/bash -eu
+
+lines=$(who | grep pts | grep -Ev "\(:pts")
+if [[ -z "$lines" ]]; then
+ printf '{"text":"No SSH connections", "tooltip":"No SSH connections", "class":"normal"}'
+else
+ line_count=$(echo "$lines" | wc --lines)
+ lines="${lines/$'\n'/\\\\n}"
+ printf '{"text":"'"$line_count"' SSH connection(s)", "tooltip":"'"$lines"'", "class":"active"}'
+fi