Revert "sway: disable vrr"

This reverts commit 752f029bce.
This commit is contained in:
Leonardo Eugênio 2024-09-19 11:09:23 -03:00
parent 3b70708469
commit deec0c5653
3 changed files with 45 additions and 1 deletions

View file

@ -69,9 +69,9 @@ in
};
output = {
"*" = {
adaptive_sync = "off";
bg = "${theme.background} fill";
mode = "1920x1080@144.000Hz";
adaptive_sync = "on";
};
};
fonts = {
@ -122,6 +122,21 @@ in
indicator = true;
};
systemd.user.services.vrr-fullscreen = {
Unit = {
Description = "Enable VRR for fullscreen windows";
PartOf = [ "graphical-session.target" ];
After = [ "graphical-session.target" ];
};
Service = {
ExecStart = "${lib.getExe pkgs.vrr-fullscreen}";
Restart = "on-failure";
};
Install = {
WantedBy = [ "sway-session.target" ];
};
};
services.gpg-agent.pinentryPackage = pkgs.pinentry-all;
xdg.configFile."OpenTabletDriver/settings.json".source = ./open-tablet-driver.json;