Module spotify_state -> mqtt
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314
  1. UID=1000
  2. GID=1000
  3. SERVICE_PATH="/etc/systemd/system"
  4. help:
  5. @echo "make install (with root priviliges) - to install service"
  6. @echo "make start (with root priviliges) - to start service"
  7. @echo "make enable (with root priviliges) - to enable service on boot"
  8. install:
  9. python __install__.py $(UID) $(GID) $(SERVICE_PATH)
  10. start:
  11. systemctl start spotify.service
  12. enable:
  13. systemctl enable spotify.service