From 3b852e0f10892789210fd8e3fdd8415faf3cf2d8 Mon Sep 17 00:00:00 2001 From: stkhan Date: Sun, 17 Oct 2021 18:43:19 -0500 Subject: 3.0 --- build.sh | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 build.sh (limited to 'build.sh') diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..b9962c4 --- /dev/null +++ b/build.sh @@ -0,0 +1,30 @@ +#!/bin/sh +# A script to build sarc + +# Sets theme configuration +# To see available themes, do "ls theme/" + +echo "Welcome to the sarc installation!" +echo +echo "Choose a theme:" && ls theme/ +read theme + +cp theme/$theme/colors.h dwm-6.2/ +cp theme/$theme/$theme.png $HOME/.config/wallpaper.png + +# Compiles dwm, st, etc + +cd dwm-6.2 +make clean +make + +cd ../st-0.8.4/ +make clean +make + +cd ../dmenu-5.0/ +make clean +make +cd ../ + + -- cgit v1.2.3