config 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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 12
  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 14
  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+Mod4 to drag floating windows to their wanted position
  18. floating_modifier $mod
  19. # start a terminal
  20. bindsym $mod+Return exec alacritty
  21. # kill focused window
  22. bindsym $mod+Shift+w kill
  23. # start dmenu (a program launcher)
  24. bindsym $mod+Shift+d exec --no-startup-id dmenu_run
  25. # start dmenu for desktop applications
  26. bindsym $mod+d exec --no-startup-id i3-dmenu-desktop
  27. # adjust volume
  28. bindsym XF86AudioRaiseVolume exec --no-startup-id amixer set Master unmute 2dB+
  29. bindsym XF86AudioLowerVolume exec --no-startup-id amixer set Master unmute 2dB-
  30. bindsym XF86AudioMute exec --no-startup-id amixer set Master unmute 0
  31. # adjust luminosity
  32. bindsym XF86MonBrightnessUp exec --no-startup-id xbacklight + 2
  33. bindsym XF86MonBrightnessDown exec --no-startup-id xbacklight - 2
  34. # change focus
  35. bindsym $mod+$left focus left
  36. bindsym $mod+$down focus down
  37. bindsym $mod+$up focus up
  38. bindsym $mod+$right focus right
  39. # alternatively, you can use the cursor keys:
  40. bindsym $mod+Left focus left
  41. bindsym $mod+Down focus down
  42. bindsym $mod+Up focus up
  43. bindsym $mod+Right focus right
  44. # move focused window
  45. bindsym $mod+Shift+$left move left
  46. bindsym $mod+Shift+$down move down
  47. bindsym $mod+Shift+$up move up
  48. bindsym $mod+Shift+$right move right
  49. # alternatively, you can use the cursor keys:
  50. bindsym $mod+Shift+Left move left
  51. bindsym $mod+Shift+Down move down
  52. bindsym $mod+Shift+Up move up
  53. bindsym $mod+Shift+Right move right
  54. # split in horizontal orientation
  55. bindsym $mod+v split h
  56. # split in vertical orientation
  57. bindsym $mod+minus split v
  58. # enter fullscreen mode for the focused container
  59. bindsym $mod+f fullscreen toggle
  60. # change container layout (stacked, tabbed, toggle split)
  61. bindsym $mod+o layout stacking
  62. bindsym $mod+comma layout tabbed
  63. bindsym $mod+period layout toggle split
  64. # toggle tiling / floating
  65. bindsym $mod+Shift+space floating toggle
  66. # change focus between tiling / floating windows
  67. bindsym $mod+space focus mode_toggle
  68. # focus the parent container
  69. bindsym $mod+a focus parent
  70. # focus the child container
  71. bindsym $mod+e focus child
  72. # move the currently focused window to the scratchpad
  73. bindsym $mod+Shift+semicolon move scratchpad
  74. # Show the next scratchpad window or hide the focused scratchpad window.
  75. # If there are multiple scratchpad windows, this command cycles through them.
  76. bindsym $mod+semicolon scratchpad show
  77. # Workspace bindings
  78. set $work1 g
  79. set $work2 c
  80. set $work3 r
  81. set $work4 l
  82. set $work5 parenleft
  83. set $work6 equal
  84. set $work7 asterisk
  85. set $work8 parenright
  86. set $work9 plus
  87. set $work10 bracketright
  88. # Number keypad bindings
  89. set $KP_0 KP_Insert
  90. set $KP_1 KP_End
  91. set $KP_2 KP_Down
  92. set $KP_3 KP_Next
  93. set $KP_4 KP_Left
  94. set $KP_5 KP_Begin
  95. set $KP_6 KP_Right
  96. set $KP_7 KP_Home
  97. set $KP_8 KP_Up
  98. set $KP_9 KP_Prior
  99. set $KP_Decimal KP_Delete
  100. # switch to workspace
  101. bindsym $mod+$work1 workspace 1
  102. bindsym $mod+$work2 workspace 2
  103. bindsym $mod+$work3 workspace 3
  104. bindsym $mod+$work4 workspace 4
  105. bindsym $mod+$work5 workspace 5
  106. bindsym $mod+$work6 workspace 6
  107. bindsym $mod+$work7 workspace 7
  108. bindsym $mod+$work8 workspace 8
  109. bindsym $mod+$work9 workspace 9
  110. bindsym $mod+$work10 workspace 10
  111. # switch to workspace with numpad
  112. bindsym $KP_1 workspace 1
  113. bindsym $KP_2 workspace 2
  114. bindsym $KP_3 workspace 3
  115. bindsym $KP_4 workspace 4
  116. bindsym $KP_5 workspace 5
  117. bindsym $KP_6 workspace 6
  118. bindsym $KP_7 workspace 7
  119. bindsym $KP_8 workspace 8
  120. bindsym $KP_9 workspace 9
  121. bindsym $KP_0 workspace 10
  122. # move focused container to workspace
  123. bindsym $mod+Shift+$work1 move container to workspace 1
  124. bindsym $mod+Shift+$work2 move container to workspace 2
  125. bindsym $mod+Shift+$work3 move container to workspace 3
  126. bindsym $mod+Shift+$work4 move container to workspace 4
  127. bindsym $mod+Shift+$work5 move container to workspace 5
  128. bindsym $mod+Shift+$work6 move container to workspace 6
  129. bindsym $mod+Shift+$work7 move container to workspace 7
  130. bindsym $mod+Shift+$work8 move container to workspace 8
  131. bindsym $mod+Shift+$work9 move container to workspace 9
  132. bindsym $mod+Shift+$work10 move container to workspace 10
  133. # move focused container to workspace with numpad
  134. bindsym $mod+$KP_1 move container to workspace 1
  135. bindsym $mod+$KP_2 move container to workspace 2
  136. bindsym $mod+$KP_3 move container to workspace 3
  137. bindsym $mod+$KP_4 move container to workspace 4
  138. bindsym $mod+$KP_5 move container to workspace 5
  139. bindsym $mod+$KP_6 move container to workspace 6
  140. bindsym $mod+$KP_7 move container to workspace 7
  141. bindsym $mod+$KP_8 move container to workspace 8
  142. bindsym $mod+$KP_9 move container to workspace 9
  143. bindsym $mod+$KP_0 move container to workspace 10
  144. # reload the configuration file
  145. bindsym $mod+Shift+y reload
  146. # restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
  147. bindsym $mod+Shift+x restart
  148. # exit i3 (logs you out of your X session)
  149. 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'"
  150. # resize window (you can also use the mouse for that)
  151. mode "resize" {
  152. # These bindings trigger as soon as you enter the resize mode
  153. # Pressing left will shrink the window’s width.
  154. # Pressing right will grow the window’s width.
  155. # Pressing up will shrink the window’s height.
  156. # Pressing down will grow the window’s height.
  157. bindsym $left resize shrink width 10 px or 10 ppt
  158. bindsym $down resize grow height 10 px or 10 ppt
  159. bindsym $up resize shrink height 10 px or 10 ppt
  160. bindsym $right resize grow width 10 px or 10 ppt
  161. # same bindings, but for the arrow keys
  162. bindsym Left resize shrink width 10 px or 10 ppt
  163. bindsym Down resize grow height 10 px or 10 ppt
  164. bindsym Up resize shrink height 10 px or 10 ppt
  165. bindsym Right resize grow width 10 px or 10 ppt
  166. # back to normal: Enter or Escape
  167. bindsym Return mode "default"
  168. bindsym Escape mode "default"
  169. }
  170. bindsym $mod+b mode "resize"
  171. # windows style
  172. hide_edge_borders smart
  173. # Start i3bar to display a workspace bar (plus some system information)
  174. bar {
  175. status_command i3status
  176. mode hide
  177. hidden_state hide
  178. modifier $mod
  179. separator_symbol "·"
  180. }
  181. # Background
  182. exec --no-startup-id feh --bg-fill ~/Pictures/Backgrounds/ubuntu_grey.jpg