update i3 and lockscreen
[dotfiles.git] / x / .config / i3 / config
1 # This file has been auto-generated by i3-config-wizard(1).
2 # It will not be overwritten, so edit it as you like.
3 #
4 # Should you change your keyboard layout some time, delete
5 # this file and re-run i3-config-wizard(1).
6 #
7
8 # i3 config file (v4)
9 #
10 # Please see http://i3wm.org/docs/userguide.html for a complete reference!
11
12 set $mod Mod4
13 set $font DejaVu Sans Mono
14 set $fontsize 12
15
16 # lock the screen after 10 minutes
17 exec xautolock -locker ~/.local/bin/lock.sh &\
18 dunst &\
19 urxvtd -q -o &\
20 .local/bin/bg &\
21 setxkbmap -layout dvorak,ru -variant ,phonetic_dvorak -option compose:ralt,grp:menu_toggle
22
23 # Toggle playback
24 bindsym Pause exec mpc toggle
25 # Printscreen
26 bindsym Shift+Print exec ~/.local/bin/scr window
27 bindsym Print exec ~/.local/bin/scr
28 # put a password in the clipboard
29 bindsym $mod+y exec /usr/share/doc/pass/examples/dmenu/passmenu
30 bindsym $mod+Shift+y exec /usr/share/doc/pass/examples/dmenu/passmenu --type
31
32 # font for window titles.
33 font pango:$font 8
34
35 # use Mouse+$mod to drag floating windows to their wanted position
36 floating_modifier $mod
37 hide_edge_borders none
38
39 # start a terminal
40 bindsym $mod+Return exec i3-sensible-terminal
41
42 # lock
43 bindsym $mod+l exec xautolock -locknow
44
45 # kill focused window
46 bindsym $mod+Shift+quotedbl kill
47
48 # start dmenu
49 bindsym $mod+e exec dmenu_run -i -f -fn 'xft:$font:pixelsize=$fontsize'
50
51 # change focus
52 bindsym $mod+h focus left
53 bindsym $mod+t focus down
54 bindsym $mod+n focus up
55 bindsym $mod+s focus right
56
57 # alternatively, you can use the cursor keys:
58 bindsym XF86MonBrightnessUp exec xbacklight -inc 5
59 bindsym XF86MonBrightnessDown exec xbacklight -dec 5
60 bindsym XF86AudioMute exec amixer -c 1 set Master toggle
61 bindsym XF86AudioLowerVolume exec amixer -c 1 set Master 5%-
62 bindsym XF86AudioRaiseVolume exec amixer -c 1 set Master 5%+
63
64 # move focused window
65 bindsym $mod+Shift+h move left
66 bindsym $mod+Shift+t move down
67 bindsym $mod+Shift+n move up
68 bindsym $mod+Shift+s move right
69
70 # split in horizontal orientation
71 bindsym $mod+d split h
72
73 # split in vertical orientation
74 bindsym $mod+k split v
75
76 # enter fullscreen mode for the focused container
77 bindsym $mod+u fullscreen
78
79 # change container layout (stacked, tabbed, toggle split)
80 bindsym $mod+o layout stacking
81 bindsym $mod+comma layout tabbed
82 bindsym $mod+period layout toggle split
83
84 # toggle tiling / floating
85 bindsym $mod+Shift+space floating toggle
86
87 # change focus between tiling / floating windows
88 bindsym $mod+space focus mode_toggle
89
90 # focus the parent container
91 bindsym $mod+a focus parent
92
93 # focus the child container
94 #bindsym $mod+d focus child
95
96 # switch to workspace
97 bindsym $mod+1 workspace 1
98 bindsym $mod+2 workspace 2
99 bindsym $mod+3 workspace 3
100 bindsym $mod+4 workspace 4
101 bindsym $mod+5 workspace 5
102 bindsym $mod+6 workspace 6
103 bindsym $mod+7 workspace 7
104 bindsym $mod+8 workspace 8
105 bindsym $mod+9 workspace 9
106 bindsym $mod+0 workspace 10
107
108 # move focused container to workspace
109 bindsym $mod+Shift+1 move container to workspace 1
110 bindsym $mod+Shift+2 move container to workspace 2
111 bindsym $mod+Shift+3 move container to workspace 3
112 bindsym $mod+Shift+4 move container to workspace 4
113 bindsym $mod+Shift+5 move container to workspace 5
114 bindsym $mod+Shift+6 move container to workspace 6
115 bindsym $mod+Shift+7 move container to workspace 7
116 bindsym $mod+Shift+8 move container to workspace 8
117 bindsym $mod+Shift+9 move container to workspace 9
118 bindsym $mod+Shift+0 move container to workspace 10
119
120 # reload the configuration file
121 bindsym $mod+Shift+j reload
122 # restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
123 bindsym $mod+Shift+p restart
124 # exit i3 (logs you out of your X session)
125 bindsym $mod+Shift+period exec i3-msg exit
126
127 # resize window (you can also use the mouse for that)
128 mode "resize" {
129 # These bindings trigger as soon as you enter the resize mode
130 bindsym h resize shrink width 5 px or 5 ppt
131 bindsym t resize grow height 5 px or 5 ppt
132 bindsym n resize shrink height 5 px or 5 ppt
133 bindsym s resize grow width 5 px or 5 ppt
134
135 # back to normal: Enter or Escape
136 bindsym Return mode "default"
137 bindsym Escape mode "default"
138 }
139
140 bindsym $mod+p mode "resize"
141
142 # Start i3bar to display a workspace bar (plus the system information i3status
143 # finds out, if available)
144 bar {
145 status_command i3status
146 font pango:$font $fontsize
147 }