Add the ability to disable install

This commit is contained in:
Alexandre CATTEAU 2022-03-17 15:07:16 +01:00
parent b78183fa6e
commit 2b93a250c6
2 changed files with 9 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.disabled

View File

@ -1,7 +1,14 @@
#!/usr/bin/env bash
run_directory=$(dirname "$0")
if [ -f $run_directory/.disabled ]; then
echo "Installation is disabled. Exiting..."
exit 0
fi
echo "Copying Systemd units to user's directory..."
cp $(dirname "$0")/pulseaudio-dlna.service $HOME/.config/systemd/user/
cp $run_directory/pulseaudio-dlna.service $HOME/.config/systemd/user/
echo "Reloading Systemd's user runtime..."
systemctl --user daemon-reload