Files
amazing-dotfiles/modules/satty.nix
2026-02-22 16:44:03 +01:00

48 lines
920 B
Nix

{
lib,
isNixOS,
username,
...
}:
{
programs.satty = {
enable = true;
package = lib.mkIf (!isNixOS) null;
settings = {
general = {
fullscreen = true;
early-exit = true;
initial-tool = "crop";
output-filename = "/home/${username}/Obrazy/zrzuty/%d-%m-%Y_%H:%M:%S.png";
save-after-copy = true;
copy-command = "wl-copy";
disable-notifications = false;
actions-on-escape = [ "exit" ];
actions-on-enter = [ "save-to-clipboard" ];
no-window-decoration = true;
};
color-palette = {
palette = [
"#00ffff"
"#a52a2a"
"#dc143c"
"#ff1493"
"#ffd700"
"#008000"
];
custom = [
"#00ffff"
"#a52a2a"
"#dc143c"
"#ff1493"
"#ffd700"
"#008000"
];
};
};
};
}