aboutsummaryrefslogtreecommitdiff
path: root/config/ratpoison/workspace_menu
diff options
context:
space:
mode:
authorVasil Zlatanov <vasil.zlatanov@gmail.com>2015-08-18 02:38:33 +0200
committerVasil Zlatanov <vasil.zlatanov@gmail.com>2015-08-18 02:38:33 +0200
commit6efac1a12c8ab0b7d96a8d342fbd74fce35e8c42 (patch)
tree93ebfb332b3a231931fe1b1276632bdaa33fa6e4 /config/ratpoison/workspace_menu
parentc021038355b6773ab13dae92327fda50c366395f (diff)
downloaddotfiles-6efac1a12c8ab0b7d96a8d342fbd74fce35e8c42.tar.gz
dotfiles-6efac1a12c8ab0b7d96a8d342fbd74fce35e8c42.tar.bz2
dotfiles-6efac1a12c8ab0b7d96a8d342fbd74fce35e8c42.zip
Organise everything systematically.
Diffstat (limited to 'config/ratpoison/workspace_menu')
-rwxr-xr-xconfig/ratpoison/workspace_menu24
1 files changed, 0 insertions, 24 deletions
diff --git a/config/ratpoison/workspace_menu b/config/ratpoison/workspace_menu
deleted file mode 100755
index 38ef9fc..0000000
--- a/config/ratpoison/workspace_menu
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/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
-