Skip to content

Instantly share code, notes, and snippets.

@franckweb
Last active March 20, 2021 22:27
Show Gist options
  • Save franckweb/bfd982b5c7681a688f621a959870343c to your computer and use it in GitHub Desktop.
Save franckweb/bfd982b5c7681a688f621a959870343c to your computer and use it in GitHub Desktop.
# ALBERT A fast and flexible keyboard launcher
## installation taken from
## https://software.opensuse.org//download.html?project=home%3Amanuelschneid3r&package=albert
## For xUbuntu 18.04 run the following
echo 'deb http://download.opensuse.org/repositories/home:/manuelschneid3r/xUbuntu_18.04/ /' | sudo tee /etc/apt/sources.list.d/home:manuelschneid3r.list
curl -fsSL https://download.opensuse.org/repositories/home:manuelschneid3r/xUbuntu_18.04/Release.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/home_manuelschneid3r.gpg > /dev/null
sudo apt update
sudo apt install albert
## reset albert
killall -9 albert
rm -r ~/.config/albert
rm -r ~/.config/manuelschneid3r
rm -r ~/.local/share/albert
# -------------------------
# ZSH SHELL
## install zsh
sudo apt-get install zsh
## activate zsh
chsh -s /usr/bin/zsh [username]
# logout and login
## OH MY ZSH
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# -------------------------
# REDIS DEKSTOP MANAGER
## In order to install Redis Desktop Manager
wget https://github.com/uglide/RedisDesktopManager/releases/download/0.8.3/redis-desktop-manager_0.8.3-120_amd64.deb
## Once the download process is complete, install it with.
sudo dpkg -i redis-desktop-manager_0.8.3-120_amd64.deb
## If you see any dependencies errors while running above, simply run following APT command.
sudo apt-get -f install
## Run
redis-desktop-manager
# -------------------------
## OPENVPN
curl -s https://swupdate.openvpn.net/repos/repo-public.gpg | apt-key add
echo "deb http://build.openvpn.net/debian/openvpn/stable xenial main" > /etc/apt/sources.list.d/openvpn-aptrepo.list
apt update
apt install -y openvpn
## ERROR APT-GET UPDATE - solved running the following
# https://github.com/yarnpkg/yarn/issues/4453
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - again was enough.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment