Skip to content

Awan/beautify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

beautify

image

A simple Python script which uses 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 explaining the usage.

For systemd, just move the beautify.service to ~/.config/systemd/user/ and execute:

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