From 6d6e0462eb2dd1d770653f5e22582e3571c63c8f Mon Sep 17 00:00:00 2001 From: Vasil Zlatanov Date: Sun, 23 Nov 2014 11:08:21 +0100 Subject: big ratpoison update --- ratpoison/workspace_menu | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'ratpoison/workspace_menu') diff --git a/ratpoison/workspace_menu b/ratpoison/workspace_menu index 020f887..6ffcb14 100755 --- a/ratpoison/workspace_menu +++ b/ratpoison/workspace_menu @@ -7,12 +7,18 @@ # script possible. Regular bourne shell printf does NOT. workspace_command="/usr/bin/rpws" +ratmenu="~/.ratpoison/ratmenu" -( printf "ratmenu -style dreary -fg '#657b83' -bg '#eee8d5' -io $[ $($workspace_command current) + 1 ]"; +( printf "$ratmenu -style dreary -fg '#657b83' -bg '#eee8d5' -io $[ $($workspace_command current) + 1 ]"; ratpoison -c "groups" | while read s; do n=$(echo $s | sed 's/\([0-9]\+\).*/\1/'); - w=$(echo $s | sed 's/[0-9]\+.\(.*\)/\1/'); +# w=$(echo $s | sed 's/[0-9]\+.\(.*\)/\1/'); + w=$(ratpoison -c "gselect $(($n-1))" -c "windows %t" -c "gprev") a=$(printf "%3q %q" $n $w); b="$workspace_command $n"; + if [ $n -ne 0 ];then printf " %q %q" "$a" "$b"; + else + printf " %q %q" "Go to workspace:" "/bin/true"; + fi done; echo \;) | sh -- cgit v1.2.3-54-g00ecf