forked from ryanb/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_once_install_packages.sh.tmpl
54 lines (51 loc) · 1.09 KB
/
run_once_install_packages.sh.tmpl
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
49
50
51
52
53
54
{{ if eq .chezmoi.os "darwin" -}}
{{ else if eq .chezmoi.osRelease.id "ubuntu" -}}
#!/bin/sh
sudo apt install \
{{ if eq .chezmoi.osRelease.versionID "18.10" -}}
fzf \
ripgrep \
{{ end -}}
autoconf \
bsdtar \
build-essential \
clang \
cmake \
dnsutils \
exuberant-ctags \
feh \
fonts-roboto \
git \
imagemagick \
iproute2 \
libarchive-dev \
libclang-dev \
libpython-dev \
libsensors4-dev \
libxft-dev \
libxinerama-dev \
man-db \
manpages \
manpages-dev \
manpages-posix-dev \
mlocate \
openconnect \
psmisc \
rxvt-unicode-256color \
suckless-tools \
tmux \
tree \
ttf-mscorefonts-installer \
units \
vim \
xfonts-terminus \
xz-utils \
zsh
{{ if eq .chezmoi.osRelease.versionID "18.04" -}}
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
~/.fzf/install
curl -L https://github.com/BurntSushi/ripgrep/releases/download/12.1.1/ripgrep_12.1.1_amd64.deb \
-o /tmp/ripgrep_12.1.1_amd64.deb
sudo dpkg -i /tmp/ripgrep_12.1.1_amd64.deb
{{ end -}}
{{ end -}}