Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

update devcontainer

+11 -2
+11 -2
.devcontainer/Dockerfile
··· 1 1 FROM rust:1.81-bookworm 2 2 3 - RUN apt-get update && apt-get install -y build-essential \ 3 + RUN apt-get update && apt-get install -y apt-utils && \ 4 + apt-get install -y build-essential \ 4 5 libusb-dev \ 5 6 libsdl1.2-dev \ 6 7 libfreetype6-dev \ ··· 9 10 zip \ 10 11 unzip \ 11 12 git \ 12 - protobuf-compiler 13 + protobuf-compiler \ 14 + locales \ 15 + vim 16 + 17 + RUN locale-gen en_US.UTF-8 13 18 14 19 RUN curl -Ssf https://pkgx.sh | sh 15 20 ··· 24 29 RUN curl --proto '=https' --tlsv1.2 -sSf https://setup.atuin.sh | bash 25 30 26 31 ENV BASH_ENV=/root/.bashrc 32 + 33 + ENV LANG=en_US.UTF-8 34 + 35 + ENV LANGUAGE=en_US.UTF-8