WPC (Wallpaper Changer) is a program that allows the user to set wallpapers for both the desktop and lock screen. It is a simple and easy-to-use application that lets you personalize your computer and make it more visually appealing.
The program supports various image formats and makes it easy to change the wallpaper with a user-friendly interface.
- Set wallpapers for both the desktop and lock screen.
- Store background source directory along with set backgrounds for monitors in a config file.
- Ability to change the source directory directly from the GUI.
- No need for `sudo` (previously required for manually editing `/etc/lightdm/*`).
- Clean separation between desktop wallpaper handling and lock screen wallpaper handling.
- Support for common image formats (JPEG, PNG, BMP, etc.).
- Multiple wallpaper modes
- Add Wayland support
- Migrate from JSON to toml for config
- Improve security for desktop manager helper
- Implement support for other desktop manager than LightDM + lightdm-gtk-greeter
- Implement caching of thumbnails for wallpapers in the UI
To install WPC, follow these steps:
git clone https://github.com/webdevred/wpc
cd wpc
make
sudo make install
You can create this config file in ~/.config/wpc/settings.json before you start the program. If you do not create a config file then source directory will be set to your pictures directory in your home directory.
{
"sourceDirectoryPath" : "/mnt/HDD/backgrounds/",
"monitorsWithBackgrounds": []
}
- Set Desktop Wallpaper:
- Open the program by running wpc in your terminal
- Browse to select an image file from your computer
- The image will now applied for the correct monitor
- Set Lock Screen Wallpaper:
- Select the “Lock Screen” tab.
- Follow the same process as the desktop wallpaper to select an image file.
- Requirements:
- libxrandr-dev
- libx11-dev
- libgtk4-dev
- libcjson-dev
- libmagickwand
Install the requirements like this:
sudo apt update && sudo apt install -y libxrandr-dev libx11-dev libgtk4-dev libcjson-dev libmagickwand-dev
WPC is licensed under the MIT License. See the LICENSE file for more information.