summaryrefslogtreecommitdiffstats
path: root/.config
diff options
context:
space:
mode:
Diffstat (limited to '.config')
-rwxr-xr-x.config/sxiv/exec/key-handler9
1 files changed, 5 insertions, 4 deletions
diff --git a/.config/sxiv/exec/key-handler b/.config/sxiv/exec/key-handler
index dc68313..3d99109 100755
--- a/.config/sxiv/exec/key-handler
+++ b/.config/sxiv/exec/key-handler
@@ -1,4 +1,4 @@
-#!/usr/bin/env sh
+#!/bin/sh
while read file
do
case "$1" in
@@ -22,13 +22,14 @@ do
"f")
convert -flop "$file" "$file" ;;
"y")
- echo -n "$file" | xclip -selection clipboard &&
+ echo -n "$file" | tr -d '\n' | xclip -selection clipboard &&
notify-send "$file copied to clipboard" & ;;
"Y")
- readlink -f "$file" | xclip -selection clipboard &&
+ readlink -f "$file" | tr -d '\n' | xclip -selection clipboard &&
notify-send "$(readlink -f "$file") copied to clipboard" & ;;
"d")
[ "$(printf "No\\nYes" | dmenu -i -p "Really delete $file?")" = "Yes" ] && rm "$file" && notify-send "$file deleted." ;;
- "g") ifinstalled gimp && gimp "$file" & ;;
+ "g") ifinstalled gimp && setsid -f gimp "$file" ;;
+ "i") notify-send "File information" "$(mediainfo "$file")" ;;
esac
done