Skip to content
/ wu Public

This script update KDE plasma's desktop and loock screen wallpaper simultaneously and at the same time it moves the wallpaper to a special folder for all wallpapers.

License

Notifications You must be signed in to change notification settings

kostya1F634/wu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🏞️ wu — Wallpaper Updater script for inspiration

✨ Features

  • 🔄 easy way to update desktop and lock screen wallpaper simultaneously
  • ⚙️ automatically moves updated wallpaper to directory with all wallpapers
  • 🚀 update wallpapers blazingly fast from terminal

💡 Idea of Usage

🌐 Browsing -> 🖼️ See Image -> ⬇️ Download Image -> ⌨️ Open Terminal -> 🔄 wu

  • First, create alias in shell config like this
alias wu="wu -d ~/path/to/wallpaper/dir -i"
# with default directory ~/Pictures/wallpapers
alias wu="wu -i"
  • Second, when you are browsing, and you see an image that you liked, you download it, use the script wu image.ext, it automatically updates wallpapers and moves to the directory with other wallpapers
# Browsing -> See Image -> Download Image -> Open Terminal
cd ~/Dowloads
wu image.ext
  • As a result, you update wallpapers and get all wallpapers in one place automatically

📥 Installation

Download binary from latest release and move it for example to /usr/local/bin

chmod +x wu
sudo mv -v wu /usr/local/bin

🔧 Installation from source

📋 Requirements

  • 🛠️ make
  • 🐍 python

🔢 If you want to get only binary to /usr/local/bin

cd /tmp
git clone https://github.com/kostya1F634/wu.git
cd wu
make
make copy
# or if you want custom directory
sudo mv -v wu /path/to/your/dir

🔗 Or you can create link to /usr/local/bin (not delete cloned repository)

cd ~/
git clone https://github.com/kostya1F634/wu.git
cd wu
make
make link
# or if you want custom directory
sudo ln -sv "$(pwd)/wu" /path/to/your/dir