An open API service indexing awesome lists of open source software.

https://github.com/depthso/simple-gnome-wallpaper-changer

This is a simple python script to change the wallpaper of the desktop every minute unless changed.
https://github.com/depthso/simple-gnome-wallpaper-changer

Last synced: 7 months ago
JSON representation

This is a simple python script to change the wallpaper of the desktop every minute unless changed.

Awesome Lists containing this project

README

          

Create a folder named `wallpapers` in the home Pictures folder.

Insert images (.png .jpeg .jpg etc) into the wallpapers folder.

Good wallpaper repository here

Create a folder named `wallpaperchanger` in the home folder of the user

Copy `main.py` into the wallpaperchanger folder.


**Change wallpapers folder path:**

Open terminal, change current path to the location of wallpaperchanger

Edit main.py in a text editor e.g `nano main.py`

And change the `wallpapers_PATH` to the wallpapers folder.


Run the script:
```bash
python3 /home/owl/wallpaperchanger/main.py
```


To run the script every minute (60 seconds):

```bash
watch -n 60 python3 /home/owl/wallpaperchanger/main.py
```