Guest User

i3

a guest
Sep 6th, 2022
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.29 KB | None | 0 0
  1.  
  2. # split in vertical orientation
  3. bindsym Mod1+v split v
  4.  
  5. # enter fullscreen mode for the focused container
  6. bindsym Mod1+f fullscreen toggle
  7.  
  8. # change container layout (stacked, tabbed, toggle split)
  9. bindsym Mod1+s layout stacking
  10. bindsym Mod1+w layout tabbed
  11. bindsym Mod1+e layout toggle split
  12.  
  13. # toggle tiling / floating
  14. bindsym Mod1+Shift+space floating toggle
  15.  
  16. # change focus between tiling / floating windows
  17. bindsym Mod1+space focus mode_toggle
  18.  
  19. # focus the parent container
  20. bindsym Mod1+a focus parent
  21.  
  22. # focus the child container
  23. #bindsym Mod1+d focus child
  24.  
  25. # move the currently focused window to the scratchpad
  26. bindsym Mod1+Shift+minus move scratchpad
  27.  
  28. # Show the next scratchpad window or hide the focused scratchpad window.
  29. # If there are multiple scratchpad windows, this command cycles through them.
  30. bindsym Mod1+minus scratchpad show
  31.  
  32. # Define names for default workspaces for which we configure key bindings later on.
  33. # We use variables to avoid repeating the names in multiple places.
  34. set $ws1 ""
  35. set $ws2 "2"
  36. set $ws3 "3"
  37. set $ws4 "4"
  38. set $ws5 "5"
  39. set $ws6 "6"
  40. set $ws7 "7"
  41. set $ws8 "8"
  42. set $ws9 "9"
  43. set $ws10 "10"
  44.  
  45. # switch to workspace
  46. bindsym Mod1+1 workspace number $ws1
  47. bindsym Mod1+2 workspace number $ws2
  48. bindsym Mod1+3 workspace number $ws3
  49. bindsym Mod1+4 workspace number $ws4
  50. bindsym Mod1+5 workspace number $ws5
  51. bindsym Mod1+6 workspace number $ws6
  52. bindsym Mod1+7 workspace number $ws7
  53. bindsym Mod1+8 workspace number $ws8
  54. bindsym Mod1+9 workspace number $ws9
  55. bindsym Mod1+0 workspace number $ws10
  56.  
  57. # move focused container to workspace
  58. bindsym Mod1+Shift+1 move container to workspace number $ws1
  59. bindsym Mod1+Shift+2 move container to workspace number $ws2
  60. bindsym Mod1+Shift+3 move container to workspace number $ws3
  61. bindsym Mod1+Shift+4 move container to workspace number $ws4
  62. bindsym Mod1+Shift+5 move container to workspace number $ws5
  63. bindsym Mod1+Shift+6 move container to workspace number $ws6
  64. bindsym Mod1+Shift+7 move container to workspace number $ws7
  65. bindsym Mod1+Shift+8 move container to workspace number $ws8
  66. bindsym Mod1+Shift+9 move container to workspace number $ws9
  67. bindsym Mod1+Shift+0 move container to workspace number $ws10
  68.  
  69. "config" 192L, 6646B 119,11 68%
  70.  
Advertisement
Add Comment
Please, Sign In to add comment