Re: numpad keys issues

2015-10-11 Thread Daniel Sont
Your welcome! On Sun, Oct 11, 2015 at 1:50 AM, Alexander Tsepkov wrote: > Thanks, I like the numpad list, went with that option and it works like a > charm! > > On Fri, Oct 9, 2015 at 11:52 PM, Daniel Sont wrote: > >> KP_HOME should be KP_Home, I beleive. However, it's easier to index an >> ar

Re: numpad keys issues

2015-10-10 Thread Alexander Tsepkov
Thanks, I like the numpad list, went with that option and it works like a charm! On Fri, Oct 9, 2015 at 11:52 PM, Daniel Sont wrote: > KP_HOME should be KP_Home, I beleive. However, it's easier to index an > array than remember all the kp names > > On Sat, Oct 10, 2015 at 10:50 AM, Daniel Sont

Re: numpad keys issues

2015-10-09 Thread Daniel Sont
KP_HOME should be KP_Home, I beleive. However, it's easier to index an array than remember all the kp names On Sat, Oct 10, 2015 at 10:50 AM, Daniel Sont wrote: > > local numpad = { "#87", "#88", "#89", "#83", "#84", "#85", "#79", "#80", > "#81" } > > // numpad[1..9] > awful.key({ mod, }, nu

Re: numpad keys issues

2015-10-09 Thread Daniel Sont
local numpad = { "#87", "#88", "#89", "#83", "#84", "#85", "#79", "#80", "#81" } // numpad[1..9] awful.key({ mod, }, numpad[5], function () awful.util.spawn("google-chrome-beta") end), On Sat, Oct 10, 2015 at 9:24 AM, Alexander Tsepkov wrote: > My numpad keys don't seem to be recognized