diff options
author | Vasil Zlatanov <vasil.zlatanov@gmail.com> | 2015-08-18 01:39:43 +0200 |
---|---|---|
committer | Vasil Zlatanov <vasil.zlatanov@gmail.com> | 2015-08-18 01:39:43 +0200 |
commit | d923956d4866beb5093c89e0c1a4f54a9c37070f (patch) | |
tree | 849dcc217039940b4f41e1e82f595c7a00669d99 /config/ratpoison/workspace_menu | |
parent | 26a62982eab36ee68608a61306e6fab6447edd8a (diff) | |
download | dotfiles-d923956d4866beb5093c89e0c1a4f54a9c37070f.tar.gz dotfiles-d923956d4866beb5093c89e0c1a4f54a9c37070f.tar.bz2 dotfiles-d923956d4866beb5093c89e0c1a4f54a9c37070f.zip |
major fixes and rearrangement
Diffstat (limited to 'config/ratpoison/workspace_menu')
-rwxr-xr-x | config/ratpoison/workspace_menu | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/config/ratpoison/workspace_menu b/config/ratpoison/workspace_menu new file mode 100755 index 0000000..38ef9fc --- /dev/null +++ b/config/ratpoison/workspace_menu @@ -0,0 +1,24 @@ +#!/usr/bin/env bash + +# Lets you switch between all workspaces in a way that minimizes keystrokes. +# The current workspace is selected. + +# Yes, bash is really necessary, because it's version of printf makes this +# script possible. Regular bourne shell printf does NOT. + +workspace_command="/usr/bin/rpws" +ratmenu="~/.config/ratpoison/ratmenu" + +( printf "$ratmenu -style dreary -fg \"$COLOR11\" -bg \"$COLOR0\" -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=$(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 + |