Advertisement
Guest User

Untitled

a guest
Aug 29th, 2020
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.72 KB | None | 0 0
  1. # i3 config file (v4)
  2. #
  3. # Please see https://i3wm.org/docs/userguide.html for a complete reference!
  4. #
  5. # This config file uses keycodes (bindsym) and was written for the QWERTY
  6. # layout.
  7. #
  8. # To get a config file with the same key positions, but for your current
  9. # layout, use the i3-config-wizard
  10. #
  11.  
  12. # Font for window titles. Will also be used by the bar unless a different font
  13. # is used in the bar {} block below.
  14. font pango:terminus 10
  15.  
  16. # This font is widely installed, provides lots of unicode glyphs, right-to-left
  17. # text rendering and scalability on retina/hidpi displays (thanks to pango).
  18. #font pango:terminus 8
  19.  
  20. # The combination of xss-lock, nm-applet and pactl is a popular choice, so
  21. # they are included here as an example. Modify as you see fit.
  22.  
  23. # xss-lock grabs a logind suspend inhibit lock and will use i3lock to lock the
  24. # screen before suspend. Use loginctl lock-session to lock your screen.
  25. exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock --nofork
  26.  
  27. # NetworkManager is the most popular way to manage wireless networks on Linux,
  28. # and nm-applet is a desktop environment-independent system tray GUI for it.
  29. exec --no-startup-id nm-applet
  30.  
  31. # make a tabbed layout
  32. layout tabbed
  33. # and execute lxterm
  34. exec lxterm
  35.  
  36. # Use pactl to adjust volume in PulseAudio.
  37. set $refresh_i3status killall -SIGUSR1 i3status
  38. bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10% && $refresh_i3status
  39. bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -10% && $refresh_i3status
  40. bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle && $refresh_i3status
  41. bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status
  42.  
  43. # use these keys for focus, movement, and resize directions when reaching for
  44. # the arrows is not convenient
  45. set $up l
  46. set $down k
  47. set $left j
  48. set $right semicolon
  49.  
  50. # use Mouse+Mod1 to drag floating windows to their wanted position
  51. floating_modifier Mod1
  52.  
  53. # start a terminal
  54. bindsym Mod1+Return exec lxterm
  55.  
  56. # kill focused window
  57. bindsym Mod1+Shift+q kill
  58.  
  59. # quit i3 (kill SDDM)
  60. bindsym Mod1+q sudo killall sddm
  61.  
  62. # start dmenu (a program launcher)
  63. bindsym Mod1+d exec dmenu_run
  64. # There also is the (new) i3-dmenu-desktop which only displays applications
  65. # shipping a .desktop file. It is a wrapper around dmenu, so you need that
  66. # installed.
  67. # bindsym Mod1+d exec --no-startup-id i3-dmenu-desktop
  68.  
  69. # change the focus
  70. bindsym Mod1+Left focus left
  71. bindsym Mod1+Down focus down
  72. bindsym Mod1+Up focus up
  73. bindsym Mod1+Right focus right
  74.  
  75. # move focused window
  76. bindsym Mod1+Shift+Left move left
  77. bindsym Mod1+Shift+Down move down
  78. bindsym Mod1+Shift+Up move up
  79. bindsym Mod1+Shift+Right move right
  80.  
  81. # split in horizontal orientation
  82. bindsym Mod1+h split h
  83.  
  84. # split in vertical orientation
  85. bindsym Mod1+v split v
  86.  
  87. # enter fullscreen mode for the focused container
  88. bindsym Mod1+f fullscreen toggle
  89.  
  90. # change container layout (stacked, tabbed, toggle split)
  91. bindsym Mod1+s layout stacking
  92. bindsym Mod1+w layout tabbed
  93. bindsym Mod1+e layout toggle split
  94.  
  95. # toggle tiling / floating
  96. bindsym Mod1+Shift+space floating toggle
  97.  
  98. # change xkb layout
  99. bindsym Mod1+space if [[ $(xkb-switch) == "us" ]]; then setxkbmap ru; else setxkbmap us; fi
  100.  
  101. # focus the parent container
  102. bindsym Mod1+a focus parent
  103.  
  104. # focus the child container
  105. #bindsym Mod1+d focus child
  106.  
  107. # move the currently focused window to the scratchpad
  108. bindsym Mod1+Shift+minus move scratchpad
  109.  
  110. # Show the next scratchpad window or hide the focused scratchpad window.
  111. # If there are multiple scratchpad windows, this command cycles through them.
  112. bindsym Mod1+minus scratchpad show
  113.  
  114. # Define names for default workspaces for which we configure key bindings later on.
  115. # We use variables to avoid repeating the names in multiple places.
  116. set $ws1 "1"
  117. set $ws2 "2"
  118. set $ws3 "3"
  119. set $ws4 "4"
  120. set $ws5 "5"
  121. set $ws6 "6"
  122. set $ws7 "7"
  123. set $ws8 "8"
  124. set $ws9 "9"
  125. set $ws10 "10"
  126.  
  127. # switch to workspace
  128. bindsym Mod1+1 workspace number $ws1
  129. bindsym Mod1+2 workspace number $ws2
  130. bindsym Mod1+3 workspace number $ws3
  131. bindsym Mod1+4 workspace number $ws4
  132. bindsym Mod1+5 workspace number $ws5
  133. bindsym Mod1+6 workspace number $ws6
  134. bindsym Mod1+7 workspace number $ws7
  135. bindsym Mod1+8 workspace number $ws8
  136. bindsym Mod1+9 workspace number $ws9
  137. bindsym Mod1+0 workspace number $ws10
  138.  
  139. # move focused container to workspace
  140. bindsym Mod1+Shift+1 move container to workspace number $ws1
  141. bindsym Mod1+Shift+2 move container to workspace number $ws2
  142. bindsym Mod1+Shift+3 move container to workspace number $ws3
  143. bindsym Mod1+Shift+4 move container to workspace number $ws4
  144. bindsym Mod1+Shift+5 move container to workspace number $ws5
  145. bindsym Mod1+Shift+6 move container to workspace number $ws6
  146. bindsym Mod1+Shift+7 move container to workspace number $ws7
  147. bindsym Mod1+Shift+8 move container to workspace number $ws8
  148. bindsym Mod1+Shift+9 move container to workspace number $ws9
  149. bindsym Mod1+Shift+0 move container to workspace number $ws10
  150.  
  151. # reload the configuration file
  152. bindsym Mod1+Shift+c reload
  153. # restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
  154. bindsym Mod1+Shift+r restart
  155. # exit i3 (logs you out of your X session)
  156. bindsym Mod1+Shift+e 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'"
  157.  
  158. # resize window (you can also use the mouse for that)
  159. mode "resize" {
  160. # These bindings trigger as soon as you enter the resize mode
  161.  
  162. # Pressing left will shrink the window’s width.
  163. # Pressing right will grow the window’s width.
  164. # Pressing up will shrink the window’s height.
  165. # Pressing down will grow the window’s height.
  166. bindsym $left resize shrink width 10 px or 10 ppt
  167. bindsym $down resize grow height 10 px or 10 ppt
  168. bindsym $up resize shrink height 10 px or 10 ppt
  169. bindsym $right resize grow width 10 px or 10 ppt
  170.  
  171. # same bindings, but for the arrow keys
  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.  
  177. # back to normal: Enter or Escape or Mod1+r
  178. bindsym Return mode "default"
  179. bindsym Escape mode "default"
  180. bindsym Mod1+r mode "default"
  181. }
  182.  
  183. bindsym Mod1+r mode "resize"
  184.  
  185. # Start i3bar to display a workspace bar (plus the system information i3status
  186. # finds out, if available)
  187. bar {
  188. status_command i3status
  189. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement