small refactor (#563)

* small refactor

* Fix formatting

---------

Co-authored-by: nnyyxxxx <nnyyxxxx@users.noreply.github.com>
This commit is contained in:
Nyx 2024-09-20 10:27:31 -04:00 committed by GitHub
parent 7946000007
commit 2662aa03c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 23 additions and 12 deletions

View File

@ -3,8 +3,8 @@
. ../common-script.sh
installAlacritty() {
printf "%b\n" "${YELLOW}Installing Alacritty...${RC}"
if ! command_exists alacritty; then
printf "%b\n" "${YELLOW}Installing Alacritty...${RC}"
case "$PACKAGER" in
pacman)
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm alacritty
@ -19,7 +19,7 @@ installAlacritty() {
}
setupAlacrittyConfig() {
printf "%b\n" "${YELLOW}Copy alacritty config files${RC}"
printf "%b\n" "${YELLOW}Copying alacritty config files...${RC}"
if [ -d "${HOME}/.config/alacritty" ] && [ ! -d "${HOME}/.config/alacritty-bak" ]; then
cp -r "${HOME}/.config/alacritty" "${HOME}/.config/alacritty-bak"
fi

17
core/tabs/applications-setup/bottles-setup.sh Normal file → Executable file
View File

@ -2,13 +2,20 @@
. ../common-script.sh
install_bottles() {
installBottles() {
if ! command_exists flatpak; then
printf "%b\n" "${YELLOW}Installing Bottles...${RC}"
. ./setup-flatpak.sh
flatpak install -y flathub com.usebottles.bottles
printf "%b\n" "${GREEN}Bottles installed successfully. Restart the system to apply changes...${RC}"
case "$PACKAGER" in
*)
. ./setup-flatpak.sh
flatpak install -y flathub com.usebottles.bottles
;;
esac
else
printf "%b\n" "${GREEN}Bottles is already installed.${RC}"
fi
}
checkEnv
checkEscalationTool
install_bottles
installBottles

View File

@ -3,8 +3,8 @@
. ../common-script.sh
installFastfetch() {
printf "%b\n" "${YELLOW}Installing Fastfetch...${RC}"
if ! command_exists fastfetch; then
printf "%b\n" "${YELLOW}Installing Fastfetch...${RC}"
case "$PACKAGER" in
pacman)
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm fastfetch

View File

@ -3,8 +3,8 @@
. ../common-script.sh
installKitty() {
printf "%b\n" "${YELLOW}Install Kitty if not already installed...${RC}"
if ! command_exists kitty; then
printf "%b\n" "${YELLOW}Installing Kitty...${RC}"
case "$PACKAGER" in
pacman)
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm kitty

View File

@ -5,6 +5,7 @@
gitpath="$HOME/.local/share/mybash"
installDepend() {
if ! command_exists bash bash-completion tar bat tree unzip fontconfig git; then
printf "%b\n" "${YELLOW}Installing Bash...${RC}"
case "$PACKAGER" in
pacman)
@ -24,6 +25,7 @@ installDepend() {
exit 1
;;
esac
fi
}
cloneMyBash() {

View File

@ -14,6 +14,7 @@ cloneNeovim() {
}
installNeovim() {
if ! command_exists neovim ripgrep git fzf; then
printf "%b\n" "${YELLOW}Installing Neovim...${RC}"
case "$PACKAGER" in
pacman)
@ -33,6 +34,7 @@ installNeovim() {
exit 1
;;
esac
fi
}
backupNeovimConfig() {

View File

@ -3,8 +3,8 @@
. ../common-script.sh
installRofi() {
printf "%b\n" "${YELLOW}Installing Rofi...${RC}"
if ! command_exists rofi; then
printf "%b\n" "${YELLOW}Installing Rofi...${RC}"
case "$PACKAGER" in
pacman)
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm rofi

View File

@ -4,8 +4,8 @@
# Function to install zsh
installZsh() {
printf "%b\n" "${YELLOW}Installing Zsh...${RC}"
if ! command_exists zsh; then
printf "%b\n" "${YELLOW}Installing Zsh...${RC}"
case "$PACKAGER" in
pacman)
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm zsh

View File

@ -3,8 +3,8 @@
. ../common-script.sh
installPkg() {
printf "%b\n" "${YELLOW}Installing UFW...${RC}"
if ! command_exists ufw; then
printf "%b\n" "${YELLOW}Installing UFW...${RC}"
case "$PACKAGER" in
pacman)
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm ufw