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
|
monitor=HDMI-A-4, 1920x1080, 0x0, 1
monitor=VGA-1, 1920x1080, 1920x0, 1
monitor=,preferred,auto,1
source = ./env.conf
exec-once = $HOME/.config/hypr/startup.sh
input {
kb_layout = us
kb_variant = colemak
kb_model =
kb_options = ctrl:swapcaps,altwin:menu_win
kb_rules =
follow_mouse = 2
touchpad {
natural_scroll = no
}
sensitivity = 0
}
general {
gaps_in = 0
gaps_out = 0
border_size = 2
col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg
col.inactive_border = rgba(595959aa)
layout = dwindle
# cursor_inactive_timeout = 0
}
misc {
disable_hyprland_logo = true
enable_swallow = true
swallow_regex = foot
vfr = true
}
decoration {
rounding = 0
blur {
enabled = false
size = 6
}
dim_inactive = false
dim_strength = 0.08
active_opacity = 1.00
inactive_opacity = 0.97
drop_shadow = no
shadow_range = 4
shadow_render_power = 3
col.shadow = rgba(1a1a1aee)
}
animations {
enabled = no
bezier = myBezier, 0.05, 0.9, 0.1, 1.05
animation = windows, 1, 7, myBezier
animation = windowsOut, 1, 7, default, popin 80%
animation = border, 1, 10, default
animation = fade, 1, 7, default
animation = workspaces, 1, 6, default
}
dwindle {
pseudotile = yes
preserve_split = yes
force_split = 1
}
master {
# new_is_master = false
}
gestures {
workspace_swipe = on
}
windowrulev2 = noanim, class:^(.*[Pp]inentry.*)$
windowrulev2 = float, class:feh|imv|$(.*[pP]inentry.*)$
windowrulev2 = noanim, class:dmenu
layerrule = noanim, launcher
source = ./binds.conf
# Even are for left monitor
workspace = 1,monitor:HDMI-A-4
workspace = 3,monitor:HDMI-A-4
workspace = 5,monitor:HDMI-A-4
workspace = 7,monitor:HDMI-A-4
workspace = 9,monitor:HDMI-A-4
# Odd are for right monitor
workspace = 2,monitor:DP-2
workspace = 4,monitor:DP-2
workspace = 6,monitor:DP-2
workspace = 8,monitor:DP-2
|