Module spotify_state -> mqtt
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Makefile 404B

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