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
|
||||
}
|
||||
|
||||
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! 👌"
|
||||
|
|
Loading…
Reference in New Issue