-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuserprefs.lua
More file actions
95 lines (88 loc) · 2.24 KB
/
Copy pathuserprefs.lua
File metadata and controls
95 lines (88 loc) · 2.24 KB
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
hl.config({
general = {
allow_tearing = true,
gaps_in = 3,
gaps_out = 8,
border_size = 3,
extend_border_grab_area = 10,
resize_on_border = true,
},
-- Input Devices
input = {
sensitivity = -0.25,
accel_profile = "flat",
},
cursor = {
no_hardware_cursors = 1,
-- use_cpu_buffer = 1,
},
-- Misc
misc = {
middle_click_paste = false,
enable_swallow = true,
swallow_regex = "(kitty)",
swallow_exception_regex = "wev",
disable_splash_rendering = true,
disable_hyprland_logo = true,
vrr = 3,
-- new_window_takes_over_fullscreen = 2,
},
xwayland = {
force_zero_scaling = true
},
render = {
direct_scanout = 2,
-- cm_auto_hdr = 2,
-- new_render_scheduling = true,
-- cm_sdr_eotf = "default",
},
quirks = {
-- prefer_hdr = 1,
-- skip_non_kms_dmabuf_formats = true
},
-- Ecosystem
ecosystem = {
no_update_news = true,
no_donation_nag = true,
},
-- Decorations
decoration = {
dim_special = 0.3,
rounding = 10,
-- shadow:enabled = false
active_opacity = 0.95,
inactive_opacity = 0.85,
fullscreen_opacity = 1,
blur = {
size = 4,
passes = 4,
special = true,
},
-- motion_blur = {
-- enabled = true
-- },
},
-- Animations
-- animations = {
-- workspace_wraparound = true,
-- },
-- Layouts
-- See https://wiki.hypr.land/Configuring/Layouts/Dwindle-Layout/ for more
dwindle = {
preserve_split = true, -- You probably want this
},
-- See https://wiki.hypr.land/Configuring/Layouts/Master-Layout/ for more
master = {
new_status = "slave",
},
-- See https://wiki.hypr.land/Configuring/Layouts/Scrolling-Layout/ for more
scrolling = {
fullscreen_on_one_column = true,
-- follow_focus = false,
follow_min_visible = 0.10,
focus_fit_method = 1,
column_width = 0.7,
},
})
-- Video (runs on every config load)
hl.exec_cmd("xrandr --output DP-1 --primary")