nsxiv exec: use foot instead of hardcoded

This commit is contained in:
yosh 2024-01-09 01:41:33 -05:00
parent d377cbaa0b
commit 952d1515a5
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ while read file; do
case "$1" in
"c") xclip -sel clipboard "$file" -t image/png ;; # copy image
"d") dragon-drop "$file" & ;; # drag and drop
"o") urxvt -e nnn "$file" & ;; # open in nnn
"o") $TERMINAL -e nnn "$file" & ;; # open in nnn
"p") printf '%s' "$file" | xclip -sel clipboard ;; # copy path
"C-p") printf '%s' "${file##*/}" | xclip -sel clipboard ;; # copy basename
esac