aboutsummaryrefslogtreecommitdiffstats
path: root/.config/herbstluftwm/switcher.sh
blob: 4d570c24b8b085a52fbb53e9f3363ffe4ee71345 (plain)
1
2
3
4
5
6
7
#!/bin/zsh

IFS=$'\r\n'  clients=($(wmctrl -l | cut -c -10))
number=$(wmctrl -l | cut -c 20- | nl -w 2 -s ") " | dmenu -i -h 18 -nb $1 -nf $2 -sb $3 -sf $4 -p "Select:" -l 40 | grep -oE '[0-9]' | head -1)
if [ $number ]; then
	herbstclient jumpto ${clients[$(expr $number - 1)]}
fi