1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-31 04:04:45 +00:00
This commit is contained in:
Nicola Tuveri 2025-03-25 03:41:01 +05:00 committed by GitHub
commit c191f59eef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 18 additions and 1 deletions

View file

@ -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.
'';
};
};
}

View file

@ -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
'';
};
};
}