aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-10-16 09:58:36 -0400
committerBradley Taunt <bt@btxx.org>2024-10-16 09:58:36 -0400
commitb78932305a00a93042d390e3953507347d1fad01 (patch)
treed928b9ea0ebbfaf7beb5082793f95b005033bdab /install.sh
parent06aed0b8ba1a039f620258b2126906b838e01ae4 (diff)
Include laptop and desktop variations, set Firefox as default browser, include desktop screenshot
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh38
1 files changed, 0 insertions, 38 deletions
diff --git a/install.sh b/install.sh
deleted file mode 100755
index 7a03938..0000000
--- a/install.sh
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/bash
-
-if [ "$EUID" -ne 0 ]
- then echo "The script has to be run as root."
- exit
-fi
-
-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 ..
-
-echo "Install finished. You should reboot the machine now."