diff options
| author | Lucas Mendes Loureiro <mendes.lucas9498@gmail.com> | 2024-11-12 01:24:22 +0000 |
|---|---|---|
| committer | Lucas Mendes Loureiro <mendes.lucas9498@gmail.com> | 2024-11-12 14:37:26 +0000 |
| commit | 32df51bf2b82dab724b845f4ad2d45bc1a0d0b9e (patch) | |
| tree | f1af62024c94c96474dfbb74db3c06f23b701ec0 /modules/system/defaults/dock.nix | |
| parent | d71aa30b41bac3b2e38bd4b8f49e12811cd27ec1 (diff) | |
fix(defaults): fixing #1107
Diffstat (limited to 'modules/system/defaults/dock.nix')
| -rw-r--r-- | modules/system/defaults/dock.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/system/defaults/dock.nix b/modules/system/defaults/dock.nix index 5c4a470..2d5c161 100644 --- a/modules/system/defaults/dock.nix +++ b/modules/system/defaults/dock.nix @@ -149,6 +149,14 @@ in { else map (folder: { tile-data = { file-data = { _CFURLString = "file://" + folder; _CFURLStringType = 15; }; }; tile-type = if strings.hasInfix "." (last (splitString "/" folder)) then "file-tile" else "directory-tile"; }) value; }; + system.defaults.dock.scroll-to-open = mkOption { + type = types.nullOr types.bool; + default = null; + description = '' + Scroll up on a Dock icon to show all Space's opened windows for an app, or open stack. The default is false. + ''; + }; + system.defaults.dock.show-process-indicators = mkOption { type = types.nullOr types.bool; default = null; |
