From d6a9fcfe0d59c35c8c2338c61f0cbad4bbe4f5ab Mon Sep 17 00:00:00 2001 From: A Farzat Date: Fri, 25 Oct 2024 19:35:40 +0900 Subject: Add scripts I don't often use for reference --- bin/scripts/switch_window | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 bin/scripts/switch_window (limited to 'bin/scripts/switch_window') diff --git a/bin/scripts/switch_window b/bin/scripts/switch_window new file mode 100755 index 0000000..55787bc --- /dev/null +++ b/bin/scripts/switch_window @@ -0,0 +1,17 @@ +#!/usr/bin/env sh + +windows=$(wmctrl -xl | tr -s '[:blank:]' | cut -d ' ' -f 3-3,5- | sed 's/^[a-zA-Z0-9-]*\.//') + +# Add spaces to align the WM_NAMEs of the windows +max=$(printf %s\\n "$windows" | awk '{cur=length($1); max=(cur>max?cur:max)} END{print max}') + +windows=$(printf %s\\n "$windows" | \ + awk -v max="$max" \ + '{cur=length($1); printf $1; \ + for(i=0; i < max - cur + 1; i++) printf " "; \ + $1 = ""; printf "%s\n", $0}') + + +target=$(printf %s\\n "$windows" | dmenu -l 10 -i -p switch: | tr -s '[:blank:]' | cut -d ' ' -f 2-) + +[ -n "$target" ] && wmctrl -a "$target" -- cgit v1.2.3-70-g09d2