[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [RP] One command to unbind them all?
From: |
Ryan Yeske |
Subject: |
Re: [RP] One command to unbind them all? |
Date: |
Thu Oct 17 22:39:02 2002 |
User-agent: |
Gnus/5.09 (Gnus v5.9.0) Emacs/21.2.91 |
Jonathan Walther <address@hidden> writes:
> > Huu!! wouldn't it be easier to create a command unbind_all?
>
> No. That command is too specific. You can only use it for one thing.
> Being able to "dump" all the keybindings to stdout so that other
> programs can do anything they want with them, that would be useful. It
> is the ratpoison way. Ryan, Gergely, Shawn, jump in and help me here :)
alias unbindall exec for i in $(xmodmap -pke | sed -e 's/keycode.*=//' |
xargs); do ratpoison --command="unbind $i"; done
Ryan