#!/bin/sh

if [ "x$1" = "x" ]; then
    echo "Utility for set wallpaper"
    echo "Using: $0 <filenam>"
    exit -1
fi

if [ ! -f "$1" ]; then
    echo "File '$1' not found"
    exit -1
fi

exec feh --bg-max "$1"
