Skip to content

Commit 1236223

Browse files
committed
Add cloc and info prints to the installer script
1 parent d25b049 commit 1236223

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

apt/install_software.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@ if [ "${EUID}" -ne 0 ]; then
1212
exit 1
1313
fi
1414

15+
echo "Installing apt packages."
1516
apt-get update
1617
APT_PACKAGES=(
1718
"apt-transport-https" "autojump" "bleachbit" "bluetooth" "build-essential" "ca-certificates"
18-
"cifs-utils" "clamtk" "cmake" "curl" "cutecom"
19+
"cifs-utils" "clamtk" "cloc" "cmake" "curl" "cutecom"
1920
"docker-ce" "docker-ce-cli" "containerd.io" "docker-buildx-plugin" "docker-compose-plugin"
2021
"exfatprogs" "filelight" "filezilla" "freerdp2-wayland"
2122
"gcc-multilib" "g++-multilib" "gdisk" "gfortran" "gimp" "git" "git-gui" "gparted" "htop"
@@ -32,9 +33,11 @@ if [ "$(hostnamectl chassis)" = "laptop" ]; then
3233
fi
3334
apt-get install "${PACKAGES[@]}"
3435

36+
echo "Installing Snap packages."
3537
snap install pycharm-professional --classic
3638
snap install telegram-desktop
3739

40+
echo "Installing Flatpak packages."
3841
flatpak install flathub \
3942
cc.arduino.IDE2 \
4043
com.discordapp.Discord \
@@ -56,8 +59,11 @@ flatpak install flathub \
5659

5760
if command -v asdf &> /dev/null; then
5861
# https://github.com/GloriousEggroll/proton-ge-custom
62+
echo "Installing ProtonGE using asdf."
5963
asdf plugin add protonge
6064
asdf install protonge latest
6165
else
6266
echo "asdf was not found. Skipping ProtonGE installation."
6367
fi
68+
69+
echo "Software installed."

0 commit comments

Comments
 (0)