From e2add462c0d66120867cdb7181a0d9c413f3e4c1 Mon Sep 17 00:00:00 2001 From: Justine Smithies Date: Tue, 6 Feb 2024 20:44:09 +0000 Subject: Initial commit of Eww config --- .config/eww/scripts/scratchpad-indicator.sh | 36 +++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100755 .config/eww/scripts/scratchpad-indicator.sh (limited to '.config/eww/scripts/scratchpad-indicator.sh') diff --git a/.config/eww/scripts/scratchpad-indicator.sh b/.config/eww/scripts/scratchpad-indicator.sh new file mode 100755 index 0000000..b0911d9 --- /dev/null +++ b/.config/eww/scripts/scratchpad-indicator.sh @@ -0,0 +1,36 @@ +#!/bin/bash +# Scratchpad indicator for Hyprland + +output="$(hyprctl clients -j | jq -r '.[] | select(.workspace.id==-99) |""+.class+" : "+.title+""')" +number="$(hyprctl clients -j | jq -r '.[] | select(.workspace.id==-99) | (tostring)' | wc -l)" +file=~/.config/eww/eww.scss + +if [ "$number" -gt 0 ]; then + text=" $number" +else + text="" +fi + +output="$(echo "$output" | sed -r 's/[&]+/and/g')" # Replace unprintable & character with the word 'and' +tooltip="\n" +tooltip+="$(echo "$output" | sed -z 's/\n/\\n/g')" +tooltip=${tooltip::-2} + +function ShowInfo() { + if [ "$number" -eq 0 ]; then + exit + else + tooltip="$(echo -e $tooltip)" + notify-send " Scratchpad" "$tooltip" -r 123 + fi +} + +function Update() { + printf "%s" "$text" +} + +if [ "$1" = "ShowInfo" ]; then + ShowInfo +else + Update +fi -- cgit v1.2.3