summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2023-01-27 19:16:27 -0500
committerLuke Smith <luke@lukesmith.xyz>2023-01-27 19:16:27 -0500
commitf30078225e1a19af0d6b2696187a991f332a65bf (patch)
tree7396aaa6643d84dfbf1f45d7d4a3e7d7afb306a8
parent6d0c92ced01a0195703a56669ee53a2af040c595 (diff)
downloadeibhear-f30078225e1a19af0d6b2696187a991f332a65bf.tar.gz
eibhear-f30078225e1a19af0d6b2696187a991f332a65bf.tar.zst
eibhear-f30078225e1a19af0d6b2696187a991f332a65bf.zip
resolve #1249
-rwxr-xr-x.config/sxiv/exec/key-handler2
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/sxiv/exec/key-handler b/.config/sxiv/exec/key-handler
index 4a4f10a..4c78f18 100755
--- a/.config/sxiv/exec/key-handler
+++ b/.config/sxiv/exec/key-handler
@@ -28,6 +28,6 @@ do
"d")
[ "$(printf "No\\nYes" | dmenu -i -p "Really delete $file?")" = "Yes" ] && rm "$file" && notify-send "$file deleted." ;;
"g") ifinstalled gimp && setsid -f gimp "$file" ;;
- "i") notify-send "File information" "$(mediainfo "$file")" ;;
+ "i") notify-send "File information" "$(mediainfo "$file" | sed "s/[ ]\+:/:/g;s/: /: <b>/;s/$/<\/b>/" | grep "<b>")" ;;
esac
done