├── CONTRIBUTING.md ├── COPYING ├── GPLv3 ├── README.md ├── auto-generated-man-pages └── sandbox-app-launcher.8 ├── changelog.upstream ├── debian ├── changelog ├── compat ├── control ├── copyright ├── make-helper-overrides.bsh ├── rules ├── sandbox-app-launcher.install ├── sandbox-app-launcher.links ├── sandbox-app-launcher.postinst ├── sandbox-app-launcher.postrm ├── source │ ├── format │ └── lintian-overrides └── watch ├── etc ├── apparmor.d │ ├── abstractions │ │ └── sandbox-app-launcher │ └── sandbox-app-launcher └── sandbox-app-launcher │ ├── chromium.conf │ ├── firefox.conf │ ├── hexchat.conf │ ├── keepassxc.conf │ ├── libreoffice.conf │ ├── mousepad.conf │ ├── onionshare.conf │ ├── qtox.conf │ ├── ristretto.conf │ ├── thunderbird.conf │ ├── torbrowser.conf │ ├── vlc.conf │ └── xpdf.conf ├── man └── sandbox-app-launcher.8.ronn ├── tests ├── W^X │ ├── w^x-mmap.c │ ├── w^x-mprotect.c │ └── w^x-shmat.c ├── exec-elf.sh └── tiocsti.c └── usr ├── bin └── sandbox-app-launcher └── share └── sandbox-app-launcher ├── autogen-seccomp ├── bwrap-wrapper ├── machine-id ├── seccomp-whitelist ├── seccomp-whitelist-wx └── wrapper-script /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/COPYING -------------------------------------------------------------------------------- /GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/GPLv3 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/README.md -------------------------------------------------------------------------------- /auto-generated-man-pages/sandbox-app-launcher.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/auto-generated-man-pages/sandbox-app-launcher.8 -------------------------------------------------------------------------------- /changelog.upstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/changelog.upstream -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/make-helper-overrides.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/debian/make-helper-overrides.bsh -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/sandbox-app-launcher.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/debian/sandbox-app-launcher.install -------------------------------------------------------------------------------- /debian/sandbox-app-launcher.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/debian/sandbox-app-launcher.links -------------------------------------------------------------------------------- /debian/sandbox-app-launcher.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/debian/sandbox-app-launcher.postinst -------------------------------------------------------------------------------- /debian/sandbox-app-launcher.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/debian/sandbox-app-launcher.postrm -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/source/lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/debian/source/lintian-overrides -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/debian/watch -------------------------------------------------------------------------------- /etc/apparmor.d/abstractions/sandbox-app-launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/etc/apparmor.d/abstractions/sandbox-app-launcher -------------------------------------------------------------------------------- /etc/apparmor.d/sandbox-app-launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/etc/apparmor.d/sandbox-app-launcher -------------------------------------------------------------------------------- /etc/sandbox-app-launcher/chromium.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/etc/sandbox-app-launcher/chromium.conf -------------------------------------------------------------------------------- /etc/sandbox-app-launcher/firefox.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/etc/sandbox-app-launcher/firefox.conf -------------------------------------------------------------------------------- /etc/sandbox-app-launcher/hexchat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/etc/sandbox-app-launcher/hexchat.conf -------------------------------------------------------------------------------- /etc/sandbox-app-launcher/keepassxc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/etc/sandbox-app-launcher/keepassxc.conf -------------------------------------------------------------------------------- /etc/sandbox-app-launcher/libreoffice.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/etc/sandbox-app-launcher/libreoffice.conf -------------------------------------------------------------------------------- /etc/sandbox-app-launcher/mousepad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/etc/sandbox-app-launcher/mousepad.conf -------------------------------------------------------------------------------- /etc/sandbox-app-launcher/onionshare.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/etc/sandbox-app-launcher/onionshare.conf -------------------------------------------------------------------------------- /etc/sandbox-app-launcher/qtox.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/etc/sandbox-app-launcher/qtox.conf -------------------------------------------------------------------------------- /etc/sandbox-app-launcher/ristretto.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/etc/sandbox-app-launcher/ristretto.conf -------------------------------------------------------------------------------- /etc/sandbox-app-launcher/thunderbird.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/etc/sandbox-app-launcher/thunderbird.conf -------------------------------------------------------------------------------- /etc/sandbox-app-launcher/torbrowser.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/etc/sandbox-app-launcher/torbrowser.conf -------------------------------------------------------------------------------- /etc/sandbox-app-launcher/vlc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/etc/sandbox-app-launcher/vlc.conf -------------------------------------------------------------------------------- /etc/sandbox-app-launcher/xpdf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/etc/sandbox-app-launcher/xpdf.conf -------------------------------------------------------------------------------- /man/sandbox-app-launcher.8.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/man/sandbox-app-launcher.8.ronn -------------------------------------------------------------------------------- /tests/W^X/w^x-mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/tests/W^X/w^x-mmap.c -------------------------------------------------------------------------------- /tests/W^X/w^x-mprotect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/tests/W^X/w^x-mprotect.c -------------------------------------------------------------------------------- /tests/W^X/w^x-shmat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/tests/W^X/w^x-shmat.c -------------------------------------------------------------------------------- /tests/exec-elf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/tests/exec-elf.sh -------------------------------------------------------------------------------- /tests/tiocsti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/tests/tiocsti.c -------------------------------------------------------------------------------- /usr/bin/sandbox-app-launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/usr/bin/sandbox-app-launcher -------------------------------------------------------------------------------- /usr/share/sandbox-app-launcher/autogen-seccomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/usr/share/sandbox-app-launcher/autogen-seccomp -------------------------------------------------------------------------------- /usr/share/sandbox-app-launcher/bwrap-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/usr/share/sandbox-app-launcher/bwrap-wrapper -------------------------------------------------------------------------------- /usr/share/sandbox-app-launcher/machine-id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/usr/share/sandbox-app-launcher/machine-id -------------------------------------------------------------------------------- /usr/share/sandbox-app-launcher/seccomp-whitelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/usr/share/sandbox-app-launcher/seccomp-whitelist -------------------------------------------------------------------------------- /usr/share/sandbox-app-launcher/seccomp-whitelist-wx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/usr/share/sandbox-app-launcher/seccomp-whitelist-wx -------------------------------------------------------------------------------- /usr/share/sandbox-app-launcher/wrapper-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madaidan/sandbox-app-launcher/HEAD/usr/share/sandbox-app-launcher/wrapper-script --------------------------------------------------------------------------------