diff --git a/install.sh b/install.sh index 3a62fbd..1ff2179 100755 --- a/install.sh +++ b/install.sh @@ -1,4 +1,29 @@ -# Linux installation (Arch, CachyOS) +# [ Linux installation (CachyOS: Arch, Fish, KDE Wallet) ] # +echo Starting installation for CachyOS (using Arch, Fish Console and KDE Wallet) + +# required apps +echo Installing required software. Please enter sudo password. +sudo pacman -S git code # python python-pip # python and pip should be installed already + +# git setup +echo Setting up git. + +echo Git: What is your user name? +read git_username + +echo Git: What is your e-mail address? +read git_email + +git config --global user.name "$git_username" +git config --global user.email "$git_email" + +echo Enabling storage for git credentials using KDE Wallet +git config --global credential.helper libsecret + +# python setup +echo Python setup python3 -m venv venv source venv/bin/activate.fish + +echo Installing Python Telegram Bot Library pip install python-telegram-bot