7 lines
125 B
Bash
7 lines
125 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
DIR="/home/daan/Pictures/wallpapers/"
|
||
|
FILE=$(ls $DIR | shuf -n 1)
|
||
|
feh --bg-fill "$DIR/$FILE"
|
||
|
#wal -i "$DIR/$FILE"
|