[PR #52] [MERGED] feat: mpris support #1874

Closed
opened 2026-05-22 22:55:11 +01:00 by JakeStanger · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/JakeStanger/ironbar/pull/52
Author: @JakeStanger
Created: 1/25/2023
Status: Merged
Merged: 1/25/2023
Merged by: @JakeStanger

Base: masterHead: feat/mpris


📝 Commits (1)

📊 Changes

14 files changed (+1160 additions, -491 deletions)

View changed files

📝 Cargo.lock (+224 -47)
📝 Cargo.toml (+2 -1)
📝 docs/_Sidebar.md (+1 -1)
docs/modules/MPD.md (+0 -131)
docs/modules/Music.md (+139 -0)
📝 src/bar.rs (+1 -1)
📝 src/clients/mod.rs (+1 -1)
src/clients/mpd.rs (+0 -167)
src/clients/music/mod.rs (+66 -0)
src/clients/music/mpd.rs (+282 -0)
src/clients/music/mpris.rs (+283 -0)
📝 src/config/mod.rs (+2 -2)
📝 src/modules/mod.rs (+1 -1)
📝 src/modules/music.rs (+158 -139)

📄 Description

Resolves #25.

Completely refactors the MPD module to be the 'music' module. This now supports both MPD and MPRIS with the same UI for both.

BREAKING CHANGE: The mpd module has been renamed to music. You will need to update the type value in your config and add player_type = "mpd" to continue using MPD. You will also need to update your styles.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/JakeStanger/ironbar/pull/52 **Author:** [@JakeStanger](https://github.com/JakeStanger) **Created:** 1/25/2023 **Status:** ✅ Merged **Merged:** 1/25/2023 **Merged by:** [@JakeStanger](https://github.com/JakeStanger) **Base:** `master` ← **Head:** `feat/mpris` --- ### 📝 Commits (1) - [`6d8e647`](https://github.com/JakeStanger/ironbar/commit/6d8e647f123e54ba389c5ab2fe908200aa5e4cf6) feat: mpris support ### 📊 Changes **14 files changed** (+1160 additions, -491 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+224 -47) 📝 `Cargo.toml` (+2 -1) 📝 `docs/_Sidebar.md` (+1 -1) ➖ `docs/modules/MPD.md` (+0 -131) ➕ `docs/modules/Music.md` (+139 -0) 📝 `src/bar.rs` (+1 -1) 📝 `src/clients/mod.rs` (+1 -1) ➖ `src/clients/mpd.rs` (+0 -167) ➕ `src/clients/music/mod.rs` (+66 -0) ➕ `src/clients/music/mpd.rs` (+282 -0) ➕ `src/clients/music/mpris.rs` (+283 -0) 📝 `src/config/mod.rs` (+2 -2) 📝 `src/modules/mod.rs` (+1 -1) 📝 `src/modules/music.rs` (+158 -139) </details> ### 📄 Description Resolves #25. Completely refactors the MPD module to be the 'music' module. This now supports both MPD and MPRIS with the same UI for both. BREAKING CHANGE: The `mpd` module has been renamed to `music`. You will need to update the `type` value in your config and add `player_type = "mpd"` to continue using MPD. You will also need to update your styles. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
JakeStanger 2026-05-22 22:55:11 +01:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
JakeStanger/ironbar#1874
No description provided.