diff options
| author | stkhan <personal@slickd.xyz> | 2021-06-14 13:46:30 -0500 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2021-06-14 13:46:30 -0500 |
| commit | d0b4841d3047b25c243c3e1b946a21cea4f40be7 (patch) | |
| tree | 02662b08adbd960371c6e3cc0844c1d4dbc3a88e /bin/sarc_pkgbuild | |
| parent | a738110c2693fe65396b5d43e2f9dff5bd0644db (diff) | |
Testing PKGBUILD
Diffstat (limited to 'bin/sarc_pkgbuild')
| -rwxr-xr-x | bin/sarc_pkgbuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/bin/sarc_pkgbuild b/bin/sarc_pkgbuild new file mode 100755 index 0000000..07e1ec3 --- /dev/null +++ b/bin/sarc_pkgbuild @@ -0,0 +1,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 |