diff options
author | Tom Barrett <tom@tombarrett.xyz> | 2020-03-09 09:11:34 -0500 |
---|---|---|
committer | Tom Barrett <tom@tombarrett.xyz> | 2020-03-09 09:11:34 -0500 |
commit | ce4d745291e427b4cffb8584e111a6df32f81b97 (patch) | |
tree | f284a1982fb8b4436907e52010806632739a374c /build | |
parent | 1e13cfa09d1a2c057a7a4b9590daf569bd91b760 (diff) |
now uses self compiled stterm, also links binaries
Diffstat (limited to 'build')
-rwxr-xr-x | build | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -7,6 +7,9 @@ RC_DIR=$HOME'/src/rc' git config --global user.name "Tom Barrett" git config --global user.email "tom@tombarrett.xyz" +# bin directory +mkdir $HOME/bin + # dwm setup DWM_DIR=$HOME'/src/dwm' git clone https://git.suckless.org/dwm $DWM_DIR @@ -18,6 +21,8 @@ cp $RC_DIR'/dwm/config.h' $DWM_DIR make -C $DWM_DIR +ln -s $DWM_DIR/dwmstatus $HOME/bin + # dwmstatus setup DWMSTS_DIR=$HOME'/src/dwmstatus' git clone https://git.suckless.org/dwmstatus $DWMSTS_DIR @@ -26,6 +31,18 @@ patch $DWMSTS_DIR'/dwmstatus.c' $RC_DIR'/dwmstatus/custom.diff' make -C $DWMSTS_DIR +ln -s $DWMSTS_DIR/dwmstatus $HOME/bin + +# st setup +ST_DIR=$HOME'/src/st' +git clone https://git.suckless.org/st $ST_DIR + +cp $RC_DIR'/st/config.h' $ST_DIR + +make -C $ST_DIR + +ln -s $ST_DIR/st $HOME/bin + # fish setup cp -r $RC_DIR'/.config/fish' $HOME'/.config/' |