wmiirc-rumai

git clone git://oldgit.suckless.org/wmiirc-rumai/
Log | Files | Refs | README | LICENSE

commit b8737caa78c2ce563eaca823c40ebd4526af5002
parent 63abffab0c2c0acd02569dea7f4f22413c41b39c
Author: Suraj N. Kurapati <sunaku@gmail.com>
Date:   Wed,  9 Jan 2008 23:02:27 -0800

revert back to old grouping shortcuts

Diffstat:
wmiirc | 1-
wmiirc-config.rb | 10+++++-----
2 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/wmiirc b/wmiirc @@ -95,7 +95,6 @@ begin end.compact.uniq.sort end - # terminate existing instances of this program fs.event << 'Start wmiirc' diff --git a/wmiirc-config.rb b/wmiirc-config.rb @@ -400,7 +400,7 @@ EOF # client grouping # include/exclude the currently focused client from the grouping - key Key::GROUP + 'c' do + key Key::GROUP + 'g' do current_client.toggle_grouping end @@ -415,12 +415,12 @@ EOF end # include all clients in the currently focused area into the grouping - key Key::GROUP + 'a' do + key Key::GROUP + 'c' do current_area.group end # exclude all clients in the currently focused column from the grouping - key Key::GROUP + 'Shift-a' do + key Key::GROUP + 'Shift-c' do current_area.ungroup end @@ -435,14 +435,14 @@ EOF end # include all clients in the managed areas into the grouping - key Key::GROUP + 'm' do + key Key::GROUP + 'a' do current_view.columns.each do |c| c.group end end # exclude all clients in the managed areas from the grouping - key Key::GROUP + 'Shift-m' do + key Key::GROUP + 'Shift-a' do current_view.columns.each do |c| c.ungroup end