mirror of https://gitlab.com/dabruh/dotfiles.git
Add wallpaper override.
This commit is contained in:
parent
4f7b811a05
commit
027ead5d72
11
install.sh
11
install.sh
|
@ -77,6 +77,17 @@ function install() {
|
||||||
echo
|
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
|
install
|
||||||
|
override_bg
|
||||||
i3-config-builder
|
i3-config-builder
|
||||||
echo "Done! 👌"
|
echo "Done! 👌"
|
||||||
|
|
Loading…
Reference in New Issue