aboutsummaryrefslogtreecommitdiff
path: root/install.sh
blob: fbb8c32d465dd30e1ed094ab659ef0b419f4b7a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/bash

if [ "$EUID" -ne 0 ]
  then echo "The script has to be run as root."
  exit
fi

echo "Cloning core suckless programs into /open-suck-core"
mkdir ~/open-suck-core
cd ~/open-suck-core
git clone https://git.sr.ht/~bt/dwmo
git clone https://git.sr.ht/~bt/dmenuo
git clone https://git.sr.ht/~bt/slstatuso
git clone https://git.sr.ht/~bt/slocko
git clone https://git.sr.ht/~bt/sto

cd dwmo
echo "Installing dwm"
rm -rf config.h
make clean install
cd ..

cd dmenuo
echo "Installing dmenu"
rm -rf config.h
make clean install
cd ..

cd slstatuso
echo "Installing slstatus"
rm -rf config.h
make clean install
cd ..

cd sto
echo "Installing st"
rm -rf config.h
make clean install
cd ..

cd slocko
echo "Installing slock"
rm -rf config.h
make clean install
cd ..
cd ..

echo "Install finished. You should reboot the machine now."