diff options
Diffstat (limited to 'pkgs/by-name/sc/screenshot_persistent/package.nix')
-rw-r--r-- | pkgs/by-name/sc/screenshot_persistent/package.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/by-name/sc/screenshot_persistent/package.nix b/pkgs/by-name/sc/screenshot_persistent/package.nix new file mode 100644 index 00000000..f79315a1 --- /dev/null +++ b/pkgs/by-name/sc/screenshot_persistent/package.nix @@ -0,0 +1,23 @@ +{ + sysLib, + grim, + slurp, + alacritty, + rofi, + libnotify, + lf, # TODO: add llp +}: +sysLib.writeShellScript { + name = "screenshot_persistent"; + src = ./screenshot_persistent.sh; + generateCompletions = false; + keepPath = true; + dependencies = [ + grim + slurp + alacritty + rofi + libnotify + lf # TODO: add llp + ]; +} |