├── .github └── workflows │ ├── build-on-commit.yml │ ├── package-check.yml │ ├── publish-release.yml │ └── template-readme.yml ├── .gitignore ├── LICENSE ├── README.md ├── apps ├── anki │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── anydesk │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── ardour │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── audacity │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── beekeeperstudio │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── bitwarden │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── blender │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── brave │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── calibre │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── celluloid │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── chrome │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── chromium │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── deluge │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── digikam │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── dolphin │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── doublecmd │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── dreamm │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── earth │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── eclipsejava │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── edge │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── ferdium │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── filezilla │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── firefox-dev │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── firefox │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── flameshot │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── flycast │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── franz │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── freecad │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── freeciv │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── freedoom │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── geany │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── gimp │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── gui │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ ├── remove │ └── root │ │ └── usr │ │ ├── bin │ │ └── proot-apps-gui │ │ └── share │ │ ├── applications │ │ └── gui-pa.desktop │ │ └── icons │ │ └── hicolor │ │ └── scalable │ │ └── apps │ │ └── gui-pa.svg ├── handbrake │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── idea │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── inkscape │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── joplin │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── kdenlive │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── keepassxc │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── kicad │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── kodi │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── krita │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── ktorrent │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── libreoffice │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── librewolf │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── lmms │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── logisim │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── lollypop │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── maltego │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── mayo │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── melonds │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── moonlight │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── mumble │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── nextcloud │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── obs │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── obsidian │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── onlyoffice │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── opera │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── parsec │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── postman │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── ppsspp │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── pycharm │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── qbittorrent │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── remmina │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── retroarch │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── rustdesk │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── ryujinx │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── shortwave │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── shotcut │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── signal │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── slack │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── spotify │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── spotube │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── sqlitebrowser │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── stremio │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── tabby │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── telegram │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── thunderbird │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── torbrowser │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── ungoogledchromium │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── vivaldi │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── vlc │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── vscode │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── vscodium │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── weather │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── webcord │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── winegui │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── wpsoffice │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── yandex │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── zen │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── zim │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── zoom │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove └── zotero │ ├── Dockerfile │ ├── entrypoint │ ├── install │ ├── package_versions.txt │ └── remove ├── base-images ├── Dockerfile.alpine-321 ├── Dockerfile.alpine-322 ├── Dockerfile.alpine-edge ├── Dockerfile.debian-bookworm ├── Dockerfile.debian-sid ├── Dockerfile.debian-trixie ├── Dockerfile.ubuntu-jammy ├── Dockerfile.ubuntu-noble └── debian-root │ └── usr │ └── bin │ └── dpkg ├── ci-scripts ├── Dockerfile.proot-builder ├── README.template ├── create-releases.sh └── update-packages.sh ├── metadata ├── img │ ├── anki.svg │ ├── anydesk.svg │ ├── ardour.svg │ ├── audacity.svg │ ├── beekeeperstudio.svg │ ├── bitwarden.svg │ ├── blender.svg │ ├── brave.svg │ ├── calibre.svg │ ├── celluloid.svg │ ├── chrome.svg │ ├── chromium.svg │ ├── deluge.svg │ ├── digikam.svg │ ├── dolphin.svg │ ├── doublecmd.svg │ ├── dreamm.svg │ ├── earth.png │ ├── eclipsejava.svg │ ├── edge.svg │ ├── ferdium.svg │ ├── filezilla.svg │ ├── firefox-dev.svg │ ├── firefox.svg │ ├── flameshot.svg │ ├── flycast.svg │ ├── franz.svg │ ├── freecad.svg │ ├── freeciv.svg │ ├── freedoom.png │ ├── geany.svg │ ├── gimp.svg │ ├── gui.svg │ ├── handbrake.svg │ ├── idea.svg │ ├── inkscape.svg │ ├── joplin.svg │ ├── kdenlive.svg │ ├── keepassxc.svg │ ├── kicad.svg │ ├── kodi.svg │ ├── krita.svg │ ├── ktorrent.svg │ ├── libreoffice.svg │ ├── librewolf.svg │ ├── lmms.svg │ ├── logisim.svg │ ├── lollypop.svg │ ├── maltego.svg │ ├── mayo.svg │ ├── melonds.svg │ ├── moonlight.svg │ ├── mumble.svg │ ├── nextcloud.svg │ ├── obs.svg │ ├── obsidian.svg │ ├── onlyoffice.svg │ ├── opera.svg │ ├── parsec.svg │ ├── postman.svg │ ├── ppsspp.svg │ ├── pycharm.svg │ ├── qbittorrent.svg │ ├── remmina.svg │ ├── retroarch.svg │ ├── rustdesk.svg │ ├── ryujinx.svg │ ├── shortwave.svg │ ├── shotcut.svg │ ├── signal.svg │ ├── slack.svg │ ├── spotify.svg │ ├── spotube.png │ ├── sqlitebrowser.svg │ ├── stremio.svg │ ├── tabby.svg │ ├── telegram.svg │ ├── thunderbird.svg │ ├── torbrowser.svg │ ├── ungoogledchromium.svg │ ├── vivaldi.svg │ ├── vlc.svg │ ├── vscode.svg │ ├── vscodium.svg │ ├── weather.svg │ ├── webcord.png │ ├── winegui.svg │ ├── wpsoffice.svg │ ├── yandex.svg │ ├── zen.svg │ ├── zim.svg │ ├── zoom.svg │ └── zotero.png └── metadata.yml ├── proot-apps └── release-notes ├── 0.1.0 ├── 0.2.0 ├── 0.3.0 └── current /.github/workflows/build-on-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/.github/workflows/build-on-commit.yml -------------------------------------------------------------------------------- /.github/workflows/package-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/.github/workflows/package-check.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/template-readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/.github/workflows/template-readme.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/README.md -------------------------------------------------------------------------------- /apps/anki/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/anki/Dockerfile -------------------------------------------------------------------------------- /apps/anki/entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Start Anki 4 | QTWEBENGINE_DISABLE_SANDBOX=1 anki "$@" 5 | -------------------------------------------------------------------------------- /apps/anki/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/anki/install -------------------------------------------------------------------------------- /apps/anki/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/anki/package_versions.txt -------------------------------------------------------------------------------- /apps/anki/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/anki/remove -------------------------------------------------------------------------------- /apps/anydesk/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/anydesk/Dockerfile -------------------------------------------------------------------------------- /apps/anydesk/entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Start AnyDesk 4 | anydesk "$@" 5 | -------------------------------------------------------------------------------- /apps/anydesk/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/anydesk/install -------------------------------------------------------------------------------- /apps/anydesk/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/anydesk/package_versions.txt -------------------------------------------------------------------------------- /apps/anydesk/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/anydesk/remove -------------------------------------------------------------------------------- /apps/ardour/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ardour/Dockerfile -------------------------------------------------------------------------------- /apps/ardour/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ardour/entrypoint -------------------------------------------------------------------------------- /apps/ardour/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ardour/install -------------------------------------------------------------------------------- /apps/ardour/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ardour/package_versions.txt -------------------------------------------------------------------------------- /apps/ardour/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ardour/remove -------------------------------------------------------------------------------- /apps/audacity/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/audacity/Dockerfile -------------------------------------------------------------------------------- /apps/audacity/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/audacity/entrypoint -------------------------------------------------------------------------------- /apps/audacity/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/audacity/install -------------------------------------------------------------------------------- /apps/audacity/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/audacity/package_versions.txt -------------------------------------------------------------------------------- /apps/audacity/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/audacity/remove -------------------------------------------------------------------------------- /apps/beekeeperstudio/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/beekeeperstudio/Dockerfile -------------------------------------------------------------------------------- /apps/beekeeperstudio/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/beekeeperstudio/entrypoint -------------------------------------------------------------------------------- /apps/beekeeperstudio/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/beekeeperstudio/install -------------------------------------------------------------------------------- /apps/beekeeperstudio/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/beekeeperstudio/package_versions.txt -------------------------------------------------------------------------------- /apps/beekeeperstudio/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/beekeeperstudio/remove -------------------------------------------------------------------------------- /apps/bitwarden/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/bitwarden/Dockerfile -------------------------------------------------------------------------------- /apps/bitwarden/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/bitwarden/entrypoint -------------------------------------------------------------------------------- /apps/bitwarden/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/bitwarden/install -------------------------------------------------------------------------------- /apps/bitwarden/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/bitwarden/package_versions.txt -------------------------------------------------------------------------------- /apps/bitwarden/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/bitwarden/remove -------------------------------------------------------------------------------- /apps/blender/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/blender/Dockerfile -------------------------------------------------------------------------------- /apps/blender/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/blender/entrypoint -------------------------------------------------------------------------------- /apps/blender/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/blender/install -------------------------------------------------------------------------------- /apps/blender/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/blender/package_versions.txt -------------------------------------------------------------------------------- /apps/blender/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/blender/remove -------------------------------------------------------------------------------- /apps/brave/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/brave/Dockerfile -------------------------------------------------------------------------------- /apps/brave/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/brave/entrypoint -------------------------------------------------------------------------------- /apps/brave/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/brave/install -------------------------------------------------------------------------------- /apps/brave/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/brave/package_versions.txt -------------------------------------------------------------------------------- /apps/brave/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/brave/remove -------------------------------------------------------------------------------- /apps/calibre/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/calibre/Dockerfile -------------------------------------------------------------------------------- /apps/calibre/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/calibre/entrypoint -------------------------------------------------------------------------------- /apps/calibre/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/calibre/install -------------------------------------------------------------------------------- /apps/calibre/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/calibre/package_versions.txt -------------------------------------------------------------------------------- /apps/calibre/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/calibre/remove -------------------------------------------------------------------------------- /apps/celluloid/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/celluloid/Dockerfile -------------------------------------------------------------------------------- /apps/celluloid/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/celluloid/entrypoint -------------------------------------------------------------------------------- /apps/celluloid/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/celluloid/install -------------------------------------------------------------------------------- /apps/celluloid/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/celluloid/package_versions.txt -------------------------------------------------------------------------------- /apps/celluloid/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/celluloid/remove -------------------------------------------------------------------------------- /apps/chrome/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/chrome/Dockerfile -------------------------------------------------------------------------------- /apps/chrome/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/chrome/entrypoint -------------------------------------------------------------------------------- /apps/chrome/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/chrome/install -------------------------------------------------------------------------------- /apps/chrome/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/chrome/package_versions.txt -------------------------------------------------------------------------------- /apps/chrome/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/chrome/remove -------------------------------------------------------------------------------- /apps/chromium/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/chromium/Dockerfile -------------------------------------------------------------------------------- /apps/chromium/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/chromium/entrypoint -------------------------------------------------------------------------------- /apps/chromium/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/chromium/install -------------------------------------------------------------------------------- /apps/chromium/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/chromium/package_versions.txt -------------------------------------------------------------------------------- /apps/chromium/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/chromium/remove -------------------------------------------------------------------------------- /apps/deluge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/deluge/Dockerfile -------------------------------------------------------------------------------- /apps/deluge/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/deluge/entrypoint -------------------------------------------------------------------------------- /apps/deluge/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/deluge/install -------------------------------------------------------------------------------- /apps/deluge/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/deluge/package_versions.txt -------------------------------------------------------------------------------- /apps/deluge/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/deluge/remove -------------------------------------------------------------------------------- /apps/digikam/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/digikam/Dockerfile -------------------------------------------------------------------------------- /apps/digikam/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/digikam/entrypoint -------------------------------------------------------------------------------- /apps/digikam/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/digikam/install -------------------------------------------------------------------------------- /apps/digikam/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/digikam/package_versions.txt -------------------------------------------------------------------------------- /apps/digikam/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/digikam/remove -------------------------------------------------------------------------------- /apps/dolphin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/dolphin/Dockerfile -------------------------------------------------------------------------------- /apps/dolphin/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/dolphin/entrypoint -------------------------------------------------------------------------------- /apps/dolphin/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/dolphin/install -------------------------------------------------------------------------------- /apps/dolphin/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/dolphin/package_versions.txt -------------------------------------------------------------------------------- /apps/dolphin/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/dolphin/remove -------------------------------------------------------------------------------- /apps/doublecmd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/doublecmd/Dockerfile -------------------------------------------------------------------------------- /apps/doublecmd/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/doublecmd/entrypoint -------------------------------------------------------------------------------- /apps/doublecmd/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/doublecmd/install -------------------------------------------------------------------------------- /apps/doublecmd/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/doublecmd/package_versions.txt -------------------------------------------------------------------------------- /apps/doublecmd/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/doublecmd/remove -------------------------------------------------------------------------------- /apps/dreamm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/dreamm/Dockerfile -------------------------------------------------------------------------------- /apps/dreamm/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/dreamm/entrypoint -------------------------------------------------------------------------------- /apps/dreamm/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/dreamm/install -------------------------------------------------------------------------------- /apps/dreamm/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/dreamm/package_versions.txt -------------------------------------------------------------------------------- /apps/dreamm/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/dreamm/remove -------------------------------------------------------------------------------- /apps/earth/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/earth/Dockerfile -------------------------------------------------------------------------------- /apps/earth/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/earth/entrypoint -------------------------------------------------------------------------------- /apps/earth/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/earth/install -------------------------------------------------------------------------------- /apps/earth/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/earth/package_versions.txt -------------------------------------------------------------------------------- /apps/earth/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/earth/remove -------------------------------------------------------------------------------- /apps/eclipsejava/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/eclipsejava/Dockerfile -------------------------------------------------------------------------------- /apps/eclipsejava/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/eclipsejava/entrypoint -------------------------------------------------------------------------------- /apps/eclipsejava/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/eclipsejava/install -------------------------------------------------------------------------------- /apps/eclipsejava/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/eclipsejava/package_versions.txt -------------------------------------------------------------------------------- /apps/eclipsejava/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/eclipsejava/remove -------------------------------------------------------------------------------- /apps/edge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/edge/Dockerfile -------------------------------------------------------------------------------- /apps/edge/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/edge/entrypoint -------------------------------------------------------------------------------- /apps/edge/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/edge/install -------------------------------------------------------------------------------- /apps/edge/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/edge/package_versions.txt -------------------------------------------------------------------------------- /apps/edge/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/edge/remove -------------------------------------------------------------------------------- /apps/ferdium/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ferdium/Dockerfile -------------------------------------------------------------------------------- /apps/ferdium/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ferdium/entrypoint -------------------------------------------------------------------------------- /apps/ferdium/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ferdium/install -------------------------------------------------------------------------------- /apps/ferdium/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ferdium/package_versions.txt -------------------------------------------------------------------------------- /apps/ferdium/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ferdium/remove -------------------------------------------------------------------------------- /apps/filezilla/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/filezilla/Dockerfile -------------------------------------------------------------------------------- /apps/filezilla/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/filezilla/entrypoint -------------------------------------------------------------------------------- /apps/filezilla/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/filezilla/install -------------------------------------------------------------------------------- /apps/filezilla/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/filezilla/package_versions.txt -------------------------------------------------------------------------------- /apps/filezilla/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/filezilla/remove -------------------------------------------------------------------------------- /apps/firefox-dev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/firefox-dev/Dockerfile -------------------------------------------------------------------------------- /apps/firefox-dev/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/firefox-dev/entrypoint -------------------------------------------------------------------------------- /apps/firefox-dev/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/firefox-dev/install -------------------------------------------------------------------------------- /apps/firefox-dev/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/firefox-dev/package_versions.txt -------------------------------------------------------------------------------- /apps/firefox-dev/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/firefox-dev/remove -------------------------------------------------------------------------------- /apps/firefox/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/firefox/Dockerfile -------------------------------------------------------------------------------- /apps/firefox/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/firefox/entrypoint -------------------------------------------------------------------------------- /apps/firefox/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/firefox/install -------------------------------------------------------------------------------- /apps/firefox/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/firefox/package_versions.txt -------------------------------------------------------------------------------- /apps/firefox/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/firefox/remove -------------------------------------------------------------------------------- /apps/flameshot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/flameshot/Dockerfile -------------------------------------------------------------------------------- /apps/flameshot/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/flameshot/entrypoint -------------------------------------------------------------------------------- /apps/flameshot/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/flameshot/install -------------------------------------------------------------------------------- /apps/flameshot/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/flameshot/package_versions.txt -------------------------------------------------------------------------------- /apps/flameshot/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/flameshot/remove -------------------------------------------------------------------------------- /apps/flycast/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/flycast/Dockerfile -------------------------------------------------------------------------------- /apps/flycast/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/flycast/entrypoint -------------------------------------------------------------------------------- /apps/flycast/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/flycast/install -------------------------------------------------------------------------------- /apps/flycast/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/flycast/package_versions.txt -------------------------------------------------------------------------------- /apps/flycast/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/flycast/remove -------------------------------------------------------------------------------- /apps/franz/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/franz/Dockerfile -------------------------------------------------------------------------------- /apps/franz/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/franz/entrypoint -------------------------------------------------------------------------------- /apps/franz/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/franz/install -------------------------------------------------------------------------------- /apps/franz/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/franz/package_versions.txt -------------------------------------------------------------------------------- /apps/franz/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/franz/remove -------------------------------------------------------------------------------- /apps/freecad/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/freecad/Dockerfile -------------------------------------------------------------------------------- /apps/freecad/entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Start FreeCAD 4 | QTWEBENGINE_DISABLE_SANDBOX=1 freecad "$@" 5 | -------------------------------------------------------------------------------- /apps/freecad/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/freecad/install -------------------------------------------------------------------------------- /apps/freecad/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/freecad/package_versions.txt -------------------------------------------------------------------------------- /apps/freecad/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/freecad/remove -------------------------------------------------------------------------------- /apps/freeciv/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/freeciv/Dockerfile -------------------------------------------------------------------------------- /apps/freeciv/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/freeciv/entrypoint -------------------------------------------------------------------------------- /apps/freeciv/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/freeciv/install -------------------------------------------------------------------------------- /apps/freeciv/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/freeciv/package_versions.txt -------------------------------------------------------------------------------- /apps/freeciv/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/freeciv/remove -------------------------------------------------------------------------------- /apps/freedoom/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/freedoom/Dockerfile -------------------------------------------------------------------------------- /apps/freedoom/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/freedoom/entrypoint -------------------------------------------------------------------------------- /apps/freedoom/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/freedoom/install -------------------------------------------------------------------------------- /apps/freedoom/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/freedoom/package_versions.txt -------------------------------------------------------------------------------- /apps/freedoom/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/freedoom/remove -------------------------------------------------------------------------------- /apps/geany/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/geany/Dockerfile -------------------------------------------------------------------------------- /apps/geany/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/geany/entrypoint -------------------------------------------------------------------------------- /apps/geany/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/geany/install -------------------------------------------------------------------------------- /apps/geany/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/geany/package_versions.txt -------------------------------------------------------------------------------- /apps/geany/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/geany/remove -------------------------------------------------------------------------------- /apps/gimp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/gimp/Dockerfile -------------------------------------------------------------------------------- /apps/gimp/entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Start GIMP 4 | gimp "$@" 5 | -------------------------------------------------------------------------------- /apps/gimp/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/gimp/install -------------------------------------------------------------------------------- /apps/gimp/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/gimp/package_versions.txt -------------------------------------------------------------------------------- /apps/gimp/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/gimp/remove -------------------------------------------------------------------------------- /apps/gui/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/gui/Dockerfile -------------------------------------------------------------------------------- /apps/gui/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/gui/entrypoint -------------------------------------------------------------------------------- /apps/gui/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/gui/install -------------------------------------------------------------------------------- /apps/gui/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/gui/package_versions.txt -------------------------------------------------------------------------------- /apps/gui/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/gui/remove -------------------------------------------------------------------------------- /apps/gui/root/usr/bin/proot-apps-gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/gui/root/usr/bin/proot-apps-gui -------------------------------------------------------------------------------- /apps/gui/root/usr/share/applications/gui-pa.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/gui/root/usr/share/applications/gui-pa.desktop -------------------------------------------------------------------------------- /apps/gui/root/usr/share/icons/hicolor/scalable/apps/gui-pa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/gui/root/usr/share/icons/hicolor/scalable/apps/gui-pa.svg -------------------------------------------------------------------------------- /apps/handbrake/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/handbrake/Dockerfile -------------------------------------------------------------------------------- /apps/handbrake/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/handbrake/entrypoint -------------------------------------------------------------------------------- /apps/handbrake/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/handbrake/install -------------------------------------------------------------------------------- /apps/handbrake/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/handbrake/package_versions.txt -------------------------------------------------------------------------------- /apps/handbrake/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/handbrake/remove -------------------------------------------------------------------------------- /apps/idea/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/idea/Dockerfile -------------------------------------------------------------------------------- /apps/idea/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/idea/entrypoint -------------------------------------------------------------------------------- /apps/idea/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/idea/install -------------------------------------------------------------------------------- /apps/idea/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/idea/package_versions.txt -------------------------------------------------------------------------------- /apps/idea/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/idea/remove -------------------------------------------------------------------------------- /apps/inkscape/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/inkscape/Dockerfile -------------------------------------------------------------------------------- /apps/inkscape/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/inkscape/entrypoint -------------------------------------------------------------------------------- /apps/inkscape/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/inkscape/install -------------------------------------------------------------------------------- /apps/inkscape/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/inkscape/package_versions.txt -------------------------------------------------------------------------------- /apps/inkscape/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/inkscape/remove -------------------------------------------------------------------------------- /apps/joplin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/joplin/Dockerfile -------------------------------------------------------------------------------- /apps/joplin/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/joplin/entrypoint -------------------------------------------------------------------------------- /apps/joplin/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/joplin/install -------------------------------------------------------------------------------- /apps/joplin/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/joplin/package_versions.txt -------------------------------------------------------------------------------- /apps/joplin/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/joplin/remove -------------------------------------------------------------------------------- /apps/kdenlive/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/kdenlive/Dockerfile -------------------------------------------------------------------------------- /apps/kdenlive/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/kdenlive/entrypoint -------------------------------------------------------------------------------- /apps/kdenlive/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/kdenlive/install -------------------------------------------------------------------------------- /apps/kdenlive/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/kdenlive/package_versions.txt -------------------------------------------------------------------------------- /apps/kdenlive/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/kdenlive/remove -------------------------------------------------------------------------------- /apps/keepassxc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/keepassxc/Dockerfile -------------------------------------------------------------------------------- /apps/keepassxc/entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Start KeePassXC 4 | dbus-launch keepassxc "$@" 5 | -------------------------------------------------------------------------------- /apps/keepassxc/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/keepassxc/install -------------------------------------------------------------------------------- /apps/keepassxc/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/keepassxc/package_versions.txt -------------------------------------------------------------------------------- /apps/keepassxc/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/keepassxc/remove -------------------------------------------------------------------------------- /apps/kicad/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/kicad/Dockerfile -------------------------------------------------------------------------------- /apps/kicad/entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Start KiCad 4 | kicad "$@" 5 | -------------------------------------------------------------------------------- /apps/kicad/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/kicad/install -------------------------------------------------------------------------------- /apps/kicad/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/kicad/package_versions.txt -------------------------------------------------------------------------------- /apps/kicad/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/kicad/remove -------------------------------------------------------------------------------- /apps/kodi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/kodi/Dockerfile -------------------------------------------------------------------------------- /apps/kodi/entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Start Kodi 4 | kodi "$@" 5 | -------------------------------------------------------------------------------- /apps/kodi/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/kodi/install -------------------------------------------------------------------------------- /apps/kodi/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/kodi/package_versions.txt -------------------------------------------------------------------------------- /apps/kodi/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/kodi/remove -------------------------------------------------------------------------------- /apps/krita/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/krita/Dockerfile -------------------------------------------------------------------------------- /apps/krita/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/krita/entrypoint -------------------------------------------------------------------------------- /apps/krita/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/krita/install -------------------------------------------------------------------------------- /apps/krita/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/krita/package_versions.txt -------------------------------------------------------------------------------- /apps/krita/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/krita/remove -------------------------------------------------------------------------------- /apps/ktorrent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ktorrent/Dockerfile -------------------------------------------------------------------------------- /apps/ktorrent/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ktorrent/entrypoint -------------------------------------------------------------------------------- /apps/ktorrent/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ktorrent/install -------------------------------------------------------------------------------- /apps/ktorrent/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ktorrent/package_versions.txt -------------------------------------------------------------------------------- /apps/ktorrent/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ktorrent/remove -------------------------------------------------------------------------------- /apps/libreoffice/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/libreoffice/Dockerfile -------------------------------------------------------------------------------- /apps/libreoffice/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/libreoffice/entrypoint -------------------------------------------------------------------------------- /apps/libreoffice/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/libreoffice/install -------------------------------------------------------------------------------- /apps/libreoffice/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/libreoffice/package_versions.txt -------------------------------------------------------------------------------- /apps/libreoffice/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/libreoffice/remove -------------------------------------------------------------------------------- /apps/librewolf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/librewolf/Dockerfile -------------------------------------------------------------------------------- /apps/librewolf/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/librewolf/entrypoint -------------------------------------------------------------------------------- /apps/librewolf/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/librewolf/install -------------------------------------------------------------------------------- /apps/librewolf/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/librewolf/package_versions.txt -------------------------------------------------------------------------------- /apps/librewolf/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/librewolf/remove -------------------------------------------------------------------------------- /apps/lmms/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/lmms/Dockerfile -------------------------------------------------------------------------------- /apps/lmms/entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Start LMMS 4 | lmms "$@" 5 | -------------------------------------------------------------------------------- /apps/lmms/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/lmms/install -------------------------------------------------------------------------------- /apps/lmms/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/lmms/package_versions.txt -------------------------------------------------------------------------------- /apps/lmms/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/lmms/remove -------------------------------------------------------------------------------- /apps/logisim/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/logisim/Dockerfile -------------------------------------------------------------------------------- /apps/logisim/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/logisim/entrypoint -------------------------------------------------------------------------------- /apps/logisim/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/logisim/install -------------------------------------------------------------------------------- /apps/logisim/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/logisim/package_versions.txt -------------------------------------------------------------------------------- /apps/logisim/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/logisim/remove -------------------------------------------------------------------------------- /apps/lollypop/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/lollypop/Dockerfile -------------------------------------------------------------------------------- /apps/lollypop/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/lollypop/entrypoint -------------------------------------------------------------------------------- /apps/lollypop/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/lollypop/install -------------------------------------------------------------------------------- /apps/lollypop/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/lollypop/package_versions.txt -------------------------------------------------------------------------------- /apps/lollypop/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/lollypop/remove -------------------------------------------------------------------------------- /apps/maltego/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/maltego/Dockerfile -------------------------------------------------------------------------------- /apps/maltego/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/maltego/entrypoint -------------------------------------------------------------------------------- /apps/maltego/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/maltego/install -------------------------------------------------------------------------------- /apps/maltego/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/maltego/package_versions.txt -------------------------------------------------------------------------------- /apps/maltego/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/maltego/remove -------------------------------------------------------------------------------- /apps/mayo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/mayo/Dockerfile -------------------------------------------------------------------------------- /apps/mayo/entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Start Mayo 4 | mayo "$@" 5 | -------------------------------------------------------------------------------- /apps/mayo/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/mayo/install -------------------------------------------------------------------------------- /apps/mayo/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/mayo/package_versions.txt -------------------------------------------------------------------------------- /apps/mayo/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/mayo/remove -------------------------------------------------------------------------------- /apps/melonds/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/melonds/Dockerfile -------------------------------------------------------------------------------- /apps/melonds/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/melonds/entrypoint -------------------------------------------------------------------------------- /apps/melonds/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/melonds/install -------------------------------------------------------------------------------- /apps/melonds/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/melonds/package_versions.txt -------------------------------------------------------------------------------- /apps/melonds/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/melonds/remove -------------------------------------------------------------------------------- /apps/moonlight/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/moonlight/Dockerfile -------------------------------------------------------------------------------- /apps/moonlight/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/moonlight/entrypoint -------------------------------------------------------------------------------- /apps/moonlight/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/moonlight/install -------------------------------------------------------------------------------- /apps/moonlight/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/moonlight/package_versions.txt -------------------------------------------------------------------------------- /apps/moonlight/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/moonlight/remove -------------------------------------------------------------------------------- /apps/mumble/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/mumble/Dockerfile -------------------------------------------------------------------------------- /apps/mumble/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/mumble/entrypoint -------------------------------------------------------------------------------- /apps/mumble/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/mumble/install -------------------------------------------------------------------------------- /apps/mumble/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/mumble/package_versions.txt -------------------------------------------------------------------------------- /apps/mumble/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/mumble/remove -------------------------------------------------------------------------------- /apps/nextcloud/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/nextcloud/Dockerfile -------------------------------------------------------------------------------- /apps/nextcloud/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/nextcloud/entrypoint -------------------------------------------------------------------------------- /apps/nextcloud/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/nextcloud/install -------------------------------------------------------------------------------- /apps/nextcloud/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/nextcloud/package_versions.txt -------------------------------------------------------------------------------- /apps/nextcloud/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/nextcloud/remove -------------------------------------------------------------------------------- /apps/obs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/obs/Dockerfile -------------------------------------------------------------------------------- /apps/obs/entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Start OBS 4 | obs "$@" 5 | -------------------------------------------------------------------------------- /apps/obs/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/obs/install -------------------------------------------------------------------------------- /apps/obs/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/obs/package_versions.txt -------------------------------------------------------------------------------- /apps/obs/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/obs/remove -------------------------------------------------------------------------------- /apps/obsidian/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/obsidian/Dockerfile -------------------------------------------------------------------------------- /apps/obsidian/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/obsidian/entrypoint -------------------------------------------------------------------------------- /apps/obsidian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/obsidian/install -------------------------------------------------------------------------------- /apps/obsidian/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/obsidian/package_versions.txt -------------------------------------------------------------------------------- /apps/obsidian/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/obsidian/remove -------------------------------------------------------------------------------- /apps/onlyoffice/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/onlyoffice/Dockerfile -------------------------------------------------------------------------------- /apps/onlyoffice/entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Start ONLYOFFICE 4 | onlyoffice-desktopeditors "$@" 5 | -------------------------------------------------------------------------------- /apps/onlyoffice/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/onlyoffice/install -------------------------------------------------------------------------------- /apps/onlyoffice/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/onlyoffice/package_versions.txt -------------------------------------------------------------------------------- /apps/onlyoffice/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/onlyoffice/remove -------------------------------------------------------------------------------- /apps/opera/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/opera/Dockerfile -------------------------------------------------------------------------------- /apps/opera/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/opera/entrypoint -------------------------------------------------------------------------------- /apps/opera/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/opera/install -------------------------------------------------------------------------------- /apps/opera/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/opera/package_versions.txt -------------------------------------------------------------------------------- /apps/opera/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/opera/remove -------------------------------------------------------------------------------- /apps/parsec/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/parsec/Dockerfile -------------------------------------------------------------------------------- /apps/parsec/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/parsec/entrypoint -------------------------------------------------------------------------------- /apps/parsec/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/parsec/install -------------------------------------------------------------------------------- /apps/parsec/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/parsec/package_versions.txt -------------------------------------------------------------------------------- /apps/parsec/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/parsec/remove -------------------------------------------------------------------------------- /apps/postman/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/postman/Dockerfile -------------------------------------------------------------------------------- /apps/postman/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/postman/entrypoint -------------------------------------------------------------------------------- /apps/postman/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/postman/install -------------------------------------------------------------------------------- /apps/postman/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/postman/package_versions.txt -------------------------------------------------------------------------------- /apps/postman/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/postman/remove -------------------------------------------------------------------------------- /apps/ppsspp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ppsspp/Dockerfile -------------------------------------------------------------------------------- /apps/ppsspp/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ppsspp/entrypoint -------------------------------------------------------------------------------- /apps/ppsspp/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ppsspp/install -------------------------------------------------------------------------------- /apps/ppsspp/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ppsspp/package_versions.txt -------------------------------------------------------------------------------- /apps/ppsspp/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ppsspp/remove -------------------------------------------------------------------------------- /apps/pycharm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/pycharm/Dockerfile -------------------------------------------------------------------------------- /apps/pycharm/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/pycharm/entrypoint -------------------------------------------------------------------------------- /apps/pycharm/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/pycharm/install -------------------------------------------------------------------------------- /apps/pycharm/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/pycharm/package_versions.txt -------------------------------------------------------------------------------- /apps/pycharm/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/pycharm/remove -------------------------------------------------------------------------------- /apps/qbittorrent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/qbittorrent/Dockerfile -------------------------------------------------------------------------------- /apps/qbittorrent/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/qbittorrent/entrypoint -------------------------------------------------------------------------------- /apps/qbittorrent/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/qbittorrent/install -------------------------------------------------------------------------------- /apps/qbittorrent/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/qbittorrent/package_versions.txt -------------------------------------------------------------------------------- /apps/qbittorrent/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/qbittorrent/remove -------------------------------------------------------------------------------- /apps/remmina/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/remmina/Dockerfile -------------------------------------------------------------------------------- /apps/remmina/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/remmina/entrypoint -------------------------------------------------------------------------------- /apps/remmina/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/remmina/install -------------------------------------------------------------------------------- /apps/remmina/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/remmina/package_versions.txt -------------------------------------------------------------------------------- /apps/remmina/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/remmina/remove -------------------------------------------------------------------------------- /apps/retroarch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/retroarch/Dockerfile -------------------------------------------------------------------------------- /apps/retroarch/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/retroarch/entrypoint -------------------------------------------------------------------------------- /apps/retroarch/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/retroarch/install -------------------------------------------------------------------------------- /apps/retroarch/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/retroarch/package_versions.txt -------------------------------------------------------------------------------- /apps/retroarch/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/retroarch/remove -------------------------------------------------------------------------------- /apps/rustdesk/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/rustdesk/Dockerfile -------------------------------------------------------------------------------- /apps/rustdesk/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/rustdesk/entrypoint -------------------------------------------------------------------------------- /apps/rustdesk/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/rustdesk/install -------------------------------------------------------------------------------- /apps/rustdesk/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/rustdesk/package_versions.txt -------------------------------------------------------------------------------- /apps/rustdesk/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/rustdesk/remove -------------------------------------------------------------------------------- /apps/ryujinx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ryujinx/Dockerfile -------------------------------------------------------------------------------- /apps/ryujinx/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ryujinx/entrypoint -------------------------------------------------------------------------------- /apps/ryujinx/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ryujinx/install -------------------------------------------------------------------------------- /apps/ryujinx/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ryujinx/package_versions.txt -------------------------------------------------------------------------------- /apps/ryujinx/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ryujinx/remove -------------------------------------------------------------------------------- /apps/shortwave/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/shortwave/Dockerfile -------------------------------------------------------------------------------- /apps/shortwave/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/shortwave/entrypoint -------------------------------------------------------------------------------- /apps/shortwave/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/shortwave/install -------------------------------------------------------------------------------- /apps/shortwave/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/shortwave/package_versions.txt -------------------------------------------------------------------------------- /apps/shortwave/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/shortwave/remove -------------------------------------------------------------------------------- /apps/shotcut/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/shotcut/Dockerfile -------------------------------------------------------------------------------- /apps/shotcut/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/shotcut/entrypoint -------------------------------------------------------------------------------- /apps/shotcut/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/shotcut/install -------------------------------------------------------------------------------- /apps/shotcut/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/shotcut/package_versions.txt -------------------------------------------------------------------------------- /apps/shotcut/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/shotcut/remove -------------------------------------------------------------------------------- /apps/signal/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/signal/Dockerfile -------------------------------------------------------------------------------- /apps/signal/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/signal/entrypoint -------------------------------------------------------------------------------- /apps/signal/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/signal/install -------------------------------------------------------------------------------- /apps/signal/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/signal/package_versions.txt -------------------------------------------------------------------------------- /apps/signal/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/signal/remove -------------------------------------------------------------------------------- /apps/slack/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/slack/Dockerfile -------------------------------------------------------------------------------- /apps/slack/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/slack/entrypoint -------------------------------------------------------------------------------- /apps/slack/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/slack/install -------------------------------------------------------------------------------- /apps/slack/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/slack/package_versions.txt -------------------------------------------------------------------------------- /apps/slack/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/slack/remove -------------------------------------------------------------------------------- /apps/spotify/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/spotify/Dockerfile -------------------------------------------------------------------------------- /apps/spotify/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/spotify/entrypoint -------------------------------------------------------------------------------- /apps/spotify/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/spotify/install -------------------------------------------------------------------------------- /apps/spotify/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/spotify/package_versions.txt -------------------------------------------------------------------------------- /apps/spotify/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/spotify/remove -------------------------------------------------------------------------------- /apps/spotube/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/spotube/Dockerfile -------------------------------------------------------------------------------- /apps/spotube/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/spotube/entrypoint -------------------------------------------------------------------------------- /apps/spotube/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/spotube/install -------------------------------------------------------------------------------- /apps/spotube/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/spotube/package_versions.txt -------------------------------------------------------------------------------- /apps/spotube/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/spotube/remove -------------------------------------------------------------------------------- /apps/sqlitebrowser/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/sqlitebrowser/Dockerfile -------------------------------------------------------------------------------- /apps/sqlitebrowser/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/sqlitebrowser/entrypoint -------------------------------------------------------------------------------- /apps/sqlitebrowser/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/sqlitebrowser/install -------------------------------------------------------------------------------- /apps/sqlitebrowser/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/sqlitebrowser/package_versions.txt -------------------------------------------------------------------------------- /apps/sqlitebrowser/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/sqlitebrowser/remove -------------------------------------------------------------------------------- /apps/stremio/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/stremio/Dockerfile -------------------------------------------------------------------------------- /apps/stremio/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/stremio/entrypoint -------------------------------------------------------------------------------- /apps/stremio/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/stremio/install -------------------------------------------------------------------------------- /apps/stremio/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/stremio/package_versions.txt -------------------------------------------------------------------------------- /apps/stremio/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/stremio/remove -------------------------------------------------------------------------------- /apps/tabby/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/tabby/Dockerfile -------------------------------------------------------------------------------- /apps/tabby/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/tabby/entrypoint -------------------------------------------------------------------------------- /apps/tabby/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/tabby/install -------------------------------------------------------------------------------- /apps/tabby/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/tabby/package_versions.txt -------------------------------------------------------------------------------- /apps/tabby/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/tabby/remove -------------------------------------------------------------------------------- /apps/telegram/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/telegram/Dockerfile -------------------------------------------------------------------------------- /apps/telegram/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/telegram/entrypoint -------------------------------------------------------------------------------- /apps/telegram/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/telegram/install -------------------------------------------------------------------------------- /apps/telegram/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/telegram/package_versions.txt -------------------------------------------------------------------------------- /apps/telegram/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/telegram/remove -------------------------------------------------------------------------------- /apps/thunderbird/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/thunderbird/Dockerfile -------------------------------------------------------------------------------- /apps/thunderbird/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/thunderbird/entrypoint -------------------------------------------------------------------------------- /apps/thunderbird/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/thunderbird/install -------------------------------------------------------------------------------- /apps/thunderbird/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/thunderbird/package_versions.txt -------------------------------------------------------------------------------- /apps/thunderbird/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/thunderbird/remove -------------------------------------------------------------------------------- /apps/torbrowser/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/torbrowser/Dockerfile -------------------------------------------------------------------------------- /apps/torbrowser/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/torbrowser/entrypoint -------------------------------------------------------------------------------- /apps/torbrowser/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/torbrowser/install -------------------------------------------------------------------------------- /apps/torbrowser/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/torbrowser/package_versions.txt -------------------------------------------------------------------------------- /apps/torbrowser/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/torbrowser/remove -------------------------------------------------------------------------------- /apps/ungoogledchromium/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ungoogledchromium/Dockerfile -------------------------------------------------------------------------------- /apps/ungoogledchromium/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ungoogledchromium/entrypoint -------------------------------------------------------------------------------- /apps/ungoogledchromium/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ungoogledchromium/install -------------------------------------------------------------------------------- /apps/ungoogledchromium/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ungoogledchromium/package_versions.txt -------------------------------------------------------------------------------- /apps/ungoogledchromium/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/ungoogledchromium/remove -------------------------------------------------------------------------------- /apps/vivaldi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/vivaldi/Dockerfile -------------------------------------------------------------------------------- /apps/vivaldi/entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Start opera 4 | vivaldi --no-sandbox --test-type "$@" 5 | -------------------------------------------------------------------------------- /apps/vivaldi/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/vivaldi/install -------------------------------------------------------------------------------- /apps/vivaldi/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/vivaldi/package_versions.txt -------------------------------------------------------------------------------- /apps/vivaldi/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/vivaldi/remove -------------------------------------------------------------------------------- /apps/vlc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/vlc/Dockerfile -------------------------------------------------------------------------------- /apps/vlc/entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Start VLC 4 | vlc "$@" 5 | -------------------------------------------------------------------------------- /apps/vlc/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/vlc/install -------------------------------------------------------------------------------- /apps/vlc/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/vlc/package_versions.txt -------------------------------------------------------------------------------- /apps/vlc/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/vlc/remove -------------------------------------------------------------------------------- /apps/vscode/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/vscode/Dockerfile -------------------------------------------------------------------------------- /apps/vscode/entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Start VSCode 4 | code --no-sandbox "$@" 5 | -------------------------------------------------------------------------------- /apps/vscode/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/vscode/install -------------------------------------------------------------------------------- /apps/vscode/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/vscode/package_versions.txt -------------------------------------------------------------------------------- /apps/vscode/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/vscode/remove -------------------------------------------------------------------------------- /apps/vscodium/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/vscodium/Dockerfile -------------------------------------------------------------------------------- /apps/vscodium/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/vscodium/entrypoint -------------------------------------------------------------------------------- /apps/vscodium/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/vscodium/install -------------------------------------------------------------------------------- /apps/vscodium/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/vscodium/package_versions.txt -------------------------------------------------------------------------------- /apps/vscodium/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/vscodium/remove -------------------------------------------------------------------------------- /apps/weather/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/weather/Dockerfile -------------------------------------------------------------------------------- /apps/weather/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/weather/entrypoint -------------------------------------------------------------------------------- /apps/weather/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/weather/install -------------------------------------------------------------------------------- /apps/weather/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/weather/package_versions.txt -------------------------------------------------------------------------------- /apps/weather/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/weather/remove -------------------------------------------------------------------------------- /apps/webcord/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/webcord/Dockerfile -------------------------------------------------------------------------------- /apps/webcord/entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Start WebCord 4 | webcord --no-sandbox "$@" 5 | -------------------------------------------------------------------------------- /apps/webcord/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/webcord/install -------------------------------------------------------------------------------- /apps/webcord/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/webcord/package_versions.txt -------------------------------------------------------------------------------- /apps/webcord/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/webcord/remove -------------------------------------------------------------------------------- /apps/winegui/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/winegui/Dockerfile -------------------------------------------------------------------------------- /apps/winegui/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/winegui/entrypoint -------------------------------------------------------------------------------- /apps/winegui/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/winegui/install -------------------------------------------------------------------------------- /apps/winegui/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/winegui/package_versions.txt -------------------------------------------------------------------------------- /apps/winegui/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/winegui/remove -------------------------------------------------------------------------------- /apps/wpsoffice/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/wpsoffice/Dockerfile -------------------------------------------------------------------------------- /apps/wpsoffice/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/wpsoffice/entrypoint -------------------------------------------------------------------------------- /apps/wpsoffice/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/wpsoffice/install -------------------------------------------------------------------------------- /apps/wpsoffice/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/wpsoffice/package_versions.txt -------------------------------------------------------------------------------- /apps/wpsoffice/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/wpsoffice/remove -------------------------------------------------------------------------------- /apps/yandex/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/yandex/Dockerfile -------------------------------------------------------------------------------- /apps/yandex/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/yandex/entrypoint -------------------------------------------------------------------------------- /apps/yandex/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/yandex/install -------------------------------------------------------------------------------- /apps/yandex/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/yandex/package_versions.txt -------------------------------------------------------------------------------- /apps/yandex/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/yandex/remove -------------------------------------------------------------------------------- /apps/zen/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/zen/Dockerfile -------------------------------------------------------------------------------- /apps/zen/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/zen/entrypoint -------------------------------------------------------------------------------- /apps/zen/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/zen/install -------------------------------------------------------------------------------- /apps/zen/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/zen/package_versions.txt -------------------------------------------------------------------------------- /apps/zen/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/zen/remove -------------------------------------------------------------------------------- /apps/zim/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/zim/Dockerfile -------------------------------------------------------------------------------- /apps/zim/entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Start Zim 4 | zim "$@" 5 | -------------------------------------------------------------------------------- /apps/zim/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/zim/install -------------------------------------------------------------------------------- /apps/zim/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/zim/package_versions.txt -------------------------------------------------------------------------------- /apps/zim/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/zim/remove -------------------------------------------------------------------------------- /apps/zoom/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/zoom/Dockerfile -------------------------------------------------------------------------------- /apps/zoom/entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Start Zoom 4 | zoom --no-sandbox "$@" 5 | -------------------------------------------------------------------------------- /apps/zoom/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/zoom/install -------------------------------------------------------------------------------- /apps/zoom/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/zoom/package_versions.txt -------------------------------------------------------------------------------- /apps/zoom/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/zoom/remove -------------------------------------------------------------------------------- /apps/zotero/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/zotero/Dockerfile -------------------------------------------------------------------------------- /apps/zotero/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/zotero/entrypoint -------------------------------------------------------------------------------- /apps/zotero/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/zotero/install -------------------------------------------------------------------------------- /apps/zotero/package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/zotero/package_versions.txt -------------------------------------------------------------------------------- /apps/zotero/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/apps/zotero/remove -------------------------------------------------------------------------------- /base-images/Dockerfile.alpine-321: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/base-images/Dockerfile.alpine-321 -------------------------------------------------------------------------------- /base-images/Dockerfile.alpine-322: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/base-images/Dockerfile.alpine-322 -------------------------------------------------------------------------------- /base-images/Dockerfile.alpine-edge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/base-images/Dockerfile.alpine-edge -------------------------------------------------------------------------------- /base-images/Dockerfile.debian-bookworm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/base-images/Dockerfile.debian-bookworm -------------------------------------------------------------------------------- /base-images/Dockerfile.debian-sid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/base-images/Dockerfile.debian-sid -------------------------------------------------------------------------------- /base-images/Dockerfile.debian-trixie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/base-images/Dockerfile.debian-trixie -------------------------------------------------------------------------------- /base-images/Dockerfile.ubuntu-jammy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/base-images/Dockerfile.ubuntu-jammy -------------------------------------------------------------------------------- /base-images/Dockerfile.ubuntu-noble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/base-images/Dockerfile.ubuntu-noble -------------------------------------------------------------------------------- /base-images/debian-root/usr/bin/dpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/base-images/debian-root/usr/bin/dpkg -------------------------------------------------------------------------------- /ci-scripts/Dockerfile.proot-builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/ci-scripts/Dockerfile.proot-builder -------------------------------------------------------------------------------- /ci-scripts/README.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/ci-scripts/README.template -------------------------------------------------------------------------------- /ci-scripts/create-releases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/ci-scripts/create-releases.sh -------------------------------------------------------------------------------- /ci-scripts/update-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/ci-scripts/update-packages.sh -------------------------------------------------------------------------------- /metadata/img/anki.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/anki.svg -------------------------------------------------------------------------------- /metadata/img/anydesk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/anydesk.svg -------------------------------------------------------------------------------- /metadata/img/ardour.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/ardour.svg -------------------------------------------------------------------------------- /metadata/img/audacity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/audacity.svg -------------------------------------------------------------------------------- /metadata/img/beekeeperstudio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/beekeeperstudio.svg -------------------------------------------------------------------------------- /metadata/img/bitwarden.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/bitwarden.svg -------------------------------------------------------------------------------- /metadata/img/blender.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/blender.svg -------------------------------------------------------------------------------- /metadata/img/brave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/brave.svg -------------------------------------------------------------------------------- /metadata/img/calibre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/calibre.svg -------------------------------------------------------------------------------- /metadata/img/celluloid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/celluloid.svg -------------------------------------------------------------------------------- /metadata/img/chrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/chrome.svg -------------------------------------------------------------------------------- /metadata/img/chromium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/chromium.svg -------------------------------------------------------------------------------- /metadata/img/deluge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/deluge.svg -------------------------------------------------------------------------------- /metadata/img/digikam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/digikam.svg -------------------------------------------------------------------------------- /metadata/img/dolphin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/dolphin.svg -------------------------------------------------------------------------------- /metadata/img/doublecmd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/doublecmd.svg -------------------------------------------------------------------------------- /metadata/img/dreamm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/dreamm.svg -------------------------------------------------------------------------------- /metadata/img/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/earth.png -------------------------------------------------------------------------------- /metadata/img/eclipsejava.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/eclipsejava.svg -------------------------------------------------------------------------------- /metadata/img/edge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/edge.svg -------------------------------------------------------------------------------- /metadata/img/ferdium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/ferdium.svg -------------------------------------------------------------------------------- /metadata/img/filezilla.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/filezilla.svg -------------------------------------------------------------------------------- /metadata/img/firefox-dev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/firefox-dev.svg -------------------------------------------------------------------------------- /metadata/img/firefox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/firefox.svg -------------------------------------------------------------------------------- /metadata/img/flameshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/flameshot.svg -------------------------------------------------------------------------------- /metadata/img/flycast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/flycast.svg -------------------------------------------------------------------------------- /metadata/img/franz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/franz.svg -------------------------------------------------------------------------------- /metadata/img/freecad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/freecad.svg -------------------------------------------------------------------------------- /metadata/img/freeciv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/freeciv.svg -------------------------------------------------------------------------------- /metadata/img/freedoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/freedoom.png -------------------------------------------------------------------------------- /metadata/img/geany.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/geany.svg -------------------------------------------------------------------------------- /metadata/img/gimp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/gimp.svg -------------------------------------------------------------------------------- /metadata/img/gui.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/gui.svg -------------------------------------------------------------------------------- /metadata/img/handbrake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/handbrake.svg -------------------------------------------------------------------------------- /metadata/img/idea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/idea.svg -------------------------------------------------------------------------------- /metadata/img/inkscape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/inkscape.svg -------------------------------------------------------------------------------- /metadata/img/joplin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/joplin.svg -------------------------------------------------------------------------------- /metadata/img/kdenlive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/kdenlive.svg -------------------------------------------------------------------------------- /metadata/img/keepassxc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/keepassxc.svg -------------------------------------------------------------------------------- /metadata/img/kicad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/kicad.svg -------------------------------------------------------------------------------- /metadata/img/kodi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/kodi.svg -------------------------------------------------------------------------------- /metadata/img/krita.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/krita.svg -------------------------------------------------------------------------------- /metadata/img/ktorrent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/ktorrent.svg -------------------------------------------------------------------------------- /metadata/img/libreoffice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/libreoffice.svg -------------------------------------------------------------------------------- /metadata/img/librewolf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/librewolf.svg -------------------------------------------------------------------------------- /metadata/img/lmms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/lmms.svg -------------------------------------------------------------------------------- /metadata/img/logisim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/logisim.svg -------------------------------------------------------------------------------- /metadata/img/lollypop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/lollypop.svg -------------------------------------------------------------------------------- /metadata/img/maltego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/maltego.svg -------------------------------------------------------------------------------- /metadata/img/mayo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/mayo.svg -------------------------------------------------------------------------------- /metadata/img/melonds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/melonds.svg -------------------------------------------------------------------------------- /metadata/img/moonlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/moonlight.svg -------------------------------------------------------------------------------- /metadata/img/mumble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/mumble.svg -------------------------------------------------------------------------------- /metadata/img/nextcloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/nextcloud.svg -------------------------------------------------------------------------------- /metadata/img/obs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/obs.svg -------------------------------------------------------------------------------- /metadata/img/obsidian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/obsidian.svg -------------------------------------------------------------------------------- /metadata/img/onlyoffice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/onlyoffice.svg -------------------------------------------------------------------------------- /metadata/img/opera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/opera.svg -------------------------------------------------------------------------------- /metadata/img/parsec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/parsec.svg -------------------------------------------------------------------------------- /metadata/img/postman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/postman.svg -------------------------------------------------------------------------------- /metadata/img/ppsspp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/ppsspp.svg -------------------------------------------------------------------------------- /metadata/img/pycharm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/pycharm.svg -------------------------------------------------------------------------------- /metadata/img/qbittorrent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/qbittorrent.svg -------------------------------------------------------------------------------- /metadata/img/remmina.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/remmina.svg -------------------------------------------------------------------------------- /metadata/img/retroarch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/retroarch.svg -------------------------------------------------------------------------------- /metadata/img/rustdesk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/rustdesk.svg -------------------------------------------------------------------------------- /metadata/img/ryujinx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/ryujinx.svg -------------------------------------------------------------------------------- /metadata/img/shortwave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/shortwave.svg -------------------------------------------------------------------------------- /metadata/img/shotcut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/shotcut.svg -------------------------------------------------------------------------------- /metadata/img/signal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/signal.svg -------------------------------------------------------------------------------- /metadata/img/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/slack.svg -------------------------------------------------------------------------------- /metadata/img/spotify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/spotify.svg -------------------------------------------------------------------------------- /metadata/img/spotube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/spotube.png -------------------------------------------------------------------------------- /metadata/img/sqlitebrowser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/sqlitebrowser.svg -------------------------------------------------------------------------------- /metadata/img/stremio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/stremio.svg -------------------------------------------------------------------------------- /metadata/img/tabby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/tabby.svg -------------------------------------------------------------------------------- /metadata/img/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/telegram.svg -------------------------------------------------------------------------------- /metadata/img/thunderbird.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/thunderbird.svg -------------------------------------------------------------------------------- /metadata/img/torbrowser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/torbrowser.svg -------------------------------------------------------------------------------- /metadata/img/ungoogledchromium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/ungoogledchromium.svg -------------------------------------------------------------------------------- /metadata/img/vivaldi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/vivaldi.svg -------------------------------------------------------------------------------- /metadata/img/vlc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/vlc.svg -------------------------------------------------------------------------------- /metadata/img/vscode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/vscode.svg -------------------------------------------------------------------------------- /metadata/img/vscodium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/vscodium.svg -------------------------------------------------------------------------------- /metadata/img/weather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/weather.svg -------------------------------------------------------------------------------- /metadata/img/webcord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/webcord.png -------------------------------------------------------------------------------- /metadata/img/winegui.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/winegui.svg -------------------------------------------------------------------------------- /metadata/img/wpsoffice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/wpsoffice.svg -------------------------------------------------------------------------------- /metadata/img/yandex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/yandex.svg -------------------------------------------------------------------------------- /metadata/img/zen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/zen.svg -------------------------------------------------------------------------------- /metadata/img/zim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/zim.svg -------------------------------------------------------------------------------- /metadata/img/zoom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/zoom.svg -------------------------------------------------------------------------------- /metadata/img/zotero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/img/zotero.png -------------------------------------------------------------------------------- /metadata/metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/metadata/metadata.yml -------------------------------------------------------------------------------- /proot-apps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/proot-apps -------------------------------------------------------------------------------- /release-notes/0.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/release-notes/0.1.0 -------------------------------------------------------------------------------- /release-notes/0.2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/release-notes/0.2.0 -------------------------------------------------------------------------------- /release-notes/0.3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/release-notes/0.3.0 -------------------------------------------------------------------------------- /release-notes/current: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/proot-apps/HEAD/release-notes/current --------------------------------------------------------------------------------