--- id: ytm title: YouTube Music sidebar_label: YouTube Music --- ## What Shows the currently playing song in the [YouTube Music Desktop App](https://github.com/ytmdesktop/ytmdesktop). **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 import Config from '@site/src/components/Config.js'; ## 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][templates]) :::note default template ```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`) | [templates]: /docs/configuration/templates [templates]: /docs/configuration/templates