Last active
March 16, 2022 08:17
-
-
Save jancbeck/0dcfce436199c618a242509b09be66ea to your computer and use it in GitHub Desktop.
Setup Uberspace 7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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