Skip to content

Instantly share code, notes, and snippets.

@jancbeck
Last active March 16, 2022 08:17
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jancbeck/0dcfce436199c618a242509b09be66ea to your computer and use it in GitHub Desktop.
Save jancbeck/0dcfce436199c618a242509b09be66ea to your computer and use it in GitHub Desktop.
Setup Uberspace 7
# switch to zsh shell
# https://manual.uberspace.de/en/basics-shell.html
chsh --shell /bin/zsh
# install oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# remove existing .zshrc
rm -rf .zshrc
# install dotfiles
# https://github.com/jancbeck/dotfiles
curl -Lks https://git.io/vdAds | /bin/bash
# install ZSH theme
git clone https://github.com/KuoE0/oh-my-zsh-solarized-powerline-theme.git ~/etc/oh-my-zsh-solarized-powerline-theme
ln -s $PWD/etc/oh-my-zsh-solarized-powerline-theme/solarized-powerline.zsh-theme ~/.oh-my-zsh/themes
# enable logs
# https://manual.uberspace.de/en/web-logs.html
uberspace web log php_error enable
uberspace web log apache_error enable
# install rsub
wget -O $HOME/bin/rsub https://raw.github.com/aurora/rmate/master/rmate
chmod a+x $HOME/bin/rsub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment