diff options
| author | stkhan <personal@slickd.xyz> | 2021-04-16 16:27:12 +0000 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2021-04-16 16:27:12 +0000 |
| commit | ec72cbbcef95909bd61aa07a94c4fdd98d3fe768 (patch) | |
| tree | 3b4eabe074f9fc4e0bc28f0692cef9b44c6ddac7 /install.sh | |
Init commit
Diffstat (limited to 'install.sh')
| -rwxr-xr-x | install.sh | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..673e567 --- /dev/null +++ b/install.sh @@ -0,0 +1,35 @@ +#!/bin/sh + +dwm="dwm-6.2" +dmenu="./dmenu-5.0" +st="./st" +dwmblocks="./dwmblocks" + +echo "Welcome to the archrice installer script" +echo +echo "Starting dwm install" + +cd dwm-6.2 +sudo make -s install > ./log.txt + +cd ../$st +sudo make -s install > ./log.txt + +cd ../$dmenu +sudo make -s install > ./log.txt + +cd ../$dwmblocks +sudo make -s install > ./log.txt + +echo "Copying files" +cp ./etc/.xinitrc ~ +cp ./etc/wallpaper.jpg ~/.config/ + +mkdir -p ~/.local/bin +mkdir ~/.dwm/ + +cp ./etc/autostart.sh ~/.dwm/ +cp ./bin/* ~/.local/bin + +echo "Finished" + |