diff options
author | Zach DeCook <[email protected]> | 2024-03-17 11:43:59 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2024-03-17 15:43:59 +0000 |
commit | 3c21f5e07b853b1b37a7aa38a5084a114f0c1983 (patch) | |
tree | 06bd39a48b94e8a6a2ecd445af8e9059b93d84b3 /src/config | |
parent | 3ed3b34c4aea77484fa3325f9f95c001b8d6a0fa (diff) | |
download | Hyprland-3c21f5e07b853b1b37a7aa38a5084a114f0c1983.tar.gz Hyprland-3c21f5e07b853b1b37a7aa38a5084a114f0c1983.zip |
swipe: Touchscreen workspace swipe (#4489)
* Workspace Swipe: Refactor update and end functions
* Touch: Implement workspace swipe better
ignoring additional fingers and new touches
allow gaps-right and gaps-left to be different
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/ConfigManager.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config/ConfigManager.cpp b/src/config/ConfigManager.cpp index 89195a27..ecb0937f 100644 --- a/src/config/ConfigManager.cpp +++ b/src/config/ConfigManager.cpp @@ -498,6 +498,7 @@ CConfigManager::CConfigManager() { m_pConfig->addConfigValue("gestures:workspace_swipe_forever", Hyprlang::INT{0}); m_pConfig->addConfigValue("gestures:workspace_swipe_numbered", Hyprlang::INT{0}); m_pConfig->addConfigValue("gestures:workspace_swipe_use_r", Hyprlang::INT{0}); + m_pConfig->addConfigValue("gestures:workspace_swipe_touch", Hyprlang::INT{0}); m_pConfig->addConfigValue("xwayland:use_nearest_neighbor", Hyprlang::INT{1}); m_pConfig->addConfigValue("xwayland:force_zero_scaling", Hyprlang::INT{0}); |