diff options
author | David Runge <dave@sleepmap.de> | 2016-08-17 15:17:22 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2016-08-17 15:17:22 +0200 |
commit | d45cbaf0c320684bfb66a9dbc7c6e776b0387534 (patch) | |
tree | 53a3eccca1cf54c89567c183a3e191979b261702 | |
parent | d8ebc497b5191a56f7ef1e3efe2c81e3dff37492 (diff) | |
download | dotfiles-d45cbaf0c320684bfb66a9dbc7c6e776b0387534.tar.gz dotfiles-d45cbaf0c320684bfb66a9dbc7c6e776b0387534.tar.bz2 dotfiles-d45cbaf0c320684bfb66a9dbc7c6e776b0387534.tar.xz dotfiles-d45cbaf0c320684bfb66a9dbc7c6e776b0387534.zip |
.config/qtile/config.py: Making the feh background random and recursive.
-rw-r--r-- | .config/qtile/config.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 94f7629..f23874e 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -26,8 +26,10 @@ audio_toggle = home+"/bin/notify_mpd toggle" audio_stop = home+"/bin/notify_mpd stop" subprocess.call(['feh', + '--randomize', + '--recursive', '--bg-fill', - home+'/ownCloud/photos/desktop/underwater_greenery.jpg']) + home+'/ownCloud/photos/desktop/']) colors = { "grey": "#555555", |