-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·47 lines (34 loc) · 838 Bytes
/
setup.sh
File metadata and controls
executable file
·47 lines (34 loc) · 838 Bytes
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
38
39
40
41
42
43
44
45
46
47
#!/bin/bash
source utils.sh
# in case your distro is not supported, write the install command
# here. ex: export FALLBACK_INSTALL_CMD="sudo apt install -y"
export FALLBACK_INSTALL_CMD=
get_package_manager
# like cat but pretty
install bat || install batcat
# like ls but pretty
install exa
# very nice shell
setup zsh
# super cool terminal editor
setup nvim
# multiple shells one terminal
setup tmux
# terminal file manager
setup ranger
# install i3wm and other things
if [[ $1 == "-y" ]]; then
setup wm
else
while true; do
read -p "Do you want to install graphics (xorg) configs also? (Y/n): " option
if [[ $option == "y" || $option == "Y" ]]; then
setup wm
break
fi
if [[ $option == "n" || $option == "N" ]]; then
break
fi
done
fi
zsh