summaryrefslogtreecommitdiff
path: root/nsxiv/exec
diff options
context:
space:
mode:
authorzsmith <zsmith@newhopechurch.tv>2026-06-24 14:31:50 -0500
committerzsmith <zsmith@newhopechurch.tv>2026-06-24 14:31:50 -0500
commit2dca47ddc159ffaf87291dfabeaed57d9838e26c (patch)
tree6173a1ec78111119dd72fd4adeddd9c12523b277 /nsxiv/exec
parentd1f98e169b0ebc2868dc56c296a322c955b11e29 (diff)
Remove linux stuff
Diffstat (limited to 'nsxiv/exec')
-rwxr-xr-xnsxiv/exec/key-handler16
1 files changed, 0 insertions, 16 deletions
diff --git a/nsxiv/exec/key-handler b/nsxiv/exec/key-handler
deleted file mode 100755
index 53099e4..0000000
--- a/nsxiv/exec/key-handler
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-while read file; do
- case "$1" in
- "w")
- case "$file" in
- *.png)
- cp "$file" ~/Pictures/background.png
- ;;
- *)
- magick "$file" ~/Pictures/background.png
- ;;
- esac
- t -r hyprpaper
- ;;
- esac
-done