diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2023-01-27 19:16:27 -0500 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2023-01-27 19:16:27 -0500 |
| commit | f30078225e1a19af0d6b2696187a991f332a65bf (patch) | |
| tree | 7396aaa6643d84dfbf1f45d7d4a3e7d7afb306a8 | |
| parent | 6d0c92ced01a0195703a56669ee53a2af040c595 (diff) | |
| download | eibhear-f30078225e1a19af0d6b2696187a991f332a65bf.tar.gz eibhear-f30078225e1a19af0d6b2696187a991f332a65bf.tar.zst eibhear-f30078225e1a19af0d6b2696187a991f332a65bf.zip | |
resolve #1249
| -rwxr-xr-x | .config/sxiv/exec/key-handler | 2 |
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 |
