gitextract_xp9wzt84/ ├── .clang-format ├── .codacy.yml ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── 1-bug-report.yml │ │ └── 2-feature-request.yml │ ├── dependabot.yml │ ├── release-drafter.yml │ └── workflows/ │ ├── build.yml │ ├── debug.yml │ ├── draft_release.yml │ ├── format.yml │ ├── qt_update.yml │ └── release.yml ├── .gitignore ├── CMakeLists.txt ├── CMakePresets.json ├── INSTALL.md ├── LICENSE.txt ├── README.md ├── cmake/ │ ├── CPackLinux.cmake │ └── FindZLIB.cmake ├── doc/ │ ├── RELEASE.md │ └── screenshot.json ├── icons/ │ └── Tango/ │ ├── index.theme │ └── scalable/ │ ├── places/ │ │ └── folder.icon │ └── status/ │ ├── folder-drag-accept.icon │ └── folder-visiting.icon ├── icons.qrc ├── include/ │ ├── bootentry.h │ ├── bootentry.h.j2 │ ├── bootentrydelegate.h │ ├── bootentryform.h │ ├── bootentrylistmodel.h │ ├── bootentrylistview.h │ ├── bootentrywidget.h │ ├── commands.h │ ├── compat.h │ ├── devicepathproxymodel.h │ ├── devicepathview.h │ ├── disableundoredo.h │ ├── driveinfo.h │ ├── efiboot.h │ ├── efiboot.h.j2 │ ├── efibootdata.h │ ├── efibooteditor.h │ ├── efibooteditorcli.h │ ├── efikeysequence.h │ ├── efikeysequenceedit.h │ ├── efivar-lite/ │ │ ├── device-paths.h │ │ ├── device-paths.h.j2 │ │ ├── device-paths.yml │ │ ├── efivar-lite.h │ │ ├── key-option.h │ │ └── load-option.h │ ├── filepathdelegate.h │ ├── filepathdialog.h │ ├── filepathdialog.h.j2 │ ├── hotkey.h │ ├── hotkeydelegate.h │ ├── hotkeylistmodel.h │ ├── hotkeysdialog.h │ ├── hotkeysview.h │ ├── qindicatorwidget.h │ ├── qlabelwrapped.h │ ├── qresizabletabwidget.h │ └── qwidgetitemdelegate.h ├── misc/ │ ├── .gitignore │ ├── EFIBootEditor.desktop │ ├── EFIBootEditor.icns │ ├── EFIBootEditor.metainfo.xml │ ├── WIX.template.in │ ├── codegen/ │ │ ├── gen_efidp.py │ │ ├── pyproject.toml │ │ └── spec_parse.py │ ├── efibooteditor.spec │ ├── org.x.efibooteditor.policy │ ├── qt-updater/ │ │ ├── main.py │ │ └── pyproject.toml │ └── run-efibooteditor ├── src/ │ ├── bootentry.cpp │ ├── bootentry.cpp.j2 │ ├── bootentrydelegate.cpp │ ├── bootentryform.cpp │ ├── bootentrylistmodel.cpp │ ├── bootentrylistview.cpp │ ├── bootentrywidget.cpp │ ├── commands.cpp │ ├── devicepathproxymodel.cpp │ ├── devicepathview.cpp │ ├── driveinfo.cpp │ ├── driveinfo.darwin.cpp │ ├── driveinfo.linux.cpp │ ├── driveinfo.win32.cpp │ ├── efibootdata.cpp │ ├── efibooteditor.cpp │ ├── efibooteditorcli.cpp │ ├── efikeysequence.cpp │ ├── efikeysequenceedit.cpp │ ├── efivar-lite.c │ ├── efivar-lite.common.h │ ├── efivar-lite.darwin.c │ ├── efivar-lite.linux.c │ ├── efivar-lite.win32.c │ ├── filepathdelegate.cpp │ ├── filepathdialog.cpp │ ├── filepathdialog.cpp.j2 │ ├── form/ │ │ ├── bootentryform.ui │ │ ├── bootentrywidget.ui │ │ ├── efibooteditor.ui │ │ ├── filepathdialog.ui │ │ ├── filepathdialog.ui.j2 │ │ └── hotkeysdialog.ui │ ├── hotkey.cpp │ ├── hotkeydelegate.cpp │ ├── hotkeylistmodel.cpp │ ├── hotkeysdialog.cpp │ ├── hotkeysview.cpp │ └── main.cpp ├── tests/ │ ├── CMakeLists.txt │ └── testefibootdata.cpp └── translations/ ├── efibooteditor_ar.ts ├── efibooteditor_cs.ts ├── efibooteditor_de.ts ├── efibooteditor_en.ts ├── efibooteditor_es.ts ├── efibooteditor_fi.ts ├── efibooteditor_fr.ts ├── efibooteditor_hu.ts ├── efibooteditor_it.ts ├── efibooteditor_ja.ts ├── efibooteditor_ko.ts ├── efibooteditor_nb_NO.ts ├── efibooteditor_pl.ts ├── efibooteditor_pt_BR.ts ├── efibooteditor_ru.ts ├── efibooteditor_sk.ts ├── efibooteditor_sl.ts ├── efibooteditor_sv.ts ├── efibooteditor_ta.ts ├── efibooteditor_tr.ts ├── efibooteditor_uk.ts ├── efibooteditor_vi.ts ├── efibooteditor_zh_Hans.ts └── efibooteditor_zh_Hant.ts