Skip to content

Commit

Permalink
Fix minor inconsistencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nnyyxxxx committed Sep 17, 2024
1 parent c1c60aa commit fd126fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tabs/applications-setup/alacritty-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ setupAlacritty() {
;;
esac
else
printf "%b\n" "${RED}alacritty is already installed.${RC}"
printf "%b\n" "${GREEN}alacritty is already installed.${RC}"
fi
}

Expand Down
6 changes: 3 additions & 3 deletions tabs/applications-setup/dwmtitus-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ install_nerd_font() {

# Check if Meslo Nerd-font is already installed
if [ -n "$FONT_INSTALLED" ]; then
printf "%b\n" "${RED}Meslo Nerd-fonts are already installed.${RC}"
printf "%b\n" "${GREEN}Meslo Nerd-fonts are already installed.${RC}"
return 0
fi

Expand Down Expand Up @@ -168,7 +168,7 @@ configure_backgrounds() {
printf "%b\n" "${GREEN}Downloaded desktop backgrounds to $BG_DIR${RC}"
else
# If the backgrounds directory already exists, print a message indicating that the download is being skipped
printf "%b\n" "${RED}Path $BG_DIR exists for desktop backgrounds, skipping download of backgrounds${RC}"
printf "%b\n" "${GREEN}Path $BG_DIR exists for desktop backgrounds, skipping download of backgrounds${RC}"
fi
}

Expand Down Expand Up @@ -245,7 +245,7 @@ setupDisplayManager() {
printf "%b\n" "${YELLOW}Creating autologin group${RC}"
$ESCALATION_TOOL groupadd autologin
else
printf "%b\n" "${RED}Autologin group already exists${RC}"
printf "%b\n" "${GREEN}Autologin group already exists${RC}"
fi
printf "%b\n" "${YELLOW}Adding user with UID 1000 to autologin group${RC}"
USER_UID_1000=$(getent passwd 1000 | cut -d: -f1)
Expand Down

0 comments on commit fd126fb

Please sign in to comment.