From 4b66da7ff8060fffdeac1cc4cb27f3182b3f2d46 Mon Sep 17 00:00:00 2001 From: Vasil Zlatanov Date: Sun, 23 Feb 2014 16:59:47 +0100 Subject: First commit of dotfiles. --- ratpoison/workspace_menu | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 ratpoison/workspace_menu (limited to 'ratpoison/workspace_menu') diff --git a/ratpoison/workspace_menu b/ratpoison/workspace_menu new file mode 100755 index 0000000..020f887 --- /dev/null +++ b/ratpoison/workspace_menu @@ -0,0 +1,18 @@ +#!/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" + +( 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/'); + a=$(printf "%3q %q" $n $w); b="$workspace_command $n"; + printf " %q %q" "$a" "$b"; + done; echo \;) | sh + -- cgit v1.2.3-54-g00ecf