Add wallpaper override.

This commit is contained in:
dabruh 2022-06-07 12:36:37 +02:00
parent 4f7b811a05
commit 027ead5d72
1 changed files with 11 additions and 0 deletions

View File

@ -77,6 +77,17 @@ function install() {
echo
}
function override_bg() {
local default=~/.local/share/bg override=~/Pictures/bg
! [ -e "$override" ] && return
echo "Overriding default background with '$override'."
ln -sfn "$override" "$default"
echo
}
install
override_bg
i3-config-builder
echo "Done! 👌"