wmiirc-rumai

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

commit 78411f022f7e7fd9756ad83dd68d27d2d4d0350f
parent f8efaf114f814d6482a2bb48dc841ddc09bad2eb
Author: Suraj N. Kurapati <sunaku@gmail.com>
Date:   Tue, 12 Sep 2006 09:56:35 -0700

[project @ c73f134e7b93b9a33945a5bc318b19bd6ad94c37]

[project @ 76]
clarify code

Diffstat:
wmiirc-config.rb | 22++++++++++------------
1 file changed, 10 insertions(+), 12 deletions(-)

diff --git a/wmiirc-config.rb b/wmiirc-config.rb @@ -403,36 +403,34 @@ begin case type when 'Start' if arg == 'wmiirc' - LOG.info "Exiting because another wmiirc has started." + LOG.info 'exiting because another instance has started' exit end when 'BarClick' - viewId, mouseBtn = arg.split + clickedView, clickedButton = arg.split - case mouseBtn.to_i + case clickedButton.to_i when PRIMARY - Wmii.focus_view viewId + Wmii.focus_view clickedView when MIDDLE - # add view to selection's tags Wmii.selected_clients.each do |c| - c.tag! viewId + c.tag! clickedView end when SECONDARY - # remove view from selection's tags Wmii.selected_clients.each do |c| - c.untag! viewId + c.untag! clickedView end end when 'ClientClick' - clientId, mouseBtn = arg.split + clickedClient, clickedButton = arg.split - case mouseBtn.to_i + case clickedButton.to_i when MIDDLE, SECONDARY - Wmii::Client.new("/client/#{clientId}").invert_selection! + Wmii::Client.new("/client/#{clickedClient}").invert_selection! end when 'Key' @@ -441,6 +439,6 @@ begin end end rescue EOFError - LOG.fatal "wmiiwm has quit" + LOG.info 'wmii has been terminated' exit 1 end