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:
@@ -81,7 +81,6 @@ master {
|
||||
misc {
|
||||
disable_hyprland_logo = true
|
||||
disable_splash_rendering = true
|
||||
vrr = 0
|
||||
}
|
||||
|
||||
# ==================
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user