blog:articles:general:conky_mpd
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
blog:articles:general:conky_mpd [2024/05/25 00:18] – Phil Ide | blog:articles:general:conky_mpd [2024/06/21 13:09] (current) – Phil Ide | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ~~NOCACHE~~ | ||
====== Conky and MPD ====== | ====== Conky and MPD ====== | ||
- | {{: | + | {{: |
It is possible to get that information though, although there are different techniques. For example, this extracts the current queue position and the length of the queue: | It is possible to get that information though, although there are different techniques. For example, this extracts the current queue position and the length of the queue: | ||
Line 9: | Line 10: | ||
As you can see, it requires a bit of shell arcanery, but actually it's pretty straightforward. For the elapsed time, I simply took the values of two conky variables (mpd_length and mpd_elapsed), | As you can see, it requires a bit of shell arcanery, but actually it's pretty straightforward. For the elapsed time, I simply took the values of two conky variables (mpd_length and mpd_elapsed), | ||
- | For the length of the entire queue, I wrote an application in Rust (which compiles down to optimised machine code). This application fetches the entire playlist from MPD and then iterates through the list extracting the length of the track in seconds, and accumulating the results - then formats the result as a 00:00:00 formatted time string. | + | For the length of the entire queue, I wrote an application in Rust (which compiles down to optimised machine code). This application fetches the entire playlist from MPD and then iterates through the list extracting the length of the track in seconds, and accumulating the results - then formats the final result as a 00:00:00 formatted time string. The source code is available on [[https:// |
+ | // | ||
+ | I have written another function in Rust, this collects a whole bunch of information from the MPD queue, and outputs a Conky parsable formatted string, so it can not only display all that information, | ||
+ | You may notice there is a ' | ||
+ | === === | ||
+ | This just left fetching the artwork. There is a wonderful shell script called [[https:// | ||
+ | |||
+ | Incidentally, | ||
+ | {{ : | ||
+ | |||
+ | As you can see, the conky panel on the right is displaying system information, | ||
+ | ~~socialite~~ | ||
+ | ~~DISCUSSION~~ |
blog/articles/general/conky_mpd.1716596328.txt.gz · Last modified: 2024/05/25 00:18 by Phil Ide