From 6efac1a12c8ab0b7d96a8d342fbd74fce35e8c42 Mon Sep 17 00:00:00 2001 From: Vasil Zlatanov Date: Tue, 18 Aug 2015 02:38:33 +0200 Subject: Organise everything systematically. --- config/ratpoison/window_menu | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100755 config/ratpoison/window_menu (limited to 'config/ratpoison/window_menu') diff --git a/config/ratpoison/window_menu b/config/ratpoison/window_menu deleted file mode 100755 index 26f5e4d..0000000 --- a/config/ratpoison/window_menu +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env bash - -# Lets you switch between all windows in a way that minimizes keystrokes. - -# Two ways to order: -# - If order=last, the windows are listed in the order that you last visited them in. -# - If order=sequential, the windows are listed in number order. -order=sequential -ratmenu="~/.config/ratpoison/ratmenu" - -source ~/.colors - -# Yes, bash is really necessary, because it's version of printf makes this -# script possible. Regular bourne shell printf does NOT. - -window_index_str=$(ratpoison -c "info" | sed 's/^.*\([0-9]\)(.*$/\1/') -if [ "$window_index_str" = "No window." ]; then - group_index=$($HOME/.config/ratpoison/workspace current) - $ratmenu -style dreary -fg \"$COLOR0\" -bg \"$COLOR0\" "No windows in group $group_index" -/bin/true -else - ratpoison -c "echo $window_index_str" - echo "$window_index_str">/tmp/log - window_index=$[ $window_index_str + 1 ] - if [ $order = sequential ]; then - ( printf "$ratmenu -style dreary -fg \"$COLOR11\" -bg \"$COLOR0\" -io $window_index \ - "; - ratpoison -c "windows %n %n %t" | sort -n | while read w x z; do - a=$(printf "%3q" $x); b="ratpoison -c \"select $x\""; - printf " %q\\ %q %q" "$a" "$z" "$b"; - done; echo \;) | sh - elif [ $order = last ]; then - ( printf "$ratmenu -style dreary -fg \"$COLOR11\" -bg \"$COLOR0\" -io $window_index \ - "; - ratpoison -c "windows %l %n %t" | sort -rn | while read w x z; do - a=$(printf "%3q" $x); b="ratpoison -c \"select $x\""; - printf " %q\\ %q %q" "$a" "$z" "$b"; - done; echo \;) | sh - fi -fi -- cgit v1.2.3-54-g00ecf