```toml
name = "Foo" # name of the playlist
[[song]] name = "Bar" # name of an individual playlist entry file = "$PATH/to/bar.mp3" # path to file, supports environment variables and '~'
[[song]] name = "Baz" file = "~/baz.wav" ```
'c': exit the program when in active playback
'n': skip one playlist forwards
'l': skip one track forwards
'j': skip one track backwards
'k': pause or start the playback
The current implementation of the controls is causing a lot of idle-wake-ups on MacOS which i'd like to minimise. Another problem is that whenever this program runs, it sets the current terminal's mode into raw which only gets turned off upon exiting. What i am trying to say is that when the program doesn't exit naturally it'll cause some problems for the current terminal.
Another thing i've recently noticed that it is impacting the cpu quite the bit and i'd also like to minimize that. If anyone knows how to do so, please do open an issua or a pull-request on quing's github.