aboutsummaryrefslogtreecommitdiff
path: root/.config/nsxiv
diff options
context:
space:
mode:
authorkrolxon <krolyxon@tutanota.com>2025-08-17 18:29:43 +0530
committerkrolxon <krolyxon@tutanota.com>2025-08-17 18:29:43 +0530
commit4df279d8cc55103b46df9531616e41d08b7288b2 (patch)
treefddaf58c90c03bcd31823fca609dcef3913423a9 /.config/nsxiv
parent9226cefdd3bf54157213a5cc2c550deaf353d043 (diff)
setwall: use nsxiv for menu
Diffstat (limited to '.config/nsxiv')
-rwxr-xr-x.config/nsxiv/exec/key-handler2
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/nsxiv/exec/key-handler b/.config/nsxiv/exec/key-handler
index 491b894..592cec4 100755
--- a/.config/nsxiv/exec/key-handler
+++ b/.config/nsxiv/exec/key-handler
@@ -5,7 +5,7 @@ do
case "$1" in
"d")
[ "$(printf "No\\nYes" | dmenu -i -p "Really delete $file?")" = "Yes" ] && rm "$file" && notify-send "$file deleted." ;;
- "w") setwall -p $file;;
+"w") setwall -p $(realpath $file);;
"c") cat "$file" | xclip -sel c -t image/png && notify-send "$file Copied ";;
esac
done