blob: 07e1ec31f7c3f1baec0bad6fa259cc49a78ffadb (
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
|
#!/bin/sh
# A script that installs sarc. Run this as root
dwm="dwm-6.2"
dmenu="dmenu-5.0"
st="st"
echo "What theme did you choose?"
echo
ls themes/ && read theme
pwd
echo
echo $theme
cd $dwm
make install
cd ../$dmenu
make install
cd ../$st
make install
cd ../dwmblocks
make install
cd ..
cp bin/* /usr/local/bin
cp etc/wallpaper/$theme.wallpaper.jpg /etc/wallpaper.jpg
rm /tmp/theme
|