1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-13 20:30:02 +00:00

feat: add defaults screencapture show-thumbnail option

This commit is contained in:
jonny 2024-06-06 17:40:24 +01:00
parent c0d5b8c54d
commit cb198382c2
No known key found for this signature in database

View file

@ -1,4 +1,4 @@
{ config, lib, ... }:
{ lib, ... }:
with lib;
@ -28,5 +28,13 @@ with lib;
Disable drop shadow border around screencaptures. The default is false.
'';
};
system.defaults.screencapture.show-thumbnail = mkOption {
type = types.nullOr types.bool;
default = null;
description = ''
Show thumbnail after screencapture before writing to file. The default is true.
'';
};
};
}