config 7.5 KB

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