Active window border replacement for window managers, now with fading borders for a cleaner look.
Install with pipx (recommended)
pipx install git+https://github.com/lunegh/xborders
xborders --helpOr clone the repository
git clone https://github.com/lunegh/xborders
cd xborders
pip install -r requirements.txt
chmod +x xborders
./xborders --helpMake sure to install dependencies first! pip install -r requirements.txt
Python dependencies
- pycairo (Tested with version 1.27.0)
- requests (Tested with version 2.32.3)
- pygobject (Tested with version 3.50.0)
- zc.lockfile (Tested with version 3.0.post1)
- python-xlib (Tested with version 0.33)
System dependencies
- libwnck (Tested with version 40.1-1, Arch:
sudo pacman -S libwnck3Debian:sudo apt install libwnck-3-0NOTE: may need 'libwnck-3-0-dev' for Debian) - gtk
- a compositor that supports transparent windows (picom is what I am using)
Manually installing Python dependencies is not required when installing with pipx.
- libnotify (Debian:
sudo apt install libnotify-binArch:sudo pacman -S libnotify)
If you don't want your entire screen blurred please add role = 'xborder' to your blur-exclude!
blur-background-exclude = [
# prevents picom from blurring the background
"role = 'xborder'",
...
];
Configuration options can be found by passing in the argument --help on the command line, or by specifying a config file with the argument -c. If no config file is specified with the -c argument, xborders will look for one at ~/.config/xborders/xborders.json. However, it will not create the file if it is missing.
The config file is just a simple json file with the keys being the same as the command-line arguments (except without the "--" at the beginning).
For pipx installations
pipx upgrade xbordersFor manual installations
cd /path/to/xborders
git pull origin main
pip install -r requirements.txt
