diff options
| author | Blaster4385 <[email protected]> | 2026-09-18 11:10:31 +0530 |
|---|---|---|
| committer | Blaster4385 <[email protected]> | 2026-09-18 11:31:51 +0530 |
| commit | f397a5fa304f72f173ac6c36b89b696d486de35f (patch) | |
| tree | 70c27abd70e26070c15c57c8e19d71a20d65f728 /hypr | |
| parent | f826256c010c0e5c8c2bd64adb1fae1c3f399717 (diff) | |
Diffstat (limited to 'hypr')
| -rw-r--r-- | hypr/configs/decoration.lua | 25 | ||||
| -rw-r--r-- | hypr/configs/monitors.lua | 17 | ||||
| -rw-r--r-- | hypr/configs/windows.lua | 5 | ||||
| -rw-r--r-- | hypr/configs/workspaces.lua | 4 | ||||
| -rw-r--r-- | hypr/hyprland.lua | 4 |
5 files changed, 20 insertions, 35 deletions
diff --git a/hypr/configs/decoration.lua b/hypr/configs/decoration.lua deleted file mode 100644 index 44079cb..0000000 --- a/hypr/configs/decoration.lua +++ /dev/null @@ -1,25 +0,0 @@ -hl.config({ - decoration = { - rounding = 16, - active_opacity = 0.85, - inactive_opacity = 0.79, - - shadow = { - enabled = false - }, - - blur = { - enabled = true, - popups = true, - size = 2, - passes = 4, - brightness = 1.5, - vibrancy = 0.1696 - }, - }, - - col = { - active_border = "rgba(ebdbb280)", - inactive_border = "rgba(a8998480)", - } -}) diff --git a/hypr/configs/monitors.lua b/hypr/configs/monitors.lua index fe2b79b..e851066 100644 --- a/hypr/configs/monitors.lua +++ b/hypr/configs/monitors.lua @@ -1,26 +1,29 @@ hl.monitor({ output = "desc:LG Electronics LG ULTRAGEAR 306NTQD5B076", - mode = "[email protected]", + mode = "[email protected]", position = "2560x0", scale = 1.25, - bitdepth = 10 }) hl.monitor({ output = "desc:Microstep MPG341CX OLED", - mode = "[email protected]", + mode = "[email protected]", + -- cm = "hdr", + bitdepth = 10, position = "4608x0", scale = 1, - bitdepth = 10 }) hl.monitor({ - output = "desc:DENON Ltd. DENON-AVR 0x01010101", + output = "desc:LG Electronics LG TV SSCR2 0x01010101", mode = "[email protected]", position = "8048x0", scale = 1.50, bitdepth = 10, cm = "hdr", - sdrbrightness = 1.1, - sdrsaturation = 1.15 + sdr_min_luminance = 0, + sdr_max_luminance = 203, + min_luminance = 0, + sdrbrightness = 0.6, + sdrsaturation = 1.20 }) diff --git a/hypr/configs/windows.lua b/hypr/configs/windows.lua index e08e176..8498639 100644 --- a/hypr/configs/windows.lua +++ b/hypr/configs/windows.lua @@ -9,6 +9,11 @@ hl.window_rule({ }) hl.window_rule({ + match = { class = "^gamescope" }, + content = "game" +}) + +hl.window_rule({ match = { content = 3 }, immediate = true, idle_inhibit = "fullscreen", diff --git a/hypr/configs/workspaces.lua b/hypr/configs/workspaces.lua index a537f28..e915b2e 100644 --- a/hypr/configs/workspaces.lua +++ b/hypr/configs/workspaces.lua @@ -6,5 +6,5 @@ hl.workspace_rule({ workspace = 5, monitor = "desc:Microstep MPG341CX OLED" }) hl.workspace_rule({ workspace = 6, monitor = "desc:Microstep MPG341CX OLED" }) hl.workspace_rule({ workspace = 7, monitor = "desc:LG Electronics LG ULTRAGEAR 306NTQD5B076", default = true }) hl.workspace_rule({ workspace = 8, monitor = "desc:LG Electronics LG ULTRAGEAR 306NTQD5B076" }) -hl.workspace_rule({ workspace = 9, monitor = "desc:DENON Ltd. DENON-AVR 0x01010101", default = true }) -hl.workspace_rule({ workspace = 10, monitor = "desc:DENON Ltd. DENON-AVR 0x01010101" }) +hl.workspace_rule({ workspace = 9, monitor = "desc:LG Electronics LG TV SSCR2 0x01010101", default = true }) +hl.workspace_rule({ workspace = 10, monitor = "desc:LG Electronics LG TV SSCR2 0x01010101" }) diff --git a/hypr/hyprland.lua b/hypr/hyprland.lua index e17b7db..acf9c30 100644 --- a/hypr/hyprland.lua +++ b/hypr/hyprland.lua @@ -24,7 +24,9 @@ hl.config({ render = { send_content_type = true, - non_shader_cm = 2 + direct_scanout = 1, + non_shader_cm = 1, + cm_auto_hdr = 0 }, xwayland = { |