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.

Merge pull request #14 from tsirysndr/setup-devcontainer

configure devcontainer

authored by

Tsiry Sandratraina and committed by
GitHub
e5b5dca1 afc4bc40

+35
+26
.devcontainer/Dockerfile
··· 1 + FROM rust:1.81-bookworm 2 + 3 + RUN apt-get update && apt-get install -y build-essential \ 4 + libusb-dev \ 5 + libsdl1.2-dev \ 6 + libfreetype6-dev \ 7 + libunwind-dev \ 8 + curl \ 9 + zip \ 10 + unzip \ 11 + git \ 12 + protobuf-compiler 13 + 14 + RUN curl -Ssf https://pkgx.sh | sh 15 + 16 + RUN pkgx install zig@0.13.0 17 + 18 + RUN curl -s https://ohmyposh.dev/install.sh | bash -s -- -d /usr/local/bin 19 + 20 + RUN git clone https://github.com/JanDeDobbeleer/oh-my-posh.git .oh-my-posh 21 + 22 + RUN echo 'eval "$(oh-my-posh init bash --config ~/.cache/oh-my-posh/themes/tokyonight_storm.omp.json)"' >> /root/.bashrc 23 + 24 + RUN curl --proto '=https' --tlsv1.2 -sSf https://setup.atuin.sh | bash 25 + 26 + ENV BASH_ENV=/root/.bashrc
+9
.devcontainer/devcontainer.json
··· 1 + { 2 + "build": { 3 + // Path is relative to the devcontainer.json file. 4 + "dockerfile": "Dockerfile" 5 + }, 6 + "features": { 7 + "ghcr.io/devcontainers/features/github-cli:1": {} 8 + } 9 + }