blob: f96f48858a6d016cb0a7865406ccbf656c0787a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#!/bin/bash
function command_exists {
command -v $1 &> /dev/null
}
set -x
if [ $UID -ne 0 ]; then
if command_exists sudo; then
SUDO="sudo"
elif command_exists doas; then
SUDO="doas"
fi
fi
if command_exists apt; then
$SUDO apt update
$SUDO apt install -y \
bat \
lolcat \
cowsay \
fortune \
zsh \
git \
figlet
else
echo "Your distro is not supported."
exit 1
fi
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
ln -s ${PWD}/bin ~/bin
mkdir -p ~/
ln -s ${PWD}/zshrc ~/.zshrc
|