7 lines
169 B
Bash
Executable file
7 lines
169 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ $(($RANDOM%2)) -eq 0 ]; then
|
|
feh --bg-center --randomize ~/Pictures/Wallpapers/center/*
|
|
else
|
|
feh --bg-fill --randomize ~/Pictures/Wallpapers/fill/*
|
|
fi
|