initial commit via gitinitshit

This commit is contained in:
2026-04-22 20:39:57 -06:00
commit dd3c7fab79
6 changed files with 89 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
#!/bin/bash
echo "installing [DЯΣΛMMΛKΣЯ]"
# kill any running instanes
echo "killing any running"
sudo systemctl stop dreammaker.service 2>/dev/null
echo "cleaning up"
# see if wer need top nuke old filews
if [ -f /usr/local/bin/dreammaker.sh ]; then
sudo rm /usr/local/bin/dreammaker.sh 2>/dev/null
fi
if [ -f /etc/systemd/system/dreammaker.service ]; then
sudo rm /etc/systemd/system/dreammaker.service 2>/dev/null
fi
# install itt
echo "installing service"
sudo cp dreammaker.sh /usr/local/bin/dreammaker.sh
sudo chmod +x /usr/local/bin/dreammaker.sh
sudo cp dreammaker.service /etc/systemd/system/dreammaker.service
# enable it at boot and run
echo "enabling [DЯΣΛMMΛKΣЯ] at boot and starting the service"
sudo systemctl enable dreammaker.service
sudo systemctl start dreammaker.service
echo "all donesies :3"