1
1
mirror of https://github.com/jarun/nnn.git synced 2024-11-13 07:26:33 +03:00

Updated wall plugin to the standard utility file

This commit is contained in:
Simone 2021-01-18 11:34:19 +01:00
parent f4baa394be
commit f23452396e

View File

@ -12,7 +12,7 @@ cmd_exists () {
}
if [ -n "$1" ]; then
if [ "$(mimetype --output-format %m "$1" | awk -F '/' '{print $1}')" = "image" ]; then
if [ "$(file --mime-type "$1" | awk '{print $2}' | awk -F '/' '{print $1}')" = "image" ]; then
if [ "$(cmd_exists nitrogen)" -eq "0" ]; then
nitrogen --set-zoom-fill --save "$1"
elif [ "$(cmd_exists wal)" -eq "0" ]; then