blob: a0e9bd76041f9f4d8b87c3005bc87cbf0327e4c7 (
plain)
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
|
set $mod Mod4
set $alt Mod1
floating_modifier $mod
bindsym $mod+1 workspace number 1
bindsym $mod+2 workspace number 2
bindsym $mod+3 workspace number 3
bindsym $mod+4 workspace number 4
bindsym $mod+5 workspace number 5
bindsym $mod+6 workspace number 6
bindsym $mod+7 workspace number 7
bindsym $mod+8 workspace number 8
bindsym $mod+9 workspace number 9
bindsym $mod+0 workspace number 10
bindsym $mod+Shift+1 move container to workspace number 1
bindsym $mod+Shift+2 move container to workspace number 2
bindsym $mod+Shift+3 move container to workspace number 3
bindsym $mod+Shift+4 move container to workspace number 4
bindsym $mod+Shift+5 move container to workspace number 5
bindsym $mod+Shift+6 move container to workspace number 6
bindsym $mod+Shift+7 move container to workspace number 7
bindsym $mod+Shift+8 move container to workspace number 8
bindsym $mod+Shift+9 move container to workspace number 9
bindsym $mod+Shift+0 move container to workspace number 10
mode "Resize Mode" {
bindsym h resize shrink width 6 px or 6 ppt
bindsym j resize shrink height 6 px or 6 ppt
bindsym k resize grow height 6 px or 6 ppt
bindsym l resize grow width 6 px or 6 ppt
bindsym Left resize shrink width 6 px or 6 ppt
bindsym Down resize shrink height 6 px or 6 ppt
bindsym Up resize grow height 6 px or 6 ppt
bindsym Right resize grow width 6 px or 6 ppt
bindsym Shift+h resize shrink width 12 px or 12 ppt
bindsym Shift+j resize shrink height 12 px or 12 ppt
bindsym Shift+k resize grow height 12 px or 12 ppt
bindsym Shift+l resize grow width 12 px or 12 ppt
bindsym Shift+Left resize shrink width 12 px or 12 ppt
bindsym Shift+Down resize shrink height 12 px or 12 ppt
bindsym Shift+Up resize grow height 12 px or 12 ppt
bindsym Shift+Right resize grow width 12 px or 12 ppt
bindsym minus gaps inner current minus 5
bindsym plus gaps inner current plus 5
bindsym Shift+minus gaps inner current minus 10
bindsym Shift+plus gaps inner current plus 10
bindsym Return mode "default"
bindsym Escape mode "default"
bindsym $mod+r mode "default"
}
bindsym $mod+r mode "Resize Mode"
font pango:Source Code Pro Medium 11
gaps inner 5
gaps outer 0
default_border pixel 2
default_floating_border pixel 2
title_align center
smart_gaps on
hide_edge_borders smart
popup_during_fullscreen smart
focus_follows_mouse no
floating_maximum_size -1 x -1
for_window [class="floating_window"] floating enable
for_window [window_role="pop-up"] floating enable
for_window [window_role="About"] floating enable
for_window [class="Nextcloud"] floating enable
for_window [title="pulsemixer"] floating enable
exec_always --no-startup-id $HOME/.local/bin/barlaunch
|