Advertisement
smhdale

.skhdrc

Aug 7th, 2018
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.16 KB | None | 0 0
  1. # Fullscreen mode for focused container
  2. alt - f : chunkc tiling::window --toggle fullscreen
  3.  
  4. # Toggle between tiling & floating windows
  5. alt - space : chunkc tiling::window --toggle float
  6.  
  7. # Change desktop layout
  8. alt - e : chunkc tiling::desktop --layout bsp
  9. alt - s : chunkc tiling::desktop --layout monocle
  10.  
  11. # Kill focused window
  12. alt - w : chunkc tiling::window --close
  13.  
  14. # Change window focus
  15. ctrl - left : chunkc tiling::window --focus west
  16. ctrl - down : chunkc tiling::window --focus south
  17. ctrl - up : chunkc tiling::window --focus north
  18. ctrl - right : chunkc tiling::window --focus east
  19.  
  20. alt - h : chunkc tiling::window --focus west
  21. alt - j : chunkc tiling::window --focus south
  22. alt - k : chunkc tiling::window --focus north
  23. alt - l : chunkc tiling::window --focus east
  24.  
  25. alt - p : chunkc tiling::window --focus prev
  26. alt - n : chunkc tiling::window --focus next
  27.  
  28. # Change desktop focus
  29. ctrl - 1 : chunkc tiling::desktop --focus 1
  30. ctrl - 2 : chunkc tiling::desktop --focus 2
  31. ctrl - 3 : chunkc tiling::desktop --focus 3
  32. ctrl - 4 : chunkc tiling::desktop --focus 4
  33.  
  34. # Move windows
  35. shift + alt - h : chunkc tiling::window --warp west
  36. shift + alt - j : chunkc tiling::window --warp south
  37. shift + alt - k : chunkc tiling::window --warp north
  38. shift + alt - l : chunkc tiling::window --warp east
  39.  
  40. shift + ctrl - left : chunkc tiling::window --warp west
  41. shift + ctrl - down : chunkc tiling::window --warp south
  42. shift + ctrl - up : chunkc tiling::window --warp north
  43. shift + ctrl - right : chunkc tiling::window --warp east
  44.  
  45. alt - r : chunkc tiling::desktop --rotate 90
  46.  
  47. # Move windows between desktops
  48. shift + ctrl - 1 : chunkc tiling::window --send-to-desktop 1
  49. shift + ctrl - 2 : chunkc tiling::window --send-to-desktop 2
  50. shift + ctrl - 3 : chunkc tiling::window --send-to-desktop 3
  51. shift + ctrl - 4 : chunkc tiling::window --send-to-desktop 4
  52.  
  53. shift + ctrl - p : chunkc tiling::window --send-to-desktop prev
  54. shift + ctrl - n : chunkc tiling::window --send-to-desktop next
  55.  
  56. # App shortcuts
  57. cmd - return : osascript /Users/smhdale/Documents/Scripts/NewTerminalWindow.scpt
  58. shift + cmd - return : osascript /Users/smhdale/Documents/Scripts/NewFinderWindow.scpt `pwd`
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement