added squeezelite, and webapp to control lms

This commit is contained in:
2025-12-01 03:12:50 +00:00
parent 80fd466e34
commit ba0dfc1ced

View File

@@ -6,6 +6,7 @@
- [Microsoft Edge](#microsoft-edge) - [Microsoft Edge](#microsoft-edge)
- [youtube tv](#youtube-tv) - [youtube tv](#youtube-tv)
- [gamepass](#gamepass) - [gamepass](#gamepass)
- [lms player](#lms-player)
- [System](#system) - [System](#system)
- [Kde Plasma](#kde-plasma) - [Kde Plasma](#kde-plasma)
- [flatpak](#flatpak) - [flatpak](#flatpak)
@@ -112,6 +113,36 @@ Plugin only works correcly if other instance of edge is running for example for
Added as an edge app to <https://www.xbox.com/play> Added as an edge app to <https://www.xbox.com/play>
### lms player
``` bash
sudo apt install squeezelite
squeezelite -o hw:0 -s lms.lan
```
``` bash
#TV user
mkdir -p ~/.config/systemd/user
Create the unit file ~/.config/systemd/user/squeezelite.service:
[Unit]
Description=Squeezelite Player
After=network.target sound.target
[Service]
ExecStart=/usr/bin/squeezelite -o hw:0 -s lms.lan -n office
Restart=always
[Install]
WantedBy=default.target
```
``` bash
systemctl --user daemon-reload
systemctl --user enable --now squeezelite.service
systemctl --user status squeezelite.service
```
## System ## System
**OS:** proxmox pve (Debian Based) **OS:** proxmox pve (Debian Based)