fix: packages and discord fixes?

main
CrimsonTome 2022-11-22 19:28:06 +00:00 committed by Rowan Clark
parent 59225fdb88
commit 501f859a60
No known key found for this signature in database
GPG Key ID: F620D51904044094
2 changed files with 2 additions and 6 deletions

View File

@ -9,7 +9,6 @@ krita
libreoffice libreoffice
mpv mpv
obs-studio obs-studio
opencomic
qbittorrent qbittorrent
remmina remmina
thunderbird thunderbird
@ -21,7 +20,6 @@ vim
bat bat
docker docker
docker-compose docker-compose
dotnet-sdk-6.0
exa exa
fdupes fdupes
gcc gcc
@ -34,11 +32,9 @@ nginx
nmap nmap
npm npm
nodejs nodejs
nushell
pandoc pandoc
screen screen
tldr tldr
terraform
ufw ufw
wireshark wireshark
yt-dlp yt-dlp

View File

@ -31,9 +31,9 @@ ssh-keygen -t ed25519 -f $sshDir"/id_ed25519_git" -N ''
# check package manager # check package manager
if [[ $os == "Ubuntu" ]]; then if [[ $os == "Ubuntu" ]]; then
sudo apt install -y $(cat apt-packages); sudo apt install -y $(cat apt-packages);
sudo snap install -y $(cat snap-packages); sudo snap install $(cat snap-packages);
wget https://dl.discordapp.net/apps/linux/0.0.21/discord-0.0.21.deb; wget https://dl.discordapp.net/apps/linux/0.0.21/discord-0.0.21.deb;
sudo apt install -f discord-0.0.21.deb; sudo apt install -f ./discord-0.0.21.deb;
elif [[ $os == "Fedora" ]]; then elif [[ $os == "Fedora" ]]; then
echo "test" echo "test"
else else