#!/bin/bash if [ $# -eq 0 ]; then files=(~/.wallpapers/*) wal -i ${files[RANDOM % ${#files[@]}]} -a 80 else wal -i $1 -a 80 fi