13 lines
181 B
Bash
Executable File
13 lines
181 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$EUID" -eq 0 ]; then
|
|
echo "Do not run as root!"
|
|
exit
|
|
fi
|
|
|
|
# install tmux plugin manager
|
|
|
|
# install oh-my-zsh + plugins + p10k theme
|
|
|
|
# put dotfiles in place
|