dotfiles/chooseWP.sh

5 lines
169 B
Bash
Raw Normal View History

2013-06-04 17:07:01 +00:00
#!/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 &