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