aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/config
diff options
context:
space:
mode:
authorCharles Taylor <[email protected]>2022-08-21 20:47:56 +1000
committerCharles Taylor <[email protected]>2022-08-21 20:47:56 +1000
commit9ee42836d5e2c707f7cf203628a0ae530d59c5cd (patch)
tree464ea38528972799bd88a442398756564e7900e2 /src/config
parentd6ff7e40cfde6a8484b50911358032b4c53c721c (diff)
downloadHyprland-9ee42836d5e2c707f7cf203628a0ae530d59c5cd.tar.gz
Hyprland-9ee42836d5e2c707f7cf203628a0ae530d59c5cd.zip
add general:allow_workspace_cycles option
Diffstat (limited to 'src/config')
-rw-r--r--src/config/ConfigManager.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config/ConfigManager.cpp b/src/config/ConfigManager.cpp
index 53c008f9..079d9a8d 100644
--- a/src/config/ConfigManager.cpp
+++ b/src/config/ConfigManager.cpp
@@ -35,6 +35,7 @@ void CConfigManager::setDefaultVars() {
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:workspace_back_and_forth"].intValue = 0;
+ configValues["general:allow_workspace_cycles"].intValue = 0;
configValues["general:damage_tracking"].strValue = "full";
configValues["general:damage_tracking_internal"].intValue = DAMAGE_TRACKING_FULL;