Advertisement
Guest User

Untitled

a guest
May 29th, 2015
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. # When pressing the overview button, open the multitasking view
  2. "xte 'keydown Super_L' 'key S' 'keyup Super_L'"
  3. b:10 + release
  4.  
  5. # Open urxvt when super + return key is pressed
  6. "urxvtcd -e tmux"
  7. m:0x50 + c:36
  8.  
  9. # When super and back forward, switch desktops
  10. "xte 'key Right'"
  11. m:0x50 + c:133 + b:9
  12.  
  13. "xte 'key Left'"
  14. m:0x50 + c:133 + b:8
  15.  
  16. # copy past stuff
  17. "xte 'key C'"
  18. m:0x14 + c:37 + b:8
  19.  
  20. "xte 'key V'"
  21. m:0x14 + c:37 + b:9
  22.  
  23. # Show all windows when the zoom button is pressed
  24. "xte 'keydown Super_L' 'key A' 'keyup Super_L'"
  25. b:13
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement