From 474b115630c262cfeb44814948f0abe019d4aa3f Mon Sep 17 00:00:00 2001 From: Tom Barrett Date: Mon, 16 Sep 2019 18:19:48 +0200 Subject: auto patching and compiling --- build | 36 ++++++++++++++++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) (limited to 'build') diff --git a/build b/build index a937f44..b31ef23 100755 --- a/build +++ b/build @@ -1,3 +1,35 @@ #!/bin/bash -git clone https://git.suckless.org/dwm /home/tom/src/dwm -git clone https://git.suckless.org/dwmstatus /home/tom/src/dwmstatus + +# var setup +HOME_DIR='/home/tom' +RC_DIR=$HOME_DIR'/src/rc' + +# git setup +git config --global user.name "Tom Barrett" +git config --global user.email "tom@tombarrett.xyz" + +# dwm setup +DWM_DIR=$HOME_DIR'/src/dwm' +git clone https://git.suckless.org/dwm $DWM_DIR + +patch $DWM_DIR'/dwm.c' $RC_DIR'/dwm/vanitygaps.diff' +patch $DWM_DIR'/dwm.c' $RC_DIR'/dwm/custom.diff' + +cp $RC_DIR'/dwm/config.h' $DWM_DIR + +make -C $DWM_DIR + +# dwmstatus setup +DWMSTS_DIR=$HOME_DIR'/src/dwmstatus' +git clone https://git.suckless.org/dwmstatus $DWMSTS_DIR + +patch $DWMSTS_DIR'/dwmstatus.c' $RC_DIR'/dwmstatus/custom.diff' + +make -C $DWMSTS_DIR + +# xorg setup +cp $RC_DIR'/.xinitrc' $HOME_DIR + +# autostart script +cp $RC_DIR'/.autostart' $HOME_DIR + -- cgit v1.2.3