blob: 2e33a372ea1c787d118cb2fecb4d11beea552af9 (
plain) (
tree)
|
|
#!/usr/bin/python
import os
import random
WALLPAPER_DIR="/home/ryan/.local/share/wallpapers"
wallpapers = os.listdir(WALLPAPER_DIR)
os.system('feh --bg-center %s' % random.choice(wallpapers))
|