Skip to content

Commit

Permalink
Add lll alias and signal install
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxWolf-01 committed Jun 23, 2024
1 parent ec0b279 commit 2f9afd3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
12 changes: 12 additions & 0 deletions setup
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ apps() {
gparted \
pulseaudio-module-bluetooth
toolbox
signal
}

tools() {
Expand Down Expand Up @@ -304,6 +305,17 @@ ytdlp() {
sudo apt install -y yt-dlp # Install yt-dlp
}

signal() {
# 1. Install our official public software signing key:
wget -O- https://updates.signal.org/desktop/apt/keys.asc | gpg --dearmor > signal-desktop-keyring.gpg
cat signal-desktop-keyring.gpg | sudo tee /usr/share/keyrings/signal-desktop-keyring.gpg > /dev/null
# 2. Add our repository to your list of repositories:
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/signal-desktop-keyring.gpg] https://updates.signal.org/desktop/apt xenial main' |\
sudo tee /etc/apt/sources.list.d/signal-xenial.list
# 3. Update your package database and install Signal:
sudo apt update && sudo apt install signal-desktop
}

### Networking etc

wireguard_client() {
Expand Down
1 change: 1 addition & 0 deletions zsh/aliases
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ alias gdiff='git diff --color | sed "s/^\([^-+ ]*\)[-+ ]/\\1/" | less -r' # Remo
#######
alias ls='ls --color=auto'
alias ll='ls -lAhrt --color=auto'
alias lll='ls -lAhrt --color=auto'
alias lls='ls -lAhSr --color=auto'
alias la='ls -a --color=auto'
alias l='ls --color=auto'
Expand Down

0 comments on commit 2f9afd3

Please sign in to comment.