2025-01-15 14:16:24 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# This script can be run to update or newly install
|
|
|
|
# the systemd services needed for
|
2025-02-09 01:26:57 +01:00
|
|
|
mkdir $HOME/.config/systemd/user/
|
2025-02-09 00:49:39 +01:00
|
|
|
cat ../systemd/plenumbot.service > $HOME/.config/systemd/user/Plenum-Bot.service
|
|
|
|
cat ../systemd/plenumbot.timer > $HOME/.config/systemd/user/Plenum-Bot.timer
|
|
|
|
chmod 755 $HOME/.config/systemd/user/Plenum-Bot.timer
|
|
|
|
chmod 755 $HOME/.config/systemd/user/Plenum-Bot.service
|
2025-01-15 14:16:24 +01:00
|
|
|
|
2025-02-09 00:49:39 +01:00
|
|
|
systemctl daemon-reload --user
|