Skip to content

Commit

Permalink
Add NSStatusItemSpacing and NSStatusItemSelectionPadding NSGlobalDoma…
Browse files Browse the repository at this point in the history
…in options
  • Loading branch information
robharrop committed Feb 24, 2024
1 parent 37eb625 commit 539b985
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions modules/system/defaults/NSGlobalDomain.nix
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,24 @@ in {
'';
};

system.defaults.NSGlobalDomain.NSStatusItemSpacing = mkOption {
type = types.nullOr types.int;
default = null;
example = 12;
description = lib.mdDoc ''
Sets the spacing between status icons in the menu bar. The default is null.
'';
};

system.defaults.NSGlobalDomain.NSStatusItemSelectionPadding = mkOption {
type = types.nullOr types.int;
default = null;
example = 6;
description = lib.mdDoc ''
Sets the padding around status icons in the menu bar. The default is null.
'';
};

system.defaults.NSGlobalDomain.InitialKeyRepeat = mkOption {
type = types.nullOr types.int;
default = null;
Expand Down

0 comments on commit 539b985

Please sign in to comment.