Add blur using the fork from https://github.com/tryone144/compton. picom seems to be very CPU heavy on my system, so until I figure out how to fix that I will use this outdated version. Make the dotfiles a bit more flexible by creating symlinks for stuff like the wallpaper or the compositor. When switching/exchanging these components only the symlinks have to be updated.
8 lines
185 B
Bash
Executable File
8 lines
185 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$1" = "-k" ]; then
|
|
killall -q compton
|
|
elif ! pgrep -ax compton >/dev/null 2>&1; then
|
|
compton --config "${XDG_CONFIG_HOME:-$HOME/.config}/compton/compton.conf" -b
|
|
fi
|