1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-27 06:52:50 -05:00

displays: fix vrr=0 setting on hyprland

This commit is contained in:
bbedward
2026-01-26 11:00:37 -05:00
parent 38b4d1dc95
commit 26bc5425d3
2 changed files with 2 additions and 3 deletions

View File

@@ -81,7 +81,6 @@ master {
misc {
disable_hyprland_logo = true
disable_splash_rendering = true
vrr = 0
}
# ==================

View File

@@ -88,8 +88,8 @@ Singleton {
if (transform !== 0)
monitorLine += ", transform, " + transform;
if (output.vrr_supported && output.vrr_enabled)
monitorLine += ", vrr, 1";
if (output.vrr_supported)
monitorLine += ", vrr, " + (output.vrr_enabled ? "1" : "0");
if (output.mirror && output.mirror.length > 0)
monitorLine += ", mirror, " + output.mirror;