Shortcut keys

2012-03-05 Thread Gerald Klein
Hi, I set up my keys the way I want them but they only work, if at least one application is open in that screen. Anyone have an idea of what I can do to fix this? thanks --jerry -- Gerald Klein DBA www.geraldklein.com http://geraldklein.com/ j...@zognet.com 708-599-0352

Re: Shortcut keys

2012-03-05 Thread Perry Hargrave
I am thinking you are adding to the clientkeys table. Add the binding to the root keys table. -- Hth, perry

Re: Shortcut keys

2011-06-20 Thread Martin
You can use the identifier numbers from the xev output. I use my multimedia keys like this: -- Multimedia keys awful.key({ }, #123, function () awful.util.spawn(amixer set Master 2+, false) end), awful.key({ }, #122, function ()

Re: Shortcut keys

2011-06-18 Thread Peter Schwede
On 06/16/2011 12:23 AM, Peter Schwede wrote: thanks. xev helps a lot! for future key-questions, too! It doesn't work on Mod-Keys. -- To unsubscribe, send mail to awesome-unsubscr...@naquadah.org.

Re: Shortcut keys

2011-06-18 Thread Anurag Priyam
It doesn't work on Mod-Keys. It works for me :|. $ xev | grep -A2 --line-buffered '^KeyRelease' | sed -n \ '/keycode /s/^.*keycode \([0-9]*\).* (.*, \(.*\)).*$/\1 \2/p' #after a couple of keypress on the xev window 36 Return 64 Alt_L 133 Super_L 64 Alt_L 37 Control_L 46 l 66 Escape 135 Menu

Re: Shortcut keys

2011-06-18 Thread Peter Schwede
On 06/18/2011 03:27 PM, Anurag Priyam wrote: It doesn't work on Mod-Keys. It works for me :|. $ xev | grep -A2 --line-buffered '^KeyRelease' | sed -n \ '/keycode /s/^.*keycode \([0-9]*\).* (.*, \(.*\)).*$/\1 \2/p' #after a couple of keypress on the xev window 36 Return 64 Alt_L 133 Super_L

Shortcut keys

2011-06-15 Thread Peter Schwede
Hi, how does Awesome's lua.rc call the left Alt-Key and how are PgDn and PgUp named? I need them for global shortcuts to control my audio player. Greets, Pete -- To unsubscribe, send mail to awesome-unsubscr...@naquadah.org.

Re: Shortcut keys

2011-06-15 Thread Renato Botelho
On Wed, Jun 15, 2011 at 2:05 PM, Peter Schwede peter.schw...@gmx.net wrote: Hi, how does Awesome's lua.rc call the left Alt-Key and how are PgDn and PgUp named? I need them for global shortcuts to control my audio player. Alt == Mod1 pgup and pgdown i don't know. -- Renato Botelho -- To

Re: Shortcut keys

2011-06-15 Thread will floyd
Hi, how does Awesome's lua.rc call the left Alt-Key and how are PgDn and PgUp named? I need them for global shortcuts to control my audio player. open a terminal, type 'xev' and then push the keys you want and watch the output for keycodes or names. -- To unsubscribe, send mail to

Re: Shortcut keys

2011-06-15 Thread Perry Hargrave
On Wed, Jun 15, 2011 at 10:05 AM, Peter Schwede peter.schw...@gmx.net wrote: how does Awesome's lua.rc call the left Alt-Key and how are PgDn and PgUp named? I need them for global shortcuts to control my audio player. pageup == Prior pagedown == Next -- p -- To unsubscribe, send mail to

Re: Shortcut keys

2011-06-15 Thread RĂ©mi Vanicat
Renato Botelho rbga...@gmail.com writes: On Wed, Jun 15, 2011 at 2:05 PM, Peter Schwede peter.schw...@gmx.net wrote: Hi, how does Awesome's lua.rc call the left Alt-Key and how are PgDn and PgUp named? I need them for global shortcuts to control my audio player. Alt == Mod1 pgup and

Re: Shortcut keys

2011-06-15 Thread Peter Schwede
On 06/15/2011 07:56 PM, will floyd wrote: Hi, how does Awesome's lua.rc call the left Alt-Key and how are PgDn and PgUp named? I need them for global shortcuts to control my audio player. open a terminal, type 'xev' and then push the keys you want and watch the output for keycodes or names.

Re: Shortcut keys

2011-06-15 Thread Anurag Priyam
thanks. xev helps a lot! for future key-questions, too! This one liner might be a little more helpful: xev | grep -A2 --line-buffered '^KeyRelease' | sed -n \ '/keycode /s/^.*keycode \([0-9]*\).* (.*, \(.*\)).*$/\1 \2/p' -- Anurag Priyam http://about.me/yeban/ -- To unsubscribe, send mail