Updat claws mail and VS code

This commit is contained in:
askiiart 2024-02-28 13:14:13 -06:00
parent 422c5d194e
commit af36cfcba4
Signed by untrusted user who does not match committer: askiiart
GPG key ID: BC3800E55FB54D67
3 changed files with 23 additions and 3 deletions

View file

@ -0,0 +1,20 @@
#!/usr/bin/env bash
EDITOR=nano
if [ $(whoami) == "root" ]; then
echo "Run as a normal user, not root"
exit 1
fi
command_exists() { type "$1" &>/dev/null; }
if command_exists "yay"; then
yay -S claws-mail python-gpgme nuspell aspell aspell-en
yay -S spamassassin
sudo systemctl enable --now spamassassin.service
cd ~
git clone https://git.askiiart.net/askiiart/gpg-email-helper
cd -
else
echo "IDK"
fi