Merge pull request #404 from nnyyxxxx/testing-15

Add fastfetch
This commit is contained in:
Chris Titus 2024-09-16 17:04:41 -05:00 committed by GitHub
commit d81e3afeec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,33 @@
#!/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 "Copying 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

View File

@ -27,3 +27,7 @@ script = "rofi-setup.sh"
[[data]] [[data]]
name = "ZSH Prompt" name = "ZSH Prompt"
script = "zsh-setup.sh" script = "zsh-setup.sh"
[[data]]
name = "Fastfetch"
script = "fastfetch-setup.sh"