From 9f1984bfeef01ff995c23ca3a6dbd7b035b9db20 Mon Sep 17 00:00:00 2001 From: Nicola Tuveri Date: Sat, 16 Nov 2024 15:44:27 +0200 Subject: [PATCH 1/2] Add support for controlling the behaviour of document-proxy icons Specifically this adds options for: - system.defaults.universalaccess.showWindowTitlebarIcons - system.defaults.NSGlobalDomain.NSToolbarTitleViewRolloverDelay See https://macos-defaults.com/finder/nstoolbartitleviewrolloverdelay.html#toolbar-title-rollover-delay --- modules/system/defaults/NSGlobalDomain.nix | 11 ++++++++++- modules/system/defaults/universalaccess.nix | 9 +++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/modules/system/defaults/NSGlobalDomain.nix b/modules/system/defaults/NSGlobalDomain.nix index 01e7a459..c5e9fa18 100644 --- a/modules/system/defaults/NSGlobalDomain.nix +++ b/modules/system/defaults/NSGlobalDomain.nix @@ -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. + ''; + }; + }; } diff --git a/modules/system/defaults/universalaccess.nix b/modules/system/defaults/universalaccess.nix index 8a2de90f..98804b7f 100644 --- a/modules/system/defaults/universalaccess.nix +++ b/modules/system/defaults/universalaccess.nix @@ -52,5 +52,14 @@ with lib; ''; }; + #system.defaults.universalaccess.showWindowTitlebarIcons = mkOption { + # # Disabled because it requires sudo + # # type = types.nullOr types.bool; + # default = null; + # description = '' + # Always show folder icon before title in the title bar + # ''; + #}; + }; } From de84d7bab3f0befc31662e2a7fa344d106e4c0e9 Mon Sep 17 00:00:00 2001 From: Nicola Tuveri Date: Sat, 16 Nov 2024 17:33:21 +0200 Subject: [PATCH 2/2] fixup! Add support for controlling the behaviour of document-proxy icons --- modules/system/defaults/universalaccess.nix | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/modules/system/defaults/universalaccess.nix b/modules/system/defaults/universalaccess.nix index 98804b7f..cdc135d3 100644 --- a/modules/system/defaults/universalaccess.nix +++ b/modules/system/defaults/universalaccess.nix @@ -52,14 +52,13 @@ with lib; ''; }; - #system.defaults.universalaccess.showWindowTitlebarIcons = mkOption { - # # Disabled because it requires sudo - # # type = types.nullOr types.bool; - # default = null; - # description = '' - # Always show folder icon before title in the title bar - # ''; - #}; + system.defaults.universalaccess.showWindowTitlebarIcons = mkOption { + type = types.nullOr types.bool; + default = null; + description = '' + Always show folder icon before title in the title bar + ''; + }; }; }