12 lines
321 B
Bash
Executable file
12 lines
321 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
directory=~/Pictures/wallpapers
|
|
#wallpaper=~/.cache/images/wallpaper.png
|
|
#monitor=$(hyprctl monitors | grep Monitor | awk '{print $2}')
|
|
|
|
if [ -d "$directory" ]; then
|
|
random_background=$(find $directory -type f | shuf -n 1)
|
|
wallpaper "$random_background"
|
|
wpaperctl reload-wallpaper
|
|
fi
|