mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-01-28 23:42:51 -05:00
displays: fix vrr=0 setting on hyprland
This commit is contained in:
@@ -81,7 +81,6 @@ master {
|
|||||||
misc {
|
misc {
|
||||||
disable_hyprland_logo = true
|
disable_hyprland_logo = true
|
||||||
disable_splash_rendering = true
|
disable_splash_rendering = true
|
||||||
vrr = 0
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# ==================
|
# ==================
|
||||||
|
|||||||
@@ -88,8 +88,8 @@ Singleton {
|
|||||||
if (transform !== 0)
|
if (transform !== 0)
|
||||||
monitorLine += ", transform, " + transform;
|
monitorLine += ", transform, " + transform;
|
||||||
|
|
||||||
if (output.vrr_supported && output.vrr_enabled)
|
if (output.vrr_supported)
|
||||||
monitorLine += ", vrr, 1";
|
monitorLine += ", vrr, " + (output.vrr_enabled ? "1" : "0");
|
||||||
|
|
||||||
if (output.mirror && output.mirror.length > 0)
|
if (output.mirror && output.mirror.length > 0)
|
||||||
monitorLine += ", mirror, " + output.mirror;
|
monitorLine += ", mirror, " + output.mirror;
|
||||||
|
|||||||
Reference in New Issue
Block a user