aboutsummaryrefslogtreecommitdiff
path: root/source.sh
diff options
context:
space:
mode:
Diffstat (limited to 'source.sh')
-rwxr-xr-xsource.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/source.sh b/source.sh
new file mode 100755
index 0000000..b698d5d
--- /dev/null
+++ b/source.sh
@@ -0,0 +1,14 @@
+#!/bin/sh
+# Installs from source
+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
+make install
+cd ..
+
+git clone https://aur.archlinux.org/preloader-signed.git
+chown -R nobody preloader-signed
+cd preloader-signed
+su nobody -c "makepkg -si"
+cd ..