Migrated hyprland config to lua
This commit is contained in:
parent
ddaad92455
commit
8587f9d2e0
9 changed files with 716 additions and 0 deletions
37
.config/hypr/config/monitors/perso.lua
Normal file
37
.config/hypr/config/monitors/perso.lua
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
-- See https://wiki.hyprland.org/Configuring/Monitors/
|
||||
|
||||
-- Default
|
||||
hl.monitor({
|
||||
output = "",
|
||||
mode = "preferred",
|
||||
position = "auto-up",
|
||||
scale = "auto",
|
||||
})
|
||||
|
||||
-- Laptop screen
|
||||
|
||||
hl.monitor({
|
||||
output = "eDP-1",
|
||||
mode = "preferred",
|
||||
position = "auto-down",
|
||||
scale = 1,
|
||||
-- supports_wide_color = 1
|
||||
-- supports_hdr = 1
|
||||
-- bitdepth = 10
|
||||
})
|
||||
|
||||
-- HP home monitor
|
||||
hl.monitor({
|
||||
output = "DP-*",
|
||||
mode = "preferred",
|
||||
position = "auto-up",
|
||||
scale = 1,
|
||||
})
|
||||
|
||||
-- Dell monitor
|
||||
hl.monitor({
|
||||
output = "HDMI-A-1",
|
||||
mode = "preferred",
|
||||
position = "auto-up",
|
||||
scale = 1,
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue