-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathi3config
172 lines (145 loc) · 5.42 KB
/
i3config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
# i3 config file (v4)
# Please see http://i3wm.org/docs/userguide.html for a complete reference!
workspace_layout tabbed
# startup
exec --no-startup-id sh ~/.fehbg
exec --no-startup-id alacritty
# set $mod Mod4
set $mod Mod1
# Font for window titles.
font pango:Cica 20px
# Use Mouse+$mod to drag floating windows to their wanted position
floating_modifier $mod
# specific setting
# for_window [title="urxvt"] border 1pixel
for_window [class="qemu"] floating enable
for_window [title="QEMU"] floating enable
for_window [class="feh"] floating enable
for_window [title="feh"] floating enable
for_window [class="(?i)rdesktop"] floating disable
for_window [title="Figure*"] floating enable
# Assign chrome to workspace 2
assign [class="chrome"] 2
assign [class="Slack"] 3
assign [title="DeaDBeeF*"] 3
# mouse setting
focus_follows_mouse no
# popup in fullscreen setting
# popup_during_fullscreen leave_fullscreen
# start a application
bindsym $mod+Return exec --no-startup-id alacritty
bindsym $mod+b exec --no-startup-id /usr/bin/google-chrome-stable
bindsym $mod+i exec --no-startup-id xbacklight -dec 10
bindsym $mod+o exec --no-startup-id xbacklight -inc 10
bindsym $mod+Shift+i exec --no-startup-id xbacklight -dec 3
bindsym $mod+Shift+o exec --no-startup-id xbacklight -inc 3
# kill focused window
bindsym $mod+q kill
# start dmenu (a program launcher)
bindsym $mod+d exec --no-startup-id i3-dmenu-desktop --dmenu="dmenu -i -fn 'Cica'"
bindsym $mod+Shift+d exec dmenu_run
# change focus
bindsym $mod+h focus left
bindsym $mod+j focus down
bindsym $mod+k focus up
bindsym $mod+l focus right
# move focused window
bindsym $mod+Shift+h move left
bindsym $mod+Shift+j move down
bindsym $mod+Shift+k move up
bindsym $mod+Shift+l move right
# focus the parent container
bindsym $mod+a focus parent
# focus the child container
bindsym $mod+z focus child
# focus last floating/tiling container
bindsym $mod+g focus mode_toggle
# change focus between tiling / floating windows
bindsym $mod+c focus mode_toggle
# bindsym $mod+space focus mode_toggle
# split in horizontal or vertical orientation
bindsym $mod+n split h
bindsym $mod+v split v
# enter fullscreen mode for the focused container
bindsym $mod+f fullscreen
# change container layout (stacked, tabbed, toggle split)
bindsym $mod+s layout stacking
bindsym $mod+w layout tabbed
bindsym $mod+e layout toggle split
# Toggle between stacking/tabbed/splith/splitv:
bindsym $mod+x layout toggle all
# toggle tiling / floating
bindsym $mod+Shift+space floating toggle
# switch to workspace
bindsym $mod+1 workspace 1
bindsym $mod+2 workspace 2
bindsym $mod+3 workspace 3
bindsym $mod+4 workspace 4
bindsym $mod+5 workspace 5
bindsym $mod+6 workspace 6
bindsym $mod+7 workspace 7
bindsym $mod+8 workspace 8
bindsym $mod+9 workspace 9
bindsym $mod+0 workspace 10
bindsym $mod+Ctrl+a workspace prev
bindsym $mod+Ctrl+d workspace next
bindsym $mod+Ctrl+s workspace back_and_forth
# move focused container to workspace
bindsym $mod+Shift+1 move container to workspace 1
bindsym $mod+Shift+2 move container to workspace 2
bindsym $mod+Shift+3 move container to workspace 3
bindsym $mod+Shift+4 move container to workspace 4
bindsym $mod+Shift+5 move container to workspace 5
bindsym $mod+Shift+6 move container to workspace 6
bindsym $mod+Shift+7 move container to workspace 7
bindsym $mod+Shift+8 move container to workspace 8
bindsym $mod+Shift+9 move container to workspace 9
bindsym $mod+Shift+0 move container to workspace 10
# reload the configuration file
bindsym $mod+Shift+c reload
# restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
bindsym $mod+Shift+r restart
# exit i3 (logs you out of your X session)
# bindsym $mod+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'"
# resize window (you can also use the mouse for that)
mode "resize" {
bindsym h resize shrink width 2 px or 2 ppt
bindsym j resize grow height 2 px or 2 ppt
bindsym k resize shrink height 2 px or 2 ppt
bindsym l resize grow width 2 px or 2 ppt
# back to normal: Enter or Escape
bindsym Return mode "default"
bindsym Escape mode "default"
}
bindsym $mod+r mode "resize"
# system commands
set $out "(L)ock, (E)xit, (S)uspend, (H)ibernate, (R)eboot, (P)oweroff"
set $i3exit "$HOME/.config/i3/i3exit"
mode $out {
bindsym l exec --no-startup-id sh $i3exit lock, mode "default"
bindsym e exec --no-startup-id sh $i3exit exit, mode "default"
bindsym s exec --no-startup-id sh $i3exit suspend, mode "default"
bindsym h exec --no-startup-id sh $i3exit hibernate, mode "default"
bindsym r exec --no-startup-id sh $i3exit reboot, mode "default"
bindsym p exec --no-startup-id sh $i3exit poweroff, mode "default"
# back to normal: Enter or Escape
bindsym Return mode "default"
bindsym Escape mode "default"
}
bindsym $mod+Shift+e mode $out
# Start i3bar to display a workspace bar (plus the system information i3status finds out, if available)
bar {
status_command i3status
position top
font pango:Cica 20px
binding_mode_indicator yes
colors {
background #4682b4
statusline #afeeee
separator #2f4f4f
focused_workspace #2f4f4f #26499d #f5f5f5
active_workspace #2f4f4f #4682b4 #f5f5f5
inactive_workspace #2f4f4f #192f60 #f5f5f5
urgent_workspace #2f4f4f #900000 #f5f5f5
}
}