This commit is contained in:
Jackson Delahunt 2019-02-23 18:08:40 +11:00
parent 0fddbe8077
commit b05a2a3aaa

View file

@ -54,7 +54,12 @@ getent group 999 | \
cut -d: -f1 | \
xargs groupdel
# Install Docker
# Install kde backports
add-apt-repository --yes ppa:kubuntu-ppa/backports && \
apt-get update && \
apt-get upgrade -qq
# Install docker
sh -c "$(curl -fsSL get.docker.com)" && \
usermod -aG docker $DESKTOP_ENVIRONMENT_USER
@ -63,19 +68,19 @@ wget -O alacritty.deb https://github.com/jwilm/alacritty/releases/download/v0.2.
dpkg -i alacritty.deb && \
rm alacritty.deb
# Install kde backports
add-apt-repository --yes ppa:kubuntu-ppa/backports && \
apt-get update && \
apt-get upgrade -qq
# Install antigen
curl -L git.io/antigen > /usr/local/bin/antigen.zsh
# Install bat
wget -O bat.deb -nv https://github.com/sharkdp/bat/releases/download/v0.9.0/bat_0.9.0_amd64.deb && \
dpkg -i bat.deb && \
rm bat.deb
# Install jump directory navigator
wget -nv -O jump.deb https://github.com/gsamokovarov/jump/releases/download/v0.22.0/jump_0.22.0_amd64.deb && \
dpkg -i jump.deb && \
rm jump.deb
# Install antigen
curl -L git.io/antigen > /usr/local/bin/antigen.zsh
# Allow docker containers to access the host's X server
xhost local:docker