6 lines
188 B
Bash
Executable File
6 lines
188 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
choice=$(shuf < $HOME/Pictures/Backgrounds/dark.txt | head -1)
|
|
# feh --bg-fill --randomize $HOME/Pictures/Backgrounds;
|
|
feh --bg-fill $HOME/Pictures/Backgrounds/$choice;
|