Guest User

Untitled

a guest
Jun 18th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. --[[ CURRENT ]]
  2. local key_handlers = {
  3. -- execution and actions
  4. ["Mod1-Return"] = function (key)
  5. local xterm = get_conf("xterm") or "xterm"
  6. execute (xterm .. " &")
  7. end,
  8. }
  9.  
  10. --[[ PROPOSED ]]
  11. grabmod = get_ctl("grabmod")
  12. local key_handlers = {
  13. -- execution and actions
  14. [grabmod .. "-Return"] = function (key)
  15. local xterm = get_conf("xterm") or "xterm"
  16. execute (xterm .. " &")
  17. end,
  18. }
Add Comment
Please, Sign In to add comment