diff options
| author | stkhan <personal@slickd.xyz> | 2021-06-23 21:21:08 -0500 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2021-06-23 21:21:08 -0500 |
| commit | d23e1969acfdb5d6212e3e796b33963d47e01c08 (patch) | |
| tree | f0fa005a5c118ad00f23c4c68fe64d0712a2a285 /bin/sarc_pkgbuild | |
| parent | 7ee7c74831b87a60291db335a272ed4ba3c27496 (diff) | |
sarc 1.0.0
Former-commit-id: 0154c723c80f3fec789ad09e43749cdffd0f6503
Diffstat (limited to 'bin/sarc_pkgbuild')
| -rwxr-xr-x | bin/sarc_pkgbuild | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/bin/sarc_pkgbuild b/bin/sarc_pkgbuild deleted file mode 100755 index 07e1ec3..0000000 --- a/bin/sarc_pkgbuild +++ /dev/null @@ -1,30 +0,0 @@ -#!/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 |