diff options
author | Tom Barrett <tom@tombarrett.xyz> | 2023-02-12 17:06:17 +0100 |
---|---|---|
committer | Tom Barrett <tom@tombarrett.xyz> | 2023-02-12 17:06:17 +0100 |
commit | d42be4aae613212561e8b0e608ca313be5d89330 (patch) | |
tree | 85b00e66960b553712d3a92557cd6482c00ce6e6 /build | |
parent | c9d032760c886d5b639df15e50ac8b0636cb0524 (diff) |
2023 update
Diffstat (limited to 'build')
-rwxr-xr-x | build | 20 |
1 files changed, 2 insertions, 18 deletions
@@ -9,43 +9,27 @@ mkdir "$HOME/bin" # dwm setup DWM_DIR="$HOME/src/dwm" git clone https://git.tombarrett.xyz/git/dwm "$DWM_DIR" - -patch "$DWM_DIR/dwm.c" "$RC_DIR/dwm/custom.diff" - -ln -s "$RC_DIR/dwm/config.h" "$DWM_DIR" - +ln -s "$RC_DIR/config/dwm.h" "$DWM_DIR/config.h" make -C "$DWM_DIR" - ln -s "$DWM_DIR/dwm" "$HOME/bin" # dwmstatus setup DWMSTS_DIR="$HOME/src/dwmstatus" git clone https://git.tombarrett.xyz/git/dwmstatus "$DWMSTS_DIR" - -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.tombarrett.xyz/git/st "$ST_DIR" - -ln -s "$RC_DIR/st/config.h" "$ST_DIR" - +ln -s "$RC_DIR/config/st.h" "$ST_DIR/config.h" make -C "$ST_DIR" - ln -s "$ST_DIR/st" "$HOME/bin" # pinentry-dmenu setup PE_DIR="$HOME/src/pinentry-dmenu" git clone https://git.tombarrett.xyz/git/pinentry-dmenu "$PE_DIR" - -cp "$RC_DIR/pinentry-dmenu/config*" "$PE_DIR" - make -C "$PE_DIR" - ln -s "$PE_DIR/pinentry-dmenu" "$HOME/bin" # wallpapers setup |