Documentation suggests this should be '1' and not 'true'

This commit is contained in:
Erwin Boskma 2023-01-10 08:19:48 +01:00
parent 64f3f42fff
commit 4ab3191f0d
Signed by: erwin
SSH key fingerprint: SHA256:CyeNoWXd3kjX2Nwu6pDxxdS7OqmPVOy0NavA/KU/ntU

View file

@ -210,13 +210,13 @@ in
"file:///home/erwin/workspace" "file:///home/erwin/workspace"
]; ];
extraConfig = { extraConfig = {
gtk-application-prefer-dark-theme = true; gtk-application-prefer-dark-theme = 1;
gtk-cursor-theme-name = "Nordzy-cursors"; gtk-cursor-theme-name = "Nordzy-cursors";
}; };
}; };
gtk4.extraConfig = { gtk4.extraConfig = {
gtk-application-prefer-dark-theme = true; gtk-application-prefer-dark-theme = 1;
gtk-cursor-theme-name = "Nordzy-cursors"; gtk-cursor-theme-name = "Nordzy-cursors";
}; };
}; };