{"id":13740266,"url":"https://github.com/richin13/tmux-plugin-playerctl","last_synced_at":"2025-07-08T19:40:04.488Z","repository":{"id":85407250,"uuid":"194200055","full_name":"richin13/tmux-plugin-playerctl","owner":"richin13","description":"Display MPRIS metadata in Tmux (Spotify, Clementine, VLC, etc)","archived":false,"fork":false,"pushed_at":"2024-11-17T21:48:05.000Z","size":15,"stargazers_count":13,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-18T09:34:28.978Z","etag":null,"topics":["banshee","clementine","mpris","playerctl","spotify","tmux","vlc"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/richin13.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2019-06-28T03:28:41.000Z","updated_at":"2024-12-30T22:01:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"fcd837be-1b71-42a7-b02e-687120515786","html_url":"https://github.com/richin13/tmux-plugin-playerctl","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/richin13%2Ftmux-plugin-playerctl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/richin13%2Ftmux-plugin-playerctl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/richin13%2Ftmux-plugin-playerctl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/richin13%2Ftmux-plugin-playerctl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/richin13","download_url":"https://codeload.github.com/richin13/tmux-plugin-playerctl/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250543074,"owners_count":21447829,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["banshee","clementine","mpris","playerctl","spotify","tmux","vlc"],"created_at":"2024-08-03T04:00:45.312Z","updated_at":"2025-04-24T01:27:19.612Z","avatar_url":"https://github.com/richin13.png","language":"Shell","readme":"# tmux-plugin-playerctl\n\nA tmux plugin for using [playerctl](https://github.com/acrisci/playerctl) to display [MPRIS](https://www.freedesktop.org/wiki/Specifications/mpris-spec/) meta-data about the music currently playing.\n\n## Pre-requisites\n\nMake sure you have *playerctl* \u0026 *bash* installed.\n\n```bash\n# If you're in Arch\nsudo pacman -S playerctl\n```\n\nSee [playerctl](https://github.com/acrisci/playerctl#installing)'s instructions to get more details about installing it in other OS.\n\n## Installation\n\n### Installation with [Tmux Plugin Manager](https://github.com/tmux-plugins/tpm) (recommended)\n\nAdd plugin to the list of TPM plugins in `.tmux.conf`:\n\n```\nset -g @plugin 'richin13/tmux-plugin-playerctl'\n```\n\nHit `prefix + I` to fetch the plugin and source it.\n\nIf format strings are added to `status-right`, they should now be visible.\n\n### Manual installation\n\nClone the repository\n\n```bash\ngit clone https://github.com/richin13/tmux-plugin-playerctl ~/path/to/local/repo\n```\n\nAdd the following line to your `.tmux.conf`:\n\n```bash\nrun-shell ~/path/to/local/repo/playerctl.tmux\n```\n\n\n## Usage\n\nThe currently available options are:\n\n- `#{playerctl_artist}`: Display the song's artist information\n- `#{playerctl_title}`: Display the song's title information\n- `#{playerctl_album}`: Display the song's album information\n- `#{playerctl_full}`: Display the song info in the format [Artist] - [Title]\n- `#{playerctl_short}`: Display the song info in the format [Artist] - [Title] but trimmed\nto a max number of characters (default: 30)\n- `#{playerctl_status}`: Display the player's status (default: Playing = ▶, Paused = ⏸, Stopped = ⏹)\n\nJust add the desired option to your `.tmux.conf` like this:\n\n```bash\nset -g status-right   \"#{playerctl_status} #{playerctl_full}\"\n```\n\n## Settings\n\nAvailable settings for `playerctl_short` (shown values are the defaults):\n\n```bash\n#: Number of characters to show\nset -g @short_length \"30\"\n\n#: Character(s) to append at the end of the trimmed song name\nset -g @short_append_chars \"...\"\n```\n\nAvailable settings for `playerctl_status`:\n\n```bash\n#: Shown values are the defaults\n\n#: Character to show when the player is playing\nset -g @status_playing \"▶\"\n\n#: Character to show when the player is paused\nset -g @status_paused \"⏸\"\n\n#: Character to show when the player is stopped\nset -g @status_stopped \"⏹\"\n```\n\n## License\n\nSee [LICENSE](./LICENSE)\n","funding_links":[],"categories":["Status Bar"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frichin13%2Ftmux-plugin-playerctl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frichin13%2Ftmux-plugin-playerctl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frichin13%2Ftmux-plugin-playerctl/lists"}