mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-06 05:29:42 +00:00
2662aa03c4
* small refactor * Fix formatting --------- Co-authored-by: nnyyxxxx <nnyyxxxx@users.noreply.github.com>
34 lines
1.1 KiB
Bash
Executable File
34 lines
1.1 KiB
Bash
Executable File
#!/bin/sh -e
|
|
|
|
. ../common-script.sh
|
|
|
|
installKitty() {
|
|
if ! command_exists kitty; then
|
|
printf "%b\n" "${YELLOW}Installing Kitty...${RC}"
|
|
case "$PACKAGER" in
|
|
pacman)
|
|
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm kitty
|
|
;;
|
|
*)
|
|
"$ESCALATION_TOOL" "$PACKAGER" install -y kitty
|
|
;;
|
|
esac
|
|
else
|
|
printf "%b\n" "${GREEN}Kitty is already installed.${RC}"
|
|
fi
|
|
}
|
|
|
|
setupKittyConfig() {
|
|
printf "%b\n" "${YELLOW}Copying Kitty configuration files...${RC}"
|
|
if [ -d "${HOME}/.config/kitty" ] && [ ! -d "${HOME}/.config/kitty-bak" ]; then
|
|
cp -r "${HOME}/.config/kitty" "${HOME}/.config/kitty-bak"
|
|
fi
|
|
mkdir -p "${HOME}/.config/kitty/"
|
|
curl -sSLo "${HOME}/.config/kitty/kitty.conf" https://github.com/ChrisTitusTech/dwm-titus/raw/main/config/kitty/kitty.conf
|
|
curl -sSLo "${HOME}/.config/kitty/nord.conf" https://github.com/ChrisTitusTech/dwm-titus/raw/main/config/kitty/nord.conf
|
|
}
|
|
|
|
checkEnv
|
|
checkEscalationTool
|
|
installKitty
|
|
setupKittyConfig |