1
0

config 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. # i3 config file (v4)
  2. #
  3. # Please see https://i3wm.org/docs/userguide.html for a complete reference!
  4. set $mod Mod4
  5. # Font for window titles. Will also be used by the bar unless a different font
  6. # is used in the bar {} block below.
  7. font pango:monospace 8
  8. # This font is widely installed, provides lots of unicode glyphs, right-to-left
  9. # text rendering and scalability on retina/hidpi displays (thanks to pango).
  10. #font pango:DejaVu Sans Mono 8
  11. # use these keys for focus, movement, and resize directions when reaching for
  12. # the arrows is not convenient
  13. set $up n
  14. set $down t
  15. set $left h
  16. set $right s
  17. # use Mouse+mod to drag floating windows to their wanted position
  18. floating_modifier $mod
  19. # start a terminal
  20. bindsym less exec i3-sensible-terminal
  21. bindsym $mod+Return exec i3-sensible-terminal
  22. # kill focused window
  23. bindsym $mod+Shift+w kill
  24. # start dmenu (a program launcher)
  25. bindsym $mod+d exec dmenu_run
  26. # There also is the (new) i3-dmenu-desktop which only displays applications
  27. # shipping a .desktop file. It is a wrapper around dmenu, so you need that
  28. # installed.
  29. # bindsym $mod+d exec --no-startup-id i3-dmenu-desktop
  30. # change focus
  31. bindsym $mod+$left focus left
  32. bindsym $mod+$down focus down
  33. bindsym $mod+$up focus up
  34. bindsym $mod+$right focus right
  35. # alternatively, you can use the cursor keys:
  36. bindsym $mod+Left focus left
  37. bindsym $mod+Down focus down
  38. bindsym $mod+Up focus up
  39. bindsym $mod+Right focus right
  40. # move focused window
  41. bindsym $mod+Shift+$left move left
  42. bindsym $mod+Shift+$down move down
  43. bindsym $mod+Shift+$up move up
  44. bindsym $mod+Shift+$right move right
  45. # alternatively, you can use the cursor keys:
  46. bindsym $mod+Shift+Left move left
  47. bindsym $mod+Shift+Down move down
  48. bindsym $mod+Shift+Up move up
  49. bindsym $mod+Shift+Right move right
  50. # split in horizontal orientation
  51. bindsym $mod+v split h
  52. # split in vertical orientation
  53. bindsym $mod+minus split v
  54. # enter fullscreen mode for the focused container
  55. bindsym $mod+f fullscreen toggle
  56. # change container layout (stacked, tabbed, toggle split)
  57. bindsym $mod+o layout stacking
  58. bindsym $mod+comma layout tabbed
  59. bindsym $mod+period layout toggle split
  60. # toggle tiling / floating
  61. bindsym $mod+Shift+space floating toggle
  62. # change focus between tiling / floating windows
  63. bindsym $mod+space focus mode_toggle
  64. # focus the parent container
  65. bindsym $mod+a focus parent
  66. # focus the child container
  67. bindsym $mod+e focus child
  68. # move the currently focused window to the scratchpad
  69. bindsym $mod+Shift+semicolon move scratchpad
  70. # Show the next scratchpad window or hide the focused scratchpad window.
  71. # If there are multiple scratchpad windows, this command cycles through them.
  72. bindsym $mod+semicolon scratchpad show
  73. # Workspace bindings
  74. set $work1 g
  75. set $work2 c
  76. set $work3 r
  77. set $work4 l
  78. set $work5 parenleft
  79. set $work6 equal
  80. set $work7 asterisk
  81. set $work8 parenright
  82. set $work9 plus
  83. set $work10 bracketright
  84. # Number keypad bindings
  85. set $KP_0 KP_Insert
  86. set $KP_1 KP_End
  87. set $KP_2 KP_Down
  88. set $KP_3 KP_Next
  89. set $KP_4 KP_Left
  90. set $KP_5 KP_Begin
  91. set $KP_6 KP_Right
  92. set $KP_7 KP_Home
  93. set $KP_8 KP_Up
  94. set $KP_9 KP_Prior
  95. set $KP_Decimal KP_Delete
  96. # switch to workspace
  97. bindsym $mod+$work1 workspace 1
  98. bindsym $mod+$work2 workspace 2
  99. bindsym $mod+$work3 workspace 3
  100. bindsym $mod+$work4 workspace 4
  101. bindsym $mod+$work5 workspace 5
  102. bindsym $mod+$work6 workspace 6
  103. bindsym $mod+$work7 workspace 7
  104. bindsym $mod+$work8 workspace 8
  105. bindsym $mod+$work9 workspace 9
  106. bindsym $mod+$work10 workspace 10
  107. # switch to workspace with numpad
  108. bindsym $mod+$KP_1 workspace 1
  109. bindsym $mod+$KP_2 workspace 2
  110. bindsym $mod+$KP_3 workspace 3
  111. bindsym $mod+$KP_4 workspace 4
  112. bindsym $mod+$KP_5 workspace 5
  113. bindsym $mod+$KP_6 workspace 6
  114. bindsym $mod+$KP_7 workspace 7
  115. bindsym $mod+$KP_8 workspace 8
  116. bindsym $mod+$KP_9 workspace 9
  117. bindsym $mod+$KP_0 workspace 10
  118. # move focused container to workspace
  119. bindsym $mod+Shift+$work1 move container to workspace 1
  120. bindsym $mod+Shift+$work2 move container to workspace 2
  121. bindsym $mod+Shift+$work3 move container to workspace 3
  122. bindsym $mod+Shift+$work4 move container to workspace 4
  123. bindsym $mod+Shift+$work5 move container to workspace 5
  124. bindsym $mod+Shift+$work6 move container to workspace 6
  125. bindsym $mod+Shift+$work7 move container to workspace 7
  126. bindsym $mod+Shift+$work8 move container to workspace 8
  127. bindsym $mod+Shift+$work9 move container to workspace 9
  128. bindsym $mod+Shift+$work10 move container to workspace 10
  129. # move focused container to workspace with numpad
  130. bindsym $mod+Shift+$KP_1 move container to workspace 1
  131. bindsym $mod+Shift+$KP_2 move container to workspace 2
  132. bindsym $mod+Shift+$KP_3 move container to workspace 3
  133. bindsym $mod+Shift+$KP_4 move container to workspace 4
  134. bindsym $mod+Shift+$KP_5 move container to workspace 5
  135. bindsym $mod+Shift+$KP_6 move container to workspace 6
  136. bindsym $mod+Shift+$KP_7 move container to workspace 7
  137. bindsym $mod+Shift+$KP_8 move container to workspace 8
  138. bindsym $mod+Shift+$KP_9 move container to workspace 9
  139. bindsym $mod+Shift+$KP_0 move container to workspace 10
  140. # reload the configuration file
  141. bindsym $mod+Shift+y reload
  142. # restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
  143. bindsym $mod+Shift+x restart
  144. # exit i3 (logs you out of your X session)
  145. bindsym $mod+Escape exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'"
  146. # resize window (you can also use the mouse for that)
  147. mode "resize" {
  148. # These bindings trigger as soon as you enter the resize mode
  149. # Pressing left will shrink the window’s width.
  150. # Pressing right will grow the window’s width.
  151. # Pressing up will shrink the window’s height.
  152. # Pressing down will grow the window’s height.
  153. bindsym $left resize shrink width 10 px or 10 ppt
  154. bindsym $down resize grow height 10 px or 10 ppt
  155. bindsym $up resize shrink height 10 px or 10 ppt
  156. bindsym $right resize grow width 10 px or 10 ppt
  157. # same bindings, but for the arrow keys
  158. bindsym Left resize shrink width 10 px or 10 ppt
  159. bindsym Down resize grow height 10 px or 10 ppt
  160. bindsym Up resize shrink height 10 px or 10 ppt
  161. bindsym Right resize grow width 10 px or 10 ppt
  162. # back to normal: Enter or Escape
  163. bindsym Return mode "default"
  164. bindsym Escape mode "default"
  165. }
  166. bindsym $mod+b mode "resize"
  167. # Start i3bar to display a workspace bar (plus the system information i3status
  168. # finds out, if available)
  169. bar {
  170. status_command i3status
  171. }