mirror of
https://github.com/RGBCube/ncc
synced 2025-09-13 09:37:57 +00:00
maccy: init
This commit is contained in:
parent
51c02a78a2
commit
130a54db4e
1 changed files with 30 additions and 0 deletions
30
modules/darwin/macccy.nix
Normal file
30
modules/darwin/macccy.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ lib, ... }: let
|
||||
inherit (lib.strings) toJSON;
|
||||
in {
|
||||
homebrew.casks = [ "maccy" ];
|
||||
|
||||
system.defaults.CustomSystemPreferences."org.p0deje.Maccy" = {
|
||||
KeyboardShortcuts_delete = 0;
|
||||
KeyboardShortcuts_pin = 0;
|
||||
KeyboardShortcuts_popup = toJSON { carbonKeyCode = 9; carbonModifiers = 4352; }; # control+command+v
|
||||
|
||||
SUEnableAutomaticChecks = 0;
|
||||
|
||||
enabledPasteboardTypes = [
|
||||
"public.png"
|
||||
"public.file-url"
|
||||
"public.utf8-plain-text"
|
||||
"public.rtf"
|
||||
"public.tiff"
|
||||
"public.html"
|
||||
];
|
||||
|
||||
menuIcon = "clipboard";
|
||||
popupPosition = "window";
|
||||
searchMode = "fuzzy";
|
||||
|
||||
showFooter = 0;
|
||||
showSearch = 1;
|
||||
showTitle = 0;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue