5 lines
169 B
Bash
5 lines
169 B
Bash
|
#!/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 &
|