Browse Source

feat(dock): configure dock for minimalism

This commit configures the macOS dock to be more minimal and less distracting.

The key changes include:
- Disabling animations for launching applications and exposing spaces.
- Removing all persistent applications from the dock.
- Hiding recent applications.
- Setting the dock to be static, only showing running applications.
- Reducing the tile size.
- Disabling the bottom-right hot corner for quick notes.
Zander Hawke 10 months ago
parent
commit
5f4c3e00cd
1 changed files with 10 additions and 1 deletions
  1. 10 1
      hosts/meili/system.nix

+ 10 - 1
hosts/meili/system.nix

@@ -34,8 +34,17 @@
         autohide = true;
         expose-group-apps = true;
         orientation = "bottom";
+        enable-spring-load-actions-on-all-items = false;
+        expose-animation-duration = 0.0;
+        launchanim = false;
+        mineffect = null;
+        mru-spaces = false;
+        persistent-apps = [ ];
+        show-recents = false;
+        static-only = true;
+        tilesize = 32;
         wvous-bl-corner = 10; # put display to sleep
-        wvous-br-corner = 14; # quick note
+        wvous-br-corner = 1; # quick note
         wvous-tl-corner = 1; # disabled
         wvous-tr-corner = 1; # disabled
       };