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.
- Host: GitHub
- URL: https://github.com/depthso/simple-gnome-wallpaper-changer
- Owner: depthso
- Created: 2023-04-01T06:56:30.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-01T07:18:34.000Z (about 3 years ago)
- Last Synced: 2025-07-10T03:17:07.760Z (10 months ago)
- Language: Python
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```