Merge pull request #4133 from Roc25/persistent-only

Add persistent-only setting for hyprland/workspaces
This commit is contained in:
Alexis Rouillard
2025-06-22 08:50:33 +01:00
committed by GitHub
4 changed files with 12 additions and 0 deletions

View File

@ -600,6 +600,7 @@ auto Workspaces::parseConfig(const Json::Value &config) -> void {
populateBoolConfig(config, "all-outputs", m_allOutputs);
populateBoolConfig(config, "show-special", m_showSpecial);
populateBoolConfig(config, "special-visible-only", m_specialVisibleOnly);
populateBoolConfig(config, "persistent-only", m_persistentOnly);
populateBoolConfig(config, "active-only", m_activeOnly);
populateBoolConfig(config, "move-to-monitor", m_moveToMonitor);