gitextract_j5tkd942/ ├── .dockerignore ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ ├── dependabot.yml │ └── workflows/ │ └── main.yml ├── .gitignore ├── .gitmodules ├── .idea/ │ └── codeStyles/ │ ├── Project.xml │ └── codeStyleConfig.xml ├── BUILD.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── ci/ │ ├── .dockerignore │ ├── Dockerfile │ ├── build-docker-image.sh │ ├── build-in-docker.sh │ ├── build.sh │ └── install-deps.sh ├── cmake/ │ ├── install.cmake │ ├── modules/ │ │ └── FindINotify.cmake │ ├── reproducible_builds.cmake │ ├── scripts.cmake │ ├── toolchains/ │ │ └── i386-linux-gnu.cmake │ └── versioning.cmake ├── i18n/ │ ├── CMakeLists.txt │ ├── auto-translate.py │ ├── desktopfiles.ast.json │ ├── desktopfiles.cs.json │ ├── desktopfiles.de.json │ ├── desktopfiles.en.json │ ├── desktopfiles.es.json │ ├── desktopfiles.fr.json │ ├── desktopfiles.it.json │ ├── desktopfiles.ko.json │ ├── desktopfiles.nb_NO.json │ ├── desktopfiles.nl.json │ ├── desktopfiles.pl.json │ ├── desktopfiles.pt.json │ ├── desktopfiles.pt_BR.json │ ├── desktopfiles.ru.json │ ├── desktopfiles.tr.json │ ├── desktopfiles.zh_Hans.json │ ├── ui.ast.ts │ ├── ui.cs.ts │ ├── ui.de.ts │ ├── ui.en.ts │ ├── ui.es.ts │ ├── ui.fr.ts │ ├── ui.it.ts │ ├── ui.nb_NO.ts │ ├── ui.nl.ts │ ├── ui.pl.ts │ ├── ui.pt.ts │ ├── ui.pt_BR.ts │ ├── ui.pt_PT.ts │ ├── ui.ru.ts │ ├── ui.tr.ts │ └── ui.zh_Hans.ts ├── resources/ │ ├── AppImageLauncher.1.in │ ├── CMakeLists.txt │ ├── ail-cli.desktop │ ├── appimagelauncher-lite-AppRun.sh │ ├── appimagelauncher-lite-installer-common.sh │ ├── appimagelauncher-lite.desktop │ ├── appimagelauncher.desktop │ ├── appimagelauncherd.desktop │ ├── appimagelauncherd.service.in │ ├── appimagelaunchersettings.desktop │ ├── binfmt.d/ │ │ └── appimagelauncher.conf.in │ ├── fallback-icons/ │ │ └── .gitignore │ ├── icons/ │ │ └── generate-icons.sh │ ├── install-scripts/ │ │ ├── post-install.in │ │ └── post-uninstall.in │ └── mime/ │ └── packages/ │ └── appimage.xml └── src/ ├── CMakeLists.txt ├── binfmt-bypass/ │ ├── CMakeLists.txt │ ├── bypass_main.cpp │ ├── elf.cpp │ ├── elf.h │ ├── fix-preload-library.sh │ ├── interpreter_main.cpp │ ├── lib.cpp │ ├── lib.h │ ├── logging.h │ └── preload.c ├── cli/ │ ├── CMakeLists.txt │ ├── cli_main.cpp │ ├── commands/ │ │ ├── CMakeLists.txt │ │ ├── Command.h │ │ ├── CommandFactory.cpp │ │ ├── CommandFactory.h │ │ ├── IntegrateCommand.cpp │ │ ├── IntegrateCommand.h │ │ ├── UnintegrateCommand.cpp │ │ ├── UnintegrateCommand.h │ │ ├── WouldIntegrateCommand.cpp │ │ ├── WouldIntegrateCommand.h │ │ └── exceptions.h │ └── logging/ │ ├── CMakeLists.txt │ └── logging.h ├── daemon/ │ ├── CMakeLists.txt │ ├── daemon.cpp │ ├── daemon.h │ ├── main.cpp │ ├── worker.cpp │ └── worker.h ├── fswatcher/ │ ├── CMakeLists.txt │ ├── filesystemwatcher.cpp │ └── filesystemwatcher.h ├── i18n/ │ ├── CMakeLists.txt │ ├── translationmanager.cpp │ └── translationmanager.h ├── shared/ │ ├── CMakeLists.txt │ ├── shared.cpp │ ├── shared.h │ ├── types.cpp │ └── types.h ├── trashbin/ │ ├── CMakeLists.txt │ ├── trashbin.cpp │ └── trashbin.h └── ui/ ├── CMakeLists.txt ├── first-run.cpp ├── first-run.h ├── first-run.ui ├── integration_dialog.cpp ├── integration_dialog.h ├── integration_dialog.ui ├── main.cpp ├── remove.ui ├── remove_main.cpp ├── resources.qrc ├── settings_dialog.cpp ├── settings_dialog.h ├── settings_dialog.ui ├── settings_main.cpp ├── update.ui ├── update_main.cpp └── update_spinner.qml