aboutsummaryrefslogblamecommitdiff
path: root/.local/share/wallpapers/feh-slideshow.py
blob: 2e33a372ea1c787d118cb2fecb4d11beea552af9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                            
#!/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))