mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-06 05:29:42 +00:00
1b904c379d
Co-authored-by: Adam Perkowski <adas1per@protonmail.com>
33 lines
961 B
Bash
33 lines
961 B
Bash
#!/bin/sh -e
|
|
|
|
. ../common-script.sh
|
|
|
|
setupFastfetch() {
|
|
echo "Installing Fastfetch if not already installed..."
|
|
if ! command_exists fastfetch; then
|
|
case ${PACKAGER} in
|
|
pacman)
|
|
$ESCALATION_TOOL "${PACKAGER}" -S --needed --noconfirm fastfetch
|
|
;;
|
|
*)
|
|
$ESCALATION_TOOL "${PACKAGER}" install -y fastfetch
|
|
;;
|
|
esac
|
|
else
|
|
echo "Fastfetch is already installed."
|
|
fi
|
|
}
|
|
|
|
setupFastfetchConfig() {
|
|
echo "Copy Fastfetch config files"
|
|
if [ -d "${HOME}/.config/fastfetch" ] && [ ! -d "${HOME}/.config/fastfetch-bak" ]; then
|
|
cp -r "${HOME}/.config/fastfetch" "${HOME}/.config/fastfetch-bak"
|
|
fi
|
|
mkdir -p "${HOME}/.config/fastfetch/"
|
|
curl -sSLo "${HOME}/.config/fastfetch/config.jsonc" https://raw.githubusercontent.com/ChrisTitusTech/mybash/main/config.jsonc
|
|
}
|
|
|
|
checkEnv
|
|
checkEscalationTool
|
|
setupFastfetch
|
|
setupFastfetchConfig |