Skip to content

Commit

Permalink
Increased update delay range
Browse files Browse the repository at this point in the history
Added option to see hidden parts of the title on hover
Added support for video players like VLC
  • Loading branch information
sakithb committed Aug 28, 2021
1 parent a55d05a commit e5cdde0
Show file tree
Hide file tree
Showing 7 changed files with 238 additions and 107 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ Install from source

## Upcoming features

- Support for video players
- Animated text
- Desaturated player icon
- Clickable title with actions
- ~Support for video players~ [DONE]
- ~Desaturated player icon~ [DONE]
- ~Clickable title with actions~ [DONE]
3 changes: 2 additions & 1 deletion dbus.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,9 @@ const getMetadata = (player) => {
.recursiveUnpack()[0];
let title = metaData["xesam:title"];
let artist = metaData["xesam:artist"];
let id = metaData["mpris:trackid"];
// log("Got metadata");
resolve([title, artist]);
resolve([title, artist, id]);
} catch (e) {
reject(e);
}
Expand Down
Loading

0 comments on commit e5cdde0

Please sign in to comment.