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
6 changes: 6 additions & 0 deletions internal/macos/categories.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,12 @@ var DefaultCategories = []PrefCategory{
{"com.apple.controlcenter", "NSStatusItem Visible FocusModes", "bool", "false", "Hide Focus Modes from menu bar"},
{"com.apple.controlcenter", "NSStatusItem Visible NowPlaying", "bool", "false", "Hide Now Playing from menu bar"},
{"com.apple.controlcenter", "NSStatusItem Visible ScreenMirroring", "bool", "false", "Hide Screen Mirroring from menu bar"},
// Mode dropdown: int 18 = "Always Show in Menu Bar". When the key is absent,
// macOS defaults to "Show When Active" — e.g. Sound only appears while playing.
{"com.apple.controlcenter", "Sound", "int", "18", "Always show Sound in menu bar (not only when active)"},
{"com.apple.controlcenter", "Bluetooth", "int", "18", "Always show Bluetooth in menu bar"},
{"com.apple.controlcenter", "WiFi", "int", "18", "Always show Wi-Fi in menu bar"},
{"com.apple.controlcenter", "Battery", "int", "18", "Always show Battery in menu bar"},
},
},
{
Expand Down
Loading