1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-05 08:17:01 +00:00

Merge pull request #965 from jonnyowenpowell/feat/screencapture-show-thumbnail-defaults-option

feat: add defaults screencapture show-thumbnail option
This commit is contained in:
Michael Hoang 2024-06-10 09:49:55 +10:00 committed by GitHub
commit 315aa649ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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.
'';
};
};
}