-
Notifications
You must be signed in to change notification settings - Fork 0
/
config
319 lines (263 loc) · 10.6 KB
/
config
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
# i3 config file (v4)
# Please see http://i3wm.org/docs/userguide.html for a complete reference!
# Set mod key (Mod1=<Alt>, Mod4=<Super>)
set $mod Mod4
set $mod_2 Mod1
# Configure border style <normal|1pixel|pixel xx|none|pixel>
default_border pixel 1
default_floating_border normal
# Hide borders
hide_edge_borders none
# Font for window titles. Will also be used by the bar unless a different font
# font xft:URWGothic-Book:style=Regular:pixelsize=17:antialias=true;3
font pango:CodeNewRoman 8
# Use Mouse+$mod to drag floating windows
floating_modifier $mod
# start a terminal
bindsym $mod+Return exec alacritty
# kill focused window
bindsym $mod+o kill
# start program launcher
bindsym $mod+n exec --no-startup-id rofi -show drun window
# Start Applications
bindsym Print exec --no-startup-id flameshot gui
# xkill window
bindsym $mod+Ctrl+x --release exec --no-startup-id xkill
# change focus
bindsym $mod+h focus left; exec --no-startup-id ~/.config/.scripts/move_mouse.sh
bindsym $mod+j focus down; exec --no-startup-id ~/.config/.scripts/move_mouse.sh
bindsym $mod+k focus up; exec --no-startup-id ~/.config/.scripts/move_mouse.sh
bindsym $mod+l focus right; exec --no-startup-id ~/.config/.scripts/move_mouse.sh
bindsym $mod+Shift+h move left
bindsym $mod+Shift+j move down
bindsym $mod+Shift+k move up
bindsym $mod+Shift+l move right
# workspace back and forth (with/without active container)
workspace_auto_back_and_forth yes
bindsym $mod+m workspace back_and_forth
bindsym $mod+Shift+m move container to workspace back_and_forth; workspace back_and_forth
# split orientation toggle
bindsym $mod+semicolon split toggle
# toggle fullscreen mode for the focused container
bindsym $mod+f fullscreen toggle
# change container layout (stacked, tabbed, toggle split)
# bindsym $mod+s layout stacking
bindsym $mod+$mod_2+slash layout toggle split
bindsym $mod+slash layout toggle
# toggle tiling / floating
bindsym $mod+Shift+space floating toggle
# change focus between tiling / floating windows
bindsym $mod+space focus mode_toggle
# toggle sticky
# bindsym $mod+Shift+s sticky toggle
# focus the parent container
bindsym $mod+a focus parent
# move the currently focused window to the scratchpad
bindsym $mod+Shift+minus move scratchpad
# Show the next scratchpad window or hide the focused scratchpad window.
# If there are multiple scratchpad windows, this command cycles through them.
bindsym $mod+minus scratchpad show
#navigate workspaces next / previous
bindsym $mod+$mod_2+l workspace next
bindsym $mod+$mod_2+h workspace prev
# Workspace names
# to display names or symbols instead of plain workspace numbers you can use
# something like: set $ws1 1:mail
# set $ws2 2:
set $ws1
set $ws2
set $ws3
set $ws4 4
set $ws5 5
set $ws6 6
set $ws7 7
set $ws8 8
set $ws9 9
set $ws10
# switch to workspace
bindsym $mod+1 workspace $ws1
bindsym $mod+2 workspace $ws2
bindsym $mod+3 workspace $ws3
bindsym $mod+4 workspace $ws4
bindsym $mod+5 workspace $ws5
bindsym $mod+6 workspace $ws6
bindsym $mod+7 workspace $ws7
bindsym $mod+8 workspace $ws8
bindsym $mod+9 workspace $ws9
bindsym $mod+0 workspace $ws10
# Move window
bindsym $mod+w mode "$move_window"
set $move_window 1, 2, 3, 4, 5, 6, 7, 8, 9, 0
mode "$move_window" {
bindsym 1 move container to workspace $ws1; workspace $ws1; mode "default"
bindsym 2 move container to workspace $ws2; workspace $ws2; mode "default"
bindsym 3 move container to workspace $ws3; workspace $ws3; mode "default"
bindsym 4 move container to workspace $ws4; workspace $ws4; mode "default"
bindsym 5 move container to workspace $ws5; workspace $ws5; mode "default"
bindsym 6 move container to workspace $ws6; workspace $ws6; mode "default"
bindsym 7 move container to workspace $ws7; workspace $ws7; mode "default"
bindsym 8 move container to workspace $ws8; workspace $ws8; mode "default"
bindsym 9 move container to workspace $ws9; workspace $ws9; mode "default"
bindsym 0 move container to workspace $ws10; workspace $ws10; mode "default"
bindsym Return mode "default"
bindsym Escape mode "default"
}
# Open applications on specific workspaces
assign [class="Vivaldi-stable"] $ws3
# Open specific applications in floating mode
for_window [class="Clipgrab"] floating enable
# Open specific applications in fullscreen mode
for_window [class="Vivaldi-stable"] fullscreen enable
# Moving Tauri window to Workspace 10; interference on Hot Reloading Project
for_window [class="Gui"] move container to workspace $ws10
# switch to workspace with urgent window automatically
for_window [urgent=latest] focus
for_window [class="^.*"] border pixel 1
for_window [all] title_window_icon on
# 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
# 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'"
# Set shut down, restart and locking features
# bindsym $mod+0 mode "$mode_system"
bindsym $mod+q exec poweroff
bindsym $mod+c mode "$mode_system"
# bindsym $mod+q "$mode_system"
set $mode_system (l)ock, (e)xit, switch_(u)ser, (s)uspend, (h)ibernate, (r)eboot, shutdown(c)
mode "$mode_system" {
bindsym r exec reboot, mode "default"
bindsym s exec --no-startup-id systemctl suspend, mode "default"
bindsym h exec --no-startup-id systemctl hibernate, mode "default"
bindsym l exec --no-startup-id i3lock --color=000000 --pointer=win --show-failed-attempts --ignore-empty-password, mode "default"
# bindsym l exec --no-startup-id i3exit lock, mode "default"
# bindsym s exec --no-startup-id i3exit suspend, mode "default"
# bindsym u exec --no-startup-id i3exit switch_user, mode "default"
# bindsym e exec --no-startup-id i3exit logout, mode "default"
# bindsym h exec --no-startup-id i3exit hibernate, mode "default"
# bindsym r exec --no-startup-id i3exit reboot, mode "default"
# bindsym c exec --no-startup-id i3exit shutdown, mode "default"
# exit system mode: "Enter" or "Escape"
bindsym Return mode "default"
bindsym Escape mode "default"
}
# Resize window (you can also use the mouse for that)
bindsym $mod+r mode "resize"
mode "resize" {
bindsym h resize shrink width 5 px or 5 ppt
bindsym j resize grow height 5 px or 5 ppt
bindsym k resize shrink height 5 px or 5 ppt
bindsym l resize grow width 5 px or 5 ppt
# same bindings, but for the arrow keys
bindsym Left resize shrink width 10 px or 10 ppt
bindsym Down resize grow height 10 px or 10 ppt
bindsym Up resize shrink height 10 px or 10 ppt
bindsym Right resize grow width 10 px or 10 ppt
# exit resize mode: Enter or Escape
bindsym Return mode "default"
bindsym Escape mode "default"
}
# Autostart applications
exec --no-startup-id clipit
exec --no-startup-id xautolock -time 10 -locker blurlock
exec --no-startup-id dunst
exec --no-startup-id xfce4-power-manager
exec --no-startup-id zsh -b
exec --no-startup-id powertop --auto-tune
# Set the keyboard continual key press rate & speed
exec_always --no-startup-id xset r rate 200 60
# Configure for display monitor
exec --no-startup-id $HOME/.config/.scripts/startup.sh
exec_always nitrogen --restore &
exec_always picom -b
# Color palette used for the terminal ( ~/.Xresources file )
# Colors are gathered based on the documentation:
# https://i3wm.org/docs/userguide.html#xresources
# Change the variable name at the place you want to match the color
# of your terminal like this:
# [example]
# If you want your bar to have the same background color as your
# terminal background change the line 362 from:
# background #14191D
# to:
# background $term_background
# Same logic applied to everything else.
set_from_resource $term_background background
set_from_resource $term_foreground foreground
set_from_resource $term_color0 color0
set_from_resource $term_color1 color1
set_from_resource $term_color2 color2
set_from_resource $term_color3 color3
set_from_resource $term_color4 color4
set_from_resource $term_color5 color5
set_from_resource $term_color6 color6
set_from_resource $term_color7 color7
set_from_resource $term_color8 color8
set_from_resource $term_color9 color9
set_from_resource $term_color10 color10
set_from_resource $term_color11 color11
set_from_resource $term_color12 color12
set_from_resource $term_color13 color13
set_from_resource $term_color14 color14
set_from_resource $term_color15 color15
# Start i3bar to display a workspace bar (plus the system information i3status if available)
bar {
output HDMI-1
position top
mode hide
hidden_state hide
modifier none
}
bar {
output eDP-1
i3bar_command i3bar -t
status_command ~/dev/make-files/i3status-rust/target/debug/i3status-rs $HOME/.config/i3status-rust/config.toml
position top
tray_output primary
mode hide
hidden_state hide
modifier none
## please set your primary output first. Example: 'xrandr --output eDP1 --primary'
# tray_output primary
# tray_output HDMI-1
# tray_output eDP-1
bindsym button4 nop
bindsym button5 nop
font xft:URWGothic-Book 10
# font xft:Code New Roman 11
strip_workspace_numbers no
colors {
# background #222D31
background #00000000
statusline #F9FAF9
separator #454947
# border backgr. text
focused_workspace #F9FAF9 #16a085 #292F34
active_workspace #595B5B #353836 #FDF6E3
inactive_workspace #595B5B #222D31 #EEE8D5
binding_mode #16a085 #2C2C2C #F9FAF9
urgent_workspace #16a085 #FDF6E3 #E5201D
}
}
# hide/unhide i3status bar
bindsym $mod+$mod_2+n bar mode toggle
# Theme colors
# class border backgr. text indic. child_border
# client.focused #556064 #556064 #80FFF9 #FDF6E3
client.focused #556064 #406075 #80FFF9 #FDF6E3
client.focused_inactive #2F3D44 #2F3D44 #1ABC9C #454948
client.unfocused #2F3D44 #2F3D44 #1ABC9C #454948
client.urgent #CB4B16 #FDF6E3 #1ABC9C #268BD2
client.placeholder #000000 #0c0c0c #ffffff #000000
client.background #2B2C2B
#############################
### settings for i3-gaps: ###
#############################
# Set inner/outer gaps
gaps inner 8
gaps outer -2
# Smart gaps (gaps used if only more than one container on the workspace)
smart_gaps on
# Smart borders (draw borders around container only if it is not the only container on this workspace)
# on|no_gaps (on=always activate and no_gaps=only activate if the gap size to the edge of the screen is 0)
smart_borders on