YouTube Music
What
Shows the currently playing song in the YouTube Music Desktop App.
NOTE: You must enable Remote Control in YTMDA for this segment to work: Settings > Integrations > Remote Control
It is fine if Protect remote control with password
is automatically enabled. This segment does not require the
Remote Control password.
Sample Configuration
- json
- yaml
- toml
{
"type": "ytm",
"style": "powerline",
"powerline_symbol": "",
"foreground": "#ffffff",
"background": "#FF0000",
"properties": {
"playing_icon": " ",
"paused_icon": " ",
"stopped_icon": " "
}
}
type: ytm
style: powerline
powerline_symbol:
foreground: "#ffffff"
background: "#FF0000"
properties:
playing_icon: " "
paused_icon: " "
stopped_icon: " "
type = "ytm"
style = "powerline"
powerline_symbol = ""
foreground = "#ffffff"
background = "#FF0000"
[properties]
playing_icon = " "
paused_icon = " "
stopped_icon = " "
Properties
Name | Type | Default | Description |
---|---|---|---|
playing_icon | string | \uE602 | text/icon to show when playing |
paused_icon | string | \uF8E3 | text/icon to show when paused |
stopped_icon | string | \uF04D | text/icon to show when stopped |
api_url | string | http://127.0.0.1:13091 | the YTMDA Remote Control API URL |
Template (info)
default template
{{ .Icon }}{{ if ne .Status \"stopped\" }}{{ .Artist }} - {{ .Track }}{{ end }}
Properties
Name | Type | Description |
---|---|---|
.Status | string | player status (playing , paused , stopped ) |
.Artist | string | current artist |
.Track | string | current track |
.Icon | string | icon (based on .Status ) |