https://github.com/awan/beautify
Automate the wallpapers change.
https://github.com/awan/beautify
feh fehelper python3 systemd systemd-service wallpapers
Last synced: about 1 month ago
JSON representation
Automate the wallpapers change.
- Host: GitHub
- URL: https://github.com/awan/beautify
- Owner: Awan
- Created: 2019-07-31T00:33:20.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-06-16T06:57:26.000Z (about 6 years ago)
- Last Synced: 2025-02-28T11:31:38.630Z (over 1 year ago)
- Topics: feh, fehelper, python3, systemd, systemd-service, wallpapers
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# beautify

A simple Python script which uses [feh](https://github.com/derf/feh) to set wallpapers at given time.
### Usage:
First time you have to run it from a terminal. It will ask you for your wallpapers collection path, give it absolute path to your wallpapers collection. Then you can use systemd to run it automatically on every reboot or your init system or just put it
in your ~/.xinitrc
There is a [post](https://abdullah.today/wallpaper-automation/) explaining the
usage.
For systemd, just move the beautify.service to ~/.config/systemd/user/ and execute:
```bash
pip install --user appdirs
git clone https://gitlab.com/Abdullah/beautify.git
cd beautify
mkdir -p ~/.local/bin/
mkdir -p ~/.config/systemd/user/
cp beautify.py ~/.local/bin/beautify
cp beautify.service ~/.config/systemd/user/
chmod +x ~/.local/bin/beautify
systemctl enable --user beautify.service
systemctl start --user beautify.service
```