Burgertunes: Privacy-respecting YouTube Music frontend with no ads or telemetry!

This page summarizes the projects mentioned and recommended in the original post on /r/linux

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
  • burgertunes

    Discontinued Privacy-respecting YouTube Music frontend with no ads or telemetry!

  • git clone --depth=1 -j4 https://github.com/maaa101/burgertunes cd burgertunes # generate modules from pip requirements flatpak-pip-generator --requirements-file=requirements.txt --output pypi-dependencies # create the manifest with vim or whatever editor you like # these are the contents of the file org.maaa101.Burgertunes.yaml app-id: org.maaa101.Burgertunes runtime: org.freedesktop.Platform runtime-version: 22.08 sdk: org.freedesktop.Sdk command: /app/bin/burgertunes modules: - pypi-dependencies.json - name: org.maaa101.Burgertunes buildsystem: simple build-commands: # copy everything to /app/share/burgertunes - install -dm755 /app/share/burgertunes - install -Dm755 main /app/share/burgertunes - install -Dm755 config.ini /app/share/burgertunes # it assumes the static/cache directory exists... - install -dm755 /app/share/burgertunes/static/cache - install -dm755 /app/share/burgertunes/templates - cp -a static/** /app/share/burgertunes/static - cp -a templates/** /app/share/burgertunes/templates # the launcher script will copy it to $XDG_DATA_HOME/burgertunes # and run it from there so it can delete and write static/cache etc - install -Dm755 burgertunes /app/bin/burgertunes sources: - type: git url: https://github.com/maaa101/burgertunes.git branch: main - type: file path: config.ini - type: dir path: templates - type: dir path: static - type: file path: burgertunes finish-args: - --share=network - --filesystem=xdg-data/burgertunes:create # create the wrapperscript, these are the contents of the file burgertunes #!/bin/sh if [ ! -e "${XDG_DATA_HOME}/burgertunes/main" ] ; then cp -a /app/share/burgertunes/** "${XDG_DATA_HOME}/burgertunes" fi cd "${XDG_DATA_HOME}/burgertunes" mkdir -p static/cache python main # build the flatpak flatpak-builder -v --force-clean --repo=repo build org.maaa101.Burgertunes.yaml # export the flatpak to a file for copying flatpak build-bundle repo org.maaa101.Burgertunes.flatpak org.maaa101.Burgertunes # copy the flatpak to wherever (e.g., steamdeck) and install locally flatpak install --user -y org.maaa101.Burgertunes.flatpak # now run it flatpak run org.maaa101.Burgertunes

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts