blob: 65a90d32df1313c6a7ff0f3fe0c577a956f8e686 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
_script="$(realpath ${BASH_SOURCE[0]})"
_scriptname="$(basename $_script)"
_scriptdir="$(dirname $_script)"
_modulename="$(basename $_scriptdir)"
function preinstall() {
if ! [[ -x "$(command -v neofetch)" ]]; then
PACKAGES+=("neofetch")
fi
}
function install() {
# backup old file if it exists and we haven't backed it up before
if [[ -f "$HOME/.config/neofetch/config.conf" ]] && ! [[ -f "$HOME/.config/neofetch/config.conf.bak" ]] && ! [[ -f "$_scriptdir/.firstrun" ]]; then
echo "making backup"
cp "$HOME/.config/neofetch/config.conf" "$HOME/.config/neofetch/config.conf.bak"
touch "$_scriptdir/.firstrun"
fi
ln -f "$_scriptdir/config.conf" "$HOME/.config/neofetch/config.conf"
}
|