]> git.sur5r.net Git - i3/i3/blob - etc/config
Merge pull request #2507 from stapelberg/autotools
[i3/i3] / etc / config
1 # i3 config file (v4)
2 #
3 # Please see http://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:monospace 8
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:DejaVu Sans Mono 8
19
20 # Before i3 v4.8, we used to recommend this one as the default:
21 # font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
22 # The font above is very space-efficient, that is, it looks good, sharp and
23 # clear in small sizes. However, its unicode glyph coverage is limited, the old
24 # X core fonts rendering does not support right-to-left and this being a bitmap
25 # font, it doesn’t scale on retina/hidpi displays.
26
27 # use these keys for focus, movement, and resize directions when reaching for
28 # the arrows is not convenient
29 set $up l
30 set $down k
31 set $left j
32 set $right semicolon
33
34 # use Mouse+Mod1 to drag floating windows to their wanted position
35 floating_modifier Mod1
36
37 # start a terminal
38 bindsym Mod1+Return exec i3-sensible-terminal
39
40 # kill focused window
41 bindsym Mod1+Shift+q kill
42
43 # start dmenu (a program launcher)
44 bindsym Mod1+d exec dmenu_run
45 # There also is the (new) i3-dmenu-desktop which only displays applications
46 # shipping a .desktop file. It is a wrapper around dmenu, so you need that
47 # installed.
48 # bindsym Mod1+d exec --no-startup-id i3-dmenu-desktop
49
50 # change focus
51 bindsym Mod1+$left focus left
52 bindsym Mod1+$down focus down
53 bindsym Mod1+$up focus up
54 bindsym Mod1+$right focus right
55
56 # alternatively, you can use the cursor keys:
57 bindsym Mod1+Left focus left
58 bindsym Mod1+Down focus down
59 bindsym Mod1+Up focus up
60 bindsym Mod1+Right focus right
61
62 # move focused window
63 bindsym Mod1+Shift+$left move left
64 bindsym Mod1+Shift+$down move down
65 bindsym Mod1+Shift+$up move up
66 bindsym Mod1+Shift+$right move right
67
68 # alternatively, you can use the cursor keys:
69 bindsym Mod1+Shift+Left move left
70 bindsym Mod1+Shift+Down move down
71 bindsym Mod1+Shift+Up move up
72 bindsym Mod1+Shift+Right move right
73
74 # split in horizontal orientation
75 bindsym Mod1+h split h
76
77 # split in vertical orientation
78 bindsym Mod1+v split v
79
80 # enter fullscreen mode for the focused container
81 bindsym Mod1+f fullscreen toggle
82
83 # change container layout (stacked, tabbed, toggle split)
84 bindsym Mod1+s layout stacking
85 bindsym Mod1+w layout tabbed
86 bindsym Mod1+e layout toggle split
87
88 # toggle tiling / floating
89 bindsym Mod1+Shift+space floating toggle
90
91 # change focus between tiling / floating windows
92 bindsym Mod1+space focus mode_toggle
93
94 # focus the parent container
95 bindsym Mod1+a focus parent
96
97 # focus the child container
98 #bindsym Mod1+d focus child
99
100 # move the currently focused window to the scratchpad
101 bindsym Mod1+Shift+minus move scratchpad
102
103 # Show the next scratchpad window or hide the focused scratchpad window.
104 # If there are multiple scratchpad windows, this command cycles through them.
105 bindsym Mod1+minus scratchpad show
106
107 # switch to workspace
108 bindsym Mod1+1 workspace 1
109 bindsym Mod1+2 workspace 2
110 bindsym Mod1+3 workspace 3
111 bindsym Mod1+4 workspace 4
112 bindsym Mod1+5 workspace 5
113 bindsym Mod1+6 workspace 6
114 bindsym Mod1+7 workspace 7
115 bindsym Mod1+8 workspace 8
116 bindsym Mod1+9 workspace 9
117 bindsym Mod1+0 workspace 10
118
119 # move focused container to workspace
120 bindsym Mod1+Shift+1 move container to workspace 1
121 bindsym Mod1+Shift+2 move container to workspace 2
122 bindsym Mod1+Shift+3 move container to workspace 3
123 bindsym Mod1+Shift+4 move container to workspace 4
124 bindsym Mod1+Shift+5 move container to workspace 5
125 bindsym Mod1+Shift+6 move container to workspace 6
126 bindsym Mod1+Shift+7 move container to workspace 7
127 bindsym Mod1+Shift+8 move container to workspace 8
128 bindsym Mod1+Shift+9 move container to workspace 9
129 bindsym Mod1+Shift+0 move container to workspace 10
130
131 # reload the configuration file
132 bindsym Mod1+Shift+c reload
133 # restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
134 bindsym Mod1+Shift+r restart
135 # exit i3 (logs you out of your X session)
136 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'"
137
138 # resize window (you can also use the mouse for that)
139 mode "resize" {
140         # These bindings trigger as soon as you enter the resize mode
141
142         # Pressing left will shrink the window’s width.
143         # Pressing right will grow the window’s width.
144         # Pressing up will shrink the window’s height.
145         # Pressing down will grow the window’s height.
146         bindsym $left       resize shrink width 10 px or 10 ppt
147         bindsym $down       resize grow height 10 px or 10 ppt
148         bindsym $up         resize shrink height 10 px or 10 ppt
149         bindsym $right      resize grow width 10 px or 10 ppt
150
151         # same bindings, but for the arrow keys
152         bindsym Left        resize shrink width 10 px or 10 ppt
153         bindsym Down        resize grow height 10 px or 10 ppt
154         bindsym Up          resize shrink height 10 px or 10 ppt
155         bindsym Right       resize grow width 10 px or 10 ppt
156
157         # back to normal: Enter or Escape
158         bindsym Return mode "default"
159         bindsym Escape mode "default"
160 }
161
162 bindsym Mod1+r mode "resize"
163
164 # Start i3bar to display a workspace bar (plus the system information i3status
165 # finds out, if available)
166 bar {
167         status_command i3status
168 }
169
170 #######################################################################
171 # automatically start i3-config-wizard to offer the user to create a
172 # keysym-based config which used their favorite modifier (alt or windows)
173 #
174 # i3-config-wizard will not launch if there already is a config file
175 # in ~/.i3/config.
176 #
177 # Please remove the following exec line:
178 #######################################################################
179 exec i3-config-wizard