Make commercial apps optional

This commit is contained in:
David Heinemeier Hansson
2024-06-11 23:14:52 +02:00
parent d29e213fa9
commit 1f478d26b8
4 changed files with 6 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
cd /tmp
wget https://downloads.1password.com/linux/debian/amd64/stable/1password-latest.deb
sudo apt install -y ./1password-latest.deb
rm 1password-latest.deb
cd -

View File

@@ -0,0 +1,4 @@
curl -sS https://download.spotify.com/debian/pubkey_6224F9941A8AA6D1.gpg | sudo gpg --dearmor --yes -o /etc/apt/trusted.gpg.d/spotify.gpg
echo "deb [signed-by=/etc/apt/trusted.gpg.d/spotify.gpg] http://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list
sudo apt update
sudo apt install -y spotify-client

View File

@@ -0,0 +1,5 @@
cd /tmp
wget https://zoom.us/client/latest/zoom_amd64.deb
sudo apt install -y ./zoom_amd64.deb
rm zoom_amd64.deb
cd -