Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions internal/macos/categories.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,15 @@ var DefaultCategories = []PrefCategory{
{"com.apple.screensaver", "askForPasswordDelay", "int", "0", "No delay before password required"},
},
},
{
Name: "Desktop & Stage Manager",
Icon: "🪟",
Prefs: []Preference{
// false → wallpaper click hides windows only while Stage Manager is active (macOS Sonoma+ default).
// true → wallpaper click always reveals desktop (pre-Sonoma behaviour).
{"com.apple.WindowManager", "EnableStandardClickToShowDesktop", "bool", "false", "Click wallpaper to show desktop only in Stage Manager"},
},
},
}

// AllPrefsSelected returns a map with all default preferences set to true.
Expand Down
Loading