mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-31 04:04:45 +00:00
Merge de84d7bab3
into ebb88c3428
This commit is contained in:
commit
c191f59eef
2 changed files with 18 additions and 1 deletions
|
@ -430,6 +430,15 @@ in {
|
|||
'';
|
||||
};
|
||||
|
||||
};
|
||||
system.defaults.NSGlobalDomain.NSToolbarTitleViewRolloverDelay = mkOption {
|
||||
type = types.nullOr types.float;
|
||||
default = null;
|
||||
description = ''
|
||||
Toolbar title rollover delay.
|
||||
Choose the delay of the auto-hidden document-proxy icon.
|
||||
com.apple.universalaccess showWindowTitlebarIcons must be set to false.
|
||||
'';
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
|
|
|
@ -51,5 +51,13 @@ with lib;
|
|||
'';
|
||||
};
|
||||
|
||||
system.defaults.universalaccess.showWindowTitlebarIcons = mkOption {
|
||||
type = types.nullOr types.bool;
|
||||
default = null;
|
||||
description = ''
|
||||
Always show folder icon before title in the title bar
|
||||
'';
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue