mirror of
https://github.com/Rushilwiz/rice.git
synced 2025-04-03 20:00:20 -04:00
18 lines
430 B
Bash
Executable File
18 lines
430 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Unique identifier for this script
|
|
script_name=$(basename "$0")
|
|
|
|
# Check if the script is already running, excluding the current instance and any text editor sessions
|
|
if pgrep -f "$script_name" | grep -qv "$$"; then
|
|
echo "An instance of $script_name is already running."
|
|
exit 1
|
|
fi
|
|
|
|
# Continuously set a random background image
|
|
while true; do
|
|
feh --randomize --bg-fill "$1"/*
|
|
sleep "$2"
|
|
done
|
|
|