a6d6198e0d
- Use external script - Set wallpaper on screenlayout changes
11 lines
186 B
Bash
Executable file
11 lines
186 B
Bash
Executable file
#! /bin/bash
|
|
|
|
# CONFIG
|
|
DIRECTORY="/home/dbroqua/Nextcloud/images/Wallpaper/Rotation"
|
|
|
|
|
|
|
|
# SCRIPT START HERE
|
|
SELECTED=`find ${DIRECTORY} -type f | shuf -n 1`
|
|
|
|
feh --bg-fill ${SELECTED}
|