nix-darwin icon indicating copy to clipboard operation
nix-darwin copied to clipboard

add FlashDateSeparators for time separator config

Open mmenanno opened this issue 1 year ago • 3 comments

This adds the option to flash the time separators. Found the details around it here https://macos-defaults.com/menubar/flashdateseparators.html#set-to-false-default-value and was able to get it working in my config under:

CustomUserPreferences = {
  "com.apple.menuextra.clock" = {
    FlashDateSeparators = true;
  };
};

With this change you should now be able to do:

menuExtraClock = {
  FlashDateSeparators = true;
};

mmenanno avatar Oct 15 '24 05:10 mmenanno

@Craz1k0ek any idea why two of the tests are failing for me? The error message is unclear to me.

mmenanno avatar Oct 18 '24 13:10 mmenanno

@mmenanno clueless. Might have to do with the default value. You've set it to false, but null might be better

Craz1k0ek avatar Oct 20 '24 18:10 Craz1k0ek

Looks like that fixed it ✅ There is a non-required test that failed, but I believe that is just a flaky test as it is complaining about something unrelated.

mmenanno avatar Oct 20 '24 19:10 mmenanno