commit bd20a3f

Sofya Prokopenko  ·  2026-06-08 22:24:00 +0000 UTC
parent ca45ac3
added a README
1 files changed,  +29, -0
+29, -0
 1@@ -0,0 +1,29 @@
 2+# rudis yayy
 3+(description taken from the website)
 4+a pretty simple and minimal (if we don't count the miniaudio lib) music player for the cli, written in C
 5+i've personally been using it for a day since it was at a point where it could actually be used by someone (date of posting since that time: exactly 1 day || 2026-06-09)
 6+
 7+## usage:
 8+```sh
 9+rudis [command]
10+```
11+### available commands:
12+```sh
13+cue <index> # cue the playlist with matching index. use 'list' to show available playlists
14+list        # lists available playlists from your config.h
15+next        # skip to next track
16+pause       # pause current track
17+play        # resume paused track
18+previous    # return to previous track
19+status      # show current playback status
20+toggle      # toggle play/pause
21+```
22+rudis can also be controlled using signals.
23+right now they're hardcoded, but i will most likely change that in the next release.
24+## available signals:
25+```
26+USR1  <-- previous track
27+USR2  <-- next track
28+RTMIN <-- toggle play/pause
29+INT   <-- quit the daemon
30+```