Skip to content

Instantly share code, notes, and snippets.

@capsulecorplab
Last active December 29, 2020 01:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save capsulecorplab/becffcecd61985894b85e544ce228756 to your computer and use it in GitHub Desktop.
Save capsulecorplab/becffcecd61985894b85e544ce228756 to your computer and use it in GitHub Desktop.
bash script for installing signal
#!/usr/bin/env bash
# install Signal
# https://signal.org/en/download/#
# 1. Install our official public software signing key
wget -O- https://updates.signal.org/desktop/apt/keys.asc |\
sudo apt-key add -
# 2. Add our repository to your list of repositories
echo "deb [arch=amd64] https://updates.signal.org/desktop/apt xenial main" |\
sudo tee -a /etc/apt/sources.list.d/signal-xenial.list
# 3. Update your package database and install signal
sudo apt update -y && sudo apt install signal-desktop -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment