aboutsummaryrefslogtreecommitdiff
path: root/source.sh
blob: 7eda6a48b244e0b139e7c63934dd32c8436b5ebf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
# Installs from source
su - $USE <<EOF
git clone https://git.suckless.org/st
cd st
curl -O http://st.suckless.org/patches/alpha/st-alpha-0.8.2.diff
git apply st-alpha-0.8.2.diff
sed 's/^float alpha =.*$/float alpha = 0.6/' config.def.h > config.h
sudo make install
cd ..

git clone https://aur.archlinux.org/preloader-signed.git
cd preloader-signed
yes | makepkg -si
cd ..
EOF