mirror of
https://github.com/RGBCube/Site
synced 2025-07-29 20:17:46 +00:00
dump(macos.reduce-motion-nix-darwin): update
This commit is contained in:
parent
cb2d9513c1
commit
357f2f21b1
1 changed files with 19 additions and 0 deletions
19
site/dump/macos/reduce-motion-nix-darwin.md
Normal file
19
site/dump/macos/reduce-motion-nix-darwin.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
title: Disable MacOS doodoo garbage shinies with Nix Darwin
|
||||
date: 2025-06-11
|
||||
---
|
||||
|
||||
Use this [Nix Darwin](https://github.com/nix-darwin/nix-darwin) module:
|
||||
|
||||
```nix
|
||||
{
|
||||
system.defaults = {
|
||||
# Reduce window resize animation duration.
|
||||
NSWindowResizeTime = 0.001;
|
||||
|
||||
# Reduce motion.
|
||||
CustomSystemPreferences."com.apple.Accessibility".ReduceMotionEnabled = 1;
|
||||
universalaccess.reduceMotion = true;
|
||||
};
|
||||
}
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue