From 668036007cb236affb24117c424be9b2b6993386 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 21 Dec 2021 22:01:38 -0300 Subject: [PATCH] Add install.sh --- scripts/bootstrap.sh | 4 +++- scripts/install.sh | 17 +++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100755 scripts/install.sh diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 4734a52..59b7782 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -24,7 +24,9 @@ startRice() { ./scripts/linkFiles.sh + ./scripts/install.sh + clear } -startRice \ No newline at end of file +startRice diff --git a/scripts/install.sh b/scripts/install.sh new file mode 100755 index 0000000..33b2f0c --- /dev/null +++ b/scripts/install.sh @@ -0,0 +1,17 @@ +#!/bin/sh + +DOTFILES_CONFIG=$HOME/test/.config + +cd $DOTFILES_CONFIG + +git clone https://github.com/santilococo/dwmblocks.git +git clone https://github.com/santilococo/dwm.git +git clone https://github.com/santilococo/st.git +git clone https://github.com/santilococo/dmenu.git + +sudo echo -n + +#cd dwmblocks && sudo make install +#cd dwm && sudo make install +#cd st && sudo make install +#cd dmenu && sudo make install