mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 06:45:58 +01:00
Disable damage tracking by default
This commit is contained in:
parent
c8721baa5a
commit
a935e4f985
2 changed files with 4 additions and 2 deletions
|
@ -26,6 +26,8 @@ general {
|
||||||
border_size=2
|
border_size=2
|
||||||
col.active_border=0x66ee1111
|
col.active_border=0x66ee1111
|
||||||
col.inactive_border=0x66333333
|
col.inactive_border=0x66333333
|
||||||
|
|
||||||
|
damage_tracking=none # experimental, might have bugs!
|
||||||
}
|
}
|
||||||
|
|
||||||
decoration {
|
decoration {
|
||||||
|
|
|
@ -16,8 +16,8 @@ CConfigManager::CConfigManager() {
|
||||||
configValues["general:main_mod"].strValue = "SUPER"; // exposed to the user for easier configuring
|
configValues["general:main_mod"].strValue = "SUPER"; // exposed to the user for easier configuring
|
||||||
configValues["general:main_mod_internal"].intValue = g_pKeybindManager->stringToModMask("SUPER"); // actually used and automatically calculated
|
configValues["general:main_mod_internal"].intValue = g_pKeybindManager->stringToModMask("SUPER"); // actually used and automatically calculated
|
||||||
|
|
||||||
configValues["general:damage_tracking"].strValue = "full";
|
configValues["general:damage_tracking"].strValue = "none";
|
||||||
configValues["general:damage_tracking_internal"].intValue = DAMAGE_TRACKING_FULL;
|
configValues["general:damage_tracking_internal"].intValue = DAMAGE_TRACKING_NONE;
|
||||||
|
|
||||||
configValues["general:border_size"].intValue = 1;
|
configValues["general:border_size"].intValue = 1;
|
||||||
configValues["general:gaps_in"].intValue = 5;
|
configValues["general:gaps_in"].intValue = 5;
|
||||||
|
|
Loading…
Reference in a new issue