-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinux.sh
More file actions
executable file
·48 lines (45 loc) · 991 Bytes
/
linux.sh
File metadata and controls
executable file
·48 lines (45 loc) · 991 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
48
#!/bin/bash
function setup_linux {
if is_wsl
then
debug "Detecting WSL..." "${_GRN}"
setup_wsl
else
debug "Updating a bunch of packages..." "${_GRN}"
sudo apt-get update
sudo apt-get install \
silversearcher-ag \
bash-completion \
flameshot \
gnupg \
gpg \
gpg-agent \
i3 \
i3lock-fancy \
jq \
nmap \
numlockx \
ranger \
redshift-gtk \
socat \
tmux \
tree \
watch \
xautolock \
zsh
fi
# debug "Installing font..." "${_GRN}"
#if [[ ! -e ~/.fonts/AnonymousPro-1.002.001 ]]
#then
# mkdir ~/.fonts
# pushd ~/.fonts
# curl -LO https://www.marksimonson.com/assets/content/fonts/AnonymousPro-1.002.zip
# unzip AnonymousPro-1.002.zip
# rm -f AnonymousPro-1.002.zip
# fc-cache -v
# popd
#fi
debug "Installing rcup..." "${_GRN}"
sudo add-apt-repository --yes ppa:martin-frost/thoughtbot-rcm
sudo apt-get install -y rcm
}