diff options
author | Tom Barrett <tom@tombarrett.xyz> | 2021-04-12 17:34:44 +0200 |
---|---|---|
committer | Tom Barrett <tom@tombarrett.xyz> | 2021-04-12 17:34:44 +0200 |
commit | cdae62d790d83def28515166595c03a59832df1f (patch) | |
tree | 06c480ae908d6c05c4ad13dc3103e1eee6c1d0dd | |
parent | cbe9af1d1d72741d6e5d5d0152934abc31d78bcb (diff) |
start using my own hosting, and add connman_dmenu to build
-rwxr-xr-x | build | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -8,7 +8,7 @@ mkdir $HOME/bin # dwm setup DWM_DIR=$HOME'/src/dwm' -git clone https://git.suckless.org/dwm $DWM_DIR +git clone https://git.tombarrett.xyz/tom/dwm $DWM_DIR patch $DWM_DIR'/dwm.c' $RC_DIR'/dwm/custom.diff' @@ -20,7 +20,7 @@ ln -s $DWM_DIR/dwm $HOME/bin # dwmstatus setup DWMSTS_DIR=$HOME'/src/dwmstatus' -git clone https://git.suckless.org/dwmstatus $DWMSTS_DIR +git clone https://git.tombarrett.xyz/tom/dwmstatus $DWMSTS_DIR patch $DWMSTS_DIR'/dwmstatus.c' $RC_DIR'/dwmstatus/custom.diff' @@ -30,7 +30,7 @@ ln -s $DWMSTS_DIR/dwmstatus $HOME/bin # st setup ST_DIR=$HOME'/src/st' -git clone https://git.suckless.org/st $ST_DIR +git clone https://git.tombarrett.xyz/tom/st $ST_DIR ln -s $RC_DIR'/st/config.h' $ST_DIR @@ -38,6 +38,12 @@ make -C $ST_DIR ln -s $ST_DIR/st $HOME/bin +# connman_dmenu setup +CD_DIR=$HOME'/src/connman_dmenu' +git clone https://git.tombarrett.xyz/tom/connman_dmenu $CD_DIR + +ln -s $CD_DIR/connman_dmenu $HOME/bin + mkdir -p $HOME'/.config/' # zsh setup |