blob: 5c1a54130e9d256e014375c8594b389113e30e3e (
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
|
#!/bin/sh
# A script to compile sarc
dwm="dwm-6.2"
st="st"
dmenu="dmenu-5.0"
echo "Welcome to the sarc installation!"
echo
echo "What theme do you want to use?"
echo
ls themes/
echo
echo "Enter what theme you would like to use:" && read theme
echo
echo "Theme is $theme"
echo
echo $theme >> /tmp/theme
pwd
cp themes/$theme theme.h
cd $dwm
make clean
make -s
cd ../dwmblocks
make -s
cd ../$st
make clean
make -s
cd ../$dmenu
make -s
cd ..
rm theme.h
echo "Compilation is complete! Run sarc_install to install it"
|