about summary refs log tree commit diff stats
path: root/pkgs/by-name/sc
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--pkgs/by-name/sc/screenshot_persistent/package.nix23
-rwxr-xr-xpkgs/by-name/sc/screenshot_persistent/screenshot_persistent.sh (renamed from pkgs/sources/scripts/source/small_functions/screenshot_persistent.sh)0
-rw-r--r--pkgs/by-name/sc/screenshot_temporary/package.nix17
-rwxr-xr-xpkgs/by-name/sc/screenshot_temporary/screenshot_temporary.sh (renamed from pkgs/sources/scripts/source/small_functions/screenshot_temporary.sh)0
4 files changed, 40 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
+  ];
+}
diff --git a/pkgs/sources/scripts/source/small_functions/screenshot_persistent.sh b/pkgs/by-name/sc/screenshot_persistent/screenshot_persistent.sh
index 4308b8d2..4308b8d2 100755
--- a/pkgs/sources/scripts/source/small_functions/screenshot_persistent.sh
+++ b/pkgs/by-name/sc/screenshot_persistent/screenshot_persistent.sh
diff --git a/pkgs/by-name/sc/screenshot_temporary/package.nix b/pkgs/by-name/sc/screenshot_temporary/package.nix
new file mode 100644
index 00000000..f3739b01
--- /dev/null
+++ b/pkgs/by-name/sc/screenshot_temporary/package.nix
@@ -0,0 +1,17 @@
+{
+  sysLib,
+  grim,
+  slurp,
+  wl-clipboard,
+}:
+sysLib.writeShellScript {
+  name = "screenshot_temporary";
+  src = ./screenshot_temporary.sh;
+  generateCompletions = false;
+  keepPath = false;
+  dependencies = [
+    grim
+    slurp
+    wl-clipboard
+  ];
+}
diff --git a/pkgs/sources/scripts/source/small_functions/screenshot_temporary.sh b/pkgs/by-name/sc/screenshot_temporary/screenshot_temporary.sh
index 8968ca79..8968ca79 100755
--- a/pkgs/sources/scripts/source/small_functions/screenshot_temporary.sh
+++ b/pkgs/by-name/sc/screenshot_temporary/screenshot_temporary.sh