4 lines
169 B
Bash
Executable file
4 lines
169 B
Bash
Executable file
#!/bin/sh
|
|
wallpaper_path=/home/frank/Pictures/wallpapers/
|
|
image=$(ls $wallpaper_path | grep -E '(jpg|png)$' | sort -R | tail -1)
|
|
feh --bg-scale $wallpaper_path/$image &
|