├── .clang-format ├── .gersemirc ├── .git-blame-ignore-revs ├── .reuse └── dep5 ├── 3rdparty ├── kdsingleapplication │ ├── CMakeLists.txt │ ├── LICENSE.MIT.txt │ ├── kdsingleapplication.cpp │ ├── kdsingleapplication.h │ ├── kdsingleapplication_lib.h │ ├── kdsingleapplication_localsocket.cpp │ ├── kdsingleapplication_localsocket_p.h │ └── src.pro └── pybind11 │ ├── CMakeLists.txt │ ├── LICENSE │ ├── MANIFEST.in │ ├── README.rst │ ├── SECURITY.md │ └── include │ └── pybind11 │ ├── attr.h │ ├── buffer_info.h │ ├── cast.h │ ├── chrono.h │ ├── common.h │ ├── complex.h │ ├── detail │ ├── class.h │ ├── common.h │ ├── descr.h │ ├── init.h │ ├── internals.h │ ├── type_caster_base.h │ └── typeid.h │ ├── eigen.h │ ├── eigen │ ├── common.h │ ├── matrix.h │ └── tensor.h │ ├── embed.h │ ├── eval.h │ ├── functional.h │ ├── gil.h │ ├── iostream.h │ ├── numpy.h │ ├── operators.h │ ├── options.h │ ├── pybind11.h │ ├── pytypes.h │ ├── stl.h │ ├── stl │ └── filesystem.h │ ├── stl_bind.h │ └── type_caster_pyobject_ptr.h ├── AUTHORS ├── CHANGES-3.2 ├── CHANGES-3.3 ├── CHANGES-3.4 ├── CMakeLists.txt ├── CMakeModules ├── AppStreamHelper.cmake ├── CMakeColors.cmake ├── CalamaresAddBrandingSubdirectory.cmake ├── CalamaresAddLibrary.cmake ├── CalamaresAddModuleSubdirectory.cmake ├── CalamaresAddPlugin.cmake ├── CalamaresAddTest.cmake ├── CalamaresAddTranslations.cmake ├── CalamaresAutomoc.cmake ├── CalamaresCheckModuleSelection.cmake ├── ExtendedVersion.cmake ├── FindCrypt.cmake ├── FindLIBPARTED.cmake ├── FindLibPWQuality.cmake ├── FindYAMLCPP.cmake ├── KPMcoreHelper.cmake └── i18n.qrc.in ├── CONTRIBUTING.md ├── CalamaresConfig.cmake.in ├── LICENSES ├── BSD-2-Clause.txt ├── CC-BY-4.0.txt ├── CC0-1.0.txt ├── GPL-3.0-or-later.txt ├── LGPL-2.1-only.txt ├── LGPL-3.0-or-later.txt └── MIT.txt ├── README.md ├── calamares.desktop ├── calamares.desktop.in ├── ci ├── RELEASE.md ├── RELEASE.sh ├── abicheck.sh ├── astylerc ├── build.sh ├── calamaresstyle ├── configvalidator.py ├── coverity-model.c ├── deps-debian11.sh ├── deps-endeavouros.sh ├── deps-fedora-qt6-boost.sh ├── deps-fedora-qt6.sh ├── deps-kaos.sh ├── deps-neon.sh ├── deps-opensuse-qt6.sh ├── deps-opensuse.sh ├── deps-ubuntu.sh ├── libcalamares │ ├── __init__.py │ ├── globalstorage.py │ ├── job.py │ └── utils.py ├── txcheck.sh ├── txpull.sh ├── txpush.sh ├── txreduce.py ├── txstats.py └── umount.sh ├── cmake_uninstall.cmake.in ├── data ├── completion │ └── bash │ │ └── calamares ├── config-appimage │ ├── branding │ │ └── default │ │ │ ├── squid.png │ │ │ └── squid.png.license │ ├── modules │ │ ├── displaymanager.conf │ │ ├── finished.conf │ │ ├── keyboard.conf │ │ ├── locale.conf │ │ ├── users.conf │ │ └── welcome.conf │ └── settings.conf ├── example-root │ ├── README.md │ ├── etc │ │ ├── bash.bashrc │ │ ├── group │ │ ├── issue │ │ ├── locale.gen │ │ ├── profile │ │ └── sudoers.d │ │ │ └── 10-installer │ ├── usr │ │ └── share │ │ │ └── zoneinfo │ │ │ ├── .dummy │ │ │ ├── America │ │ │ └── New_York │ │ │ ├── UTC │ │ │ └── Zulu │ ├── var │ │ └── lib │ │ │ ├── dbus │ │ │ └── .dummy │ │ │ └── initramfs-tools │ └── xbin │ │ ├── linux-version │ │ └── useradd └── images │ ├── boot-environment.svg │ ├── boot-environment.svg.license │ ├── bugs.svg │ ├── bugs.svg.license │ ├── fail.svgz │ ├── fail.svgz.license │ ├── help-donate.svg │ ├── help-donate.svg.license │ ├── help.svg │ ├── help.svg.license │ ├── information.svgz │ ├── information.svgz.license │ ├── no.svgz │ ├── no.svgz.license │ ├── partition-alongside.svg │ ├── partition-alongside.svg.license │ ├── partition-disk.svg │ ├── partition-disk.svg.license │ ├── partition-erase-auto.svg │ ├── partition-erase-auto.svg.license │ ├── partition-manual.svg │ ├── partition-manual.svg.license │ ├── partition-partition.svg │ ├── partition-partition.svg.license │ ├── partition-replace-os.svg │ ├── partition-replace-os.svg.license │ ├── partition-table.svg │ ├── partition-table.svg.license │ ├── release.svg │ ├── release.svg.license │ ├── squid.png │ ├── squid.png.license │ ├── squid.svg │ ├── squid.svg.license │ ├── state-error.svg │ ├── state-error.svg.license │ ├── state-ok.svg │ ├── state-ok.svg.license │ ├── state-warning.svg │ ├── state-warning.svg.license │ ├── yes.svgz │ └── yes.svgz.license ├── io.calamares.calamares.appdata.xml ├── io.calamares.calamares.policy ├── lang ├── CMakeLists.txt ├── calamares_ar.ts ├── calamares_as.ts ├── calamares_ast.ts ├── calamares_az.ts ├── calamares_az_AZ.ts ├── calamares_be.ts ├── calamares_bg.ts ├── calamares_bn.ts ├── calamares_ca.ts ├── calamares_ca@valencia.ts ├── calamares_cs_CZ.ts ├── calamares_da.ts ├── calamares_de.ts ├── calamares_el.ts ├── calamares_en.ts ├── calamares_en_GB.ts ├── calamares_eo.ts ├── calamares_es.ts ├── calamares_es_AR.ts ├── calamares_es_MX.ts ├── calamares_es_PR.ts ├── calamares_et.ts ├── calamares_eu.ts ├── calamares_fa.ts ├── calamares_fi_FI.ts ├── calamares_fr.ts ├── calamares_fur.ts ├── calamares_gl.ts ├── calamares_gu.ts ├── calamares_he.ts ├── calamares_hi.ts ├── calamares_hr.ts ├── calamares_hu.ts ├── calamares_ia.ts ├── calamares_id.ts ├── calamares_ie.ts ├── calamares_is.ts ├── calamares_it_IT.ts ├── calamares_ja-Hira.ts ├── calamares_ja.ts ├── calamares_ka.ts ├── calamares_kk.ts ├── calamares_kn.ts ├── calamares_ko.ts ├── calamares_lo.ts ├── calamares_lt.ts ├── calamares_lv.ts ├── calamares_mk.ts ├── calamares_ml.ts ├── calamares_mr.ts ├── calamares_nb.ts ├── calamares_ne_NP.ts ├── calamares_nl.ts ├── calamares_oc.ts ├── calamares_pl.ts ├── calamares_pt_BR.ts ├── calamares_pt_PT.ts ├── calamares_ro.ts ├── calamares_ru.ts ├── calamares_si.ts ├── calamares_sk.ts ├── calamares_sl.ts ├── calamares_sq.ts ├── calamares_sr.ts ├── calamares_sr@latin.ts ├── calamares_sv.ts ├── calamares_ta_IN.ts ├── calamares_te.ts ├── calamares_tg.ts ├── calamares_th.ts ├── calamares_tr_TR.ts ├── calamares_uk.ts ├── calamares_ur.ts ├── calamares_uz.ts ├── calamares_vi.ts ├── calamares_zh.ts ├── calamares_zh_CN.ts ├── calamares_zh_HK.ts ├── calamares_zh_TW.ts ├── kb_en.ts ├── kb_tg.ts ├── python.pot ├── python │ ├── ar │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── as │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── ast │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── az │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── az_AZ │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── be │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── bg │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── bn │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── ca │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── ca@valencia │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── cs_CZ │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── da │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── de │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── el │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── en_GB │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── eo │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── es │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── es_AR │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── es_MX │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── es_PR │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── et │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── eu │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── fa │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── fi_FI │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── fur │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── gl │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── gu │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── he │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── hi │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── hr │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── hu │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── ia │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── id │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── ie │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── is │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── ja-Hira │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── ka │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── kk │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── kn │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── ko │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── lo │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── lt │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── lv │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── mk │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── ml │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── mr │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── nb │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── ne_NP │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── oc │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── pt_PT │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── ro │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── si │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── sk │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── sl │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── sq │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── sr │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── sr@latin │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── sv │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── ta_IN │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── te │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── tg │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── th │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── tr_TR │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── uk │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── ur │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── uz │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── vi │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── zh │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── zh_CN │ │ └── LC_MESSAGES │ │ │ └── python.po │ ├── zh_HK │ │ └── LC_MESSAGES │ │ │ └── python.po │ └── zh_TW │ │ └── LC_MESSAGES │ │ └── python.po ├── txload.cpp ├── tz_en.ts ├── tz_nl.ts ├── tz_ru.ts ├── tz_sv.ts ├── tz_tg.ts ├── tz_uk.ts └── tz_vi.ts ├── man └── calamares.8 ├── settings.conf └── src ├── CMakeLists.txt ├── branding ├── CMakeLists.txt ├── README.md └── default │ ├── banner.png │ ├── banner.png.license │ ├── branding.desc │ ├── lang │ ├── calamares-default_ar.ts │ ├── calamares-default_en.ts │ ├── calamares-default_eo.ts │ ├── calamares-default_fr.ts │ └── calamares-default_nl.ts │ ├── languages.png │ ├── languages.png.license │ ├── show.qml │ ├── squid.png │ ├── squid.png.license │ └── stylesheet.qss ├── calamares ├── CMakeLists.txt ├── CalamaresApplication.cpp ├── CalamaresApplication.h ├── CalamaresWindow.cpp ├── CalamaresWindow.h ├── DebugWindow.cpp ├── DebugWindow.h ├── DebugWindow.ui ├── VariantModel.cpp ├── VariantModel.h ├── calamares-navigation.qml ├── calamares-sidebar.qml ├── calamares.qrc ├── main.cpp ├── progresstree │ ├── ProgressTreeDelegate.cpp │ ├── ProgressTreeDelegate.h │ ├── ProgressTreeView.cpp │ └── ProgressTreeView.h ├── test_conf.cpp └── testmain.cpp ├── libcalamares ├── CMakeLists.txt ├── CalamaresAbout.cpp ├── CalamaresAbout.h ├── CalamaresConfig.h.in ├── CalamaresVersion.h.in ├── CalamaresVersionX.h.in ├── CppJob.cpp ├── CppJob.h ├── DllMacro.h ├── GlobalStorage.cpp ├── GlobalStorage.h ├── Job.cpp ├── Job.h ├── JobExample.cpp ├── JobExample.h ├── JobQueue.cpp ├── JobQueue.h ├── ProcessJob.cpp ├── ProcessJob.h ├── Settings.cpp ├── Settings.h ├── Tests.cpp ├── compat │ ├── CheckBox.h │ ├── Mutex.h │ ├── Size.h │ ├── Variant.h │ └── Xml.h ├── geoip │ ├── GeoIPFixed.cpp │ ├── GeoIPFixed.h │ ├── GeoIPJSON.cpp │ ├── GeoIPJSON.h │ ├── GeoIPTests.cpp │ ├── GeoIPTests.h │ ├── GeoIPXML.cpp │ ├── GeoIPXML.h │ ├── Handler.cpp │ ├── Handler.h │ ├── Interface.cpp │ ├── Interface.h │ └── test_geoip.cpp ├── locale │ ├── CountryData_p.cpp │ ├── Global.cpp │ ├── Global.h │ ├── Lookup.cpp │ ├── Lookup.h │ ├── Tests.cpp │ ├── TimeZone.cpp │ ├── TimeZone.h │ ├── TranslatableConfiguration.cpp │ ├── TranslatableConfiguration.h │ ├── TranslatableString.cpp │ ├── TranslatableString.h │ ├── Translation.cpp │ ├── Translation.h │ ├── TranslationsModel.cpp │ ├── TranslationsModel.h │ ├── ZoneData_p.cxxtr │ ├── cldr-extractor.py │ └── zone-extractor.py ├── modulesystem │ ├── Actions.h │ ├── Config.cpp │ ├── Config.h │ ├── Descriptor.cpp │ ├── Descriptor.h │ ├── InstanceKey.cpp │ ├── InstanceKey.h │ ├── Module.cpp │ ├── Module.h │ ├── Preset.cpp │ ├── Preset.h │ ├── Requirement.h │ ├── RequirementsChecker.cpp │ ├── RequirementsChecker.h │ ├── RequirementsModel.cpp │ ├── RequirementsModel.h │ └── Tests.cpp ├── network │ ├── Manager.cpp │ ├── Manager.h │ ├── Tests.cpp │ └── Tests.h ├── packages │ ├── Globals.cpp │ ├── Globals.h │ └── Tests.cpp ├── partition │ ├── AutoMount.cpp │ ├── AutoMount.h │ ├── FileSystem.cpp │ ├── FileSystem.h │ ├── Global.cpp │ ├── Global.h │ ├── KPMHelper.h │ ├── KPMManager.cpp │ ├── KPMManager.h │ ├── KPMTests.cpp │ ├── Mount.cpp │ ├── Mount.h │ ├── PartitionIterator.cpp │ ├── PartitionIterator.h │ ├── PartitionQuery.cpp │ ├── PartitionQuery.h │ ├── PartitionSize.cpp │ ├── PartitionSize.h │ ├── Sync.cpp │ ├── Sync.h │ ├── Tests.cpp │ └── calautomount.cpp ├── pybind11 │ ├── Api.cpp │ ├── Api.h │ ├── Pybind11Helpers.h │ ├── PythonJob.cpp │ ├── PythonJob.h │ └── PythonTypes.h ├── pyboost │ ├── PythonHelper.cpp │ ├── PythonHelper.h │ ├── PythonJob.cpp │ ├── PythonJob.h │ ├── PythonJobApi.cpp │ ├── PythonJobApi.h │ └── PythonTypes.h ├── python │ ├── Api.cpp │ ├── Api.h │ ├── Variant.cpp │ └── Variant.h ├── testdata │ ├── localetest_nl.ts │ └── yaml-list.conf └── utils │ ├── CommandList.cpp │ ├── CommandList.h │ ├── Dirs.cpp │ ├── Dirs.h │ ├── Entropy.cpp │ ├── Entropy.h │ ├── Logger.cpp │ ├── Logger.h │ ├── NamedEnum.h │ ├── NamedSuffix.h │ ├── Permissions.cpp │ ├── Permissions.h │ ├── PluginFactory.cpp │ ├── PluginFactory.h │ ├── RAII.h │ ├── Retranslator.cpp │ ├── Retranslator.h │ ├── Runner.cpp │ ├── Runner.h │ ├── String.cpp │ ├── String.h │ ├── StringExpander.cpp │ ├── StringExpander.h │ ├── System.cpp │ ├── System.h │ ├── TestPaths.cpp │ ├── Tests.cpp │ ├── Traits.h │ ├── UMask.cpp │ ├── UMask.h │ ├── Units.h │ ├── Variant.cpp │ ├── Variant.h │ ├── Yaml.cpp │ ├── Yaml.h │ └── moc-warnings.h ├── libcalamaresui ├── Branding.cpp ├── Branding.h ├── CMakeLists.txt ├── ViewManager.cpp ├── ViewManager.h ├── libcalamaresui.qrc ├── modulesystem │ ├── CppJobModule.cpp │ ├── CppJobModule.h │ ├── ModuleFactory.cpp │ ├── ModuleFactory.h │ ├── ModuleManager.cpp │ ├── ModuleManager.h │ ├── ProcessJobModule.cpp │ ├── ProcessJobModule.h │ ├── PythonJobModule.cpp │ ├── PythonJobModule.h │ ├── ViewModule.cpp │ └── ViewModule.h ├── utils │ ├── Gui.cpp │ ├── Gui.h │ ├── ImageRegistry.cpp │ ├── ImageRegistry.h │ ├── Paste.cpp │ ├── Paste.h │ ├── Qml.cpp │ ├── Qml.h │ ├── QtCompat.h │ └── TestPaste.cpp ├── viewpages │ ├── BlankViewStep.cpp │ ├── BlankViewStep.h │ ├── ExecutionViewStep.cpp │ ├── ExecutionViewStep.h │ ├── QmlViewStep.cpp │ ├── QmlViewStep.h │ ├── Slideshow.cpp │ ├── Slideshow.h │ ├── ViewStep.cpp │ └── ViewStep.h └── widgets │ ├── ClickableLabel.cpp │ ├── ClickableLabel.h │ ├── ErrorDialog.cpp │ ├── ErrorDialog.h │ ├── ErrorDialog.ui │ ├── FixedAspectRatioLabel.cpp │ ├── FixedAspectRatioLabel.h │ ├── LogWidget.cpp │ ├── LogWidget.h │ ├── PrettyRadioButton.cpp │ ├── PrettyRadioButton.h │ ├── TranslationFix.cpp │ ├── TranslationFix.h │ ├── WaitingWidget.cpp │ ├── WaitingWidget.h │ ├── waitingspinnerwidget.cpp │ └── waitingspinnerwidget.h ├── modules ├── CMakeLists.txt ├── README.md ├── bootloader │ ├── bootloader.conf │ ├── bootloader.schema.yaml │ ├── main.py │ ├── module.desc │ ├── test.yaml │ └── tests │ │ ├── CMakeTests.txt │ │ └── test-bootloader-efiname.py ├── contextualprocess │ ├── Binding.h │ ├── CMakeLists.txt │ ├── ContextualProcessJob.cpp │ ├── ContextualProcessJob.h │ ├── Tests.cpp │ ├── Tests.h │ └── contextualprocess.conf ├── displaymanager │ ├── displaymanager.conf │ ├── displaymanager.schema.yaml │ ├── main.py │ ├── module.desc │ └── tests │ │ ├── 1.global │ │ ├── CMakeTests.txt │ │ ├── test-dm-gdm.py │ │ ├── test-dm-greetd.py │ │ └── test-dm-sddm.py ├── dracut │ ├── dracut.conf │ ├── dracut.schema.yaml │ ├── main.py │ └── module.desc ├── dracutlukscfg │ ├── CMakeLists.txt │ ├── DracutLuksCfgJob.cpp │ └── DracutLuksCfgJob.h ├── dummycpp │ ├── CMakeLists.txt │ ├── DummyCppJob.cpp │ ├── DummyCppJob.h │ ├── dummycpp.conf │ └── module.desc ├── dummyprocess │ └── module.desc ├── dummypython │ ├── dummypython.conf │ ├── main.py │ ├── module.desc │ └── tests │ │ └── 1.global ├── finished │ ├── CMakeLists.txt │ ├── Config.cpp │ ├── Config.h │ ├── FinishedPage.cpp │ ├── FinishedPage.h │ ├── FinishedPage.ui │ ├── FinishedViewStep.cpp │ ├── FinishedViewStep.h │ ├── finished.conf │ └── finished.schema.yaml ├── finishedq │ ├── CMakeLists.txt │ ├── FinishedQmlViewStep.cpp │ ├── FinishedQmlViewStep.h │ ├── finishedq-qt6.qml │ ├── finishedq-qt6.qrc │ ├── finishedq.conf │ ├── finishedq.qml │ ├── finishedq.qrc │ ├── finishedq@mobile.qml │ ├── seedling.svg │ └── seedling.svg.license ├── fsresizer │ ├── CMakeLists.txt │ ├── ResizeFSJob.cpp │ ├── ResizeFSJob.h │ ├── Tests.cpp │ ├── Tests.h │ └── fsresizer.conf ├── fstab │ ├── fstab.conf │ ├── fstab.schema.yaml │ ├── main.py │ ├── module.desc │ ├── test.yaml │ └── test2.yaml ├── grubcfg │ ├── grubcfg.conf │ ├── grubcfg.schema.yaml │ ├── main.py │ ├── module.desc │ └── tests │ │ ├── 1.global │ │ ├── 2.global │ │ ├── 2.job │ │ ├── 3.global │ │ ├── 3.job │ │ ├── 4.global │ │ ├── 4.job │ │ └── CMakeTests.txt ├── hostinfo │ ├── CMakeLists.txt │ ├── HostInfoJob.cpp │ ├── HostInfoJob.h │ └── Tests.cpp ├── hwclock │ ├── main.py │ └── module.desc ├── initcpio │ ├── CMakeLists.txt │ ├── InitcpioJob.cpp │ ├── InitcpioJob.h │ ├── Tests.cpp │ ├── Tests.h │ ├── initcpio.conf │ └── initcpio.schema.yaml ├── initcpiocfg │ ├── initcpiocfg.conf │ ├── initcpiocfg.schema.yaml │ ├── main.py │ ├── module.desc │ └── test.yaml ├── initramfs │ ├── CMakeLists.txt │ ├── InitramfsJob.cpp │ ├── InitramfsJob.h │ ├── Tests.cpp │ ├── Tests.h │ └── initramfs.conf ├── initramfscfg │ ├── encrypt_hook │ ├── encrypt_hook_nokey │ ├── main.py │ └── module.desc ├── interactiveterminal │ ├── CMakeLists.txt │ ├── InteractiveTerminalPage.cpp │ ├── InteractiveTerminalPage.h │ ├── InteractiveTerminalViewStep.cpp │ ├── InteractiveTerminalViewStep.h │ └── interactiveterminal.conf ├── keyboard │ ├── AdditionalLayoutInfo.h │ ├── CMakeLists.txt │ ├── Config.cpp │ ├── Config.h │ ├── KeyboardData_p.cxxtr │ ├── KeyboardLayoutModel.cpp │ ├── KeyboardLayoutModel.h │ ├── KeyboardPage.cpp │ ├── KeyboardPage.h │ ├── KeyboardPage.ui │ ├── KeyboardViewStep.cpp │ ├── KeyboardViewStep.h │ ├── SetKeyboardLayoutJob.cpp │ ├── SetKeyboardLayoutJob.h │ ├── Tests.cpp │ ├── images │ │ ├── restore.png │ │ └── restore.png.license │ ├── kbd-model-map │ ├── keyboard.conf │ ├── keyboard.qrc │ ├── keyboard.schema.yaml │ ├── keyboardwidget │ │ ├── keyboardglobal.cpp │ │ ├── keyboardglobal.h │ │ ├── keyboardpreview.cpp │ │ └── keyboardpreview.h │ ├── layout-extractor.py │ └── non-ascii-layouts ├── keyboardq │ ├── CMakeLists.txt │ ├── KeyboardQmlViewStep.cpp │ ├── KeyboardQmlViewStep.h │ ├── data │ │ ├── Key-qt6.qml │ │ ├── Key.qml │ │ ├── Keyboard-qt6.qml │ │ ├── Keyboard.qml │ │ ├── afgani-qt6.xml │ │ ├── afgani.xml │ │ ├── ar-qt6.xml │ │ ├── ar.xml │ │ ├── backspace.svg │ │ ├── backspace.svg.license │ │ ├── button_bkg_center.png │ │ ├── button_bkg_center.png.license │ │ ├── button_bkg_left.png │ │ ├── button_bkg_left.png.license │ │ ├── button_bkg_right.png │ │ ├── button_bkg_right.png.license │ │ ├── de-qt6.xml │ │ ├── de.xml │ │ ├── empty-qt6.xml │ │ ├── empty.xml │ │ ├── en-qt6.xml │ │ ├── en.xml │ │ ├── enter.svg │ │ ├── enter.svg.license │ │ ├── es-qt6.xml │ │ ├── es.xml │ │ ├── fr-qt6.xml │ │ ├── fr.xml │ │ ├── generic-qt6.xml │ │ ├── generic.xml │ │ ├── generic_qz-qt6.xml │ │ ├── generic_qz.xml │ │ ├── pan-end-symbolic.svg │ │ ├── pan-end-symbolic.svg.license │ │ ├── pt-qt6.xml │ │ ├── pt.xml │ │ ├── ru-qt6.xml │ │ ├── ru.xml │ │ ├── scan.xml │ │ ├── shift.svg │ │ └── shift.svg.license │ ├── keyboardq-qt6.qml │ ├── keyboardq-qt6.qrc │ ├── keyboardq.conf │ ├── keyboardq.qml │ └── keyboardq.qrc ├── license │ ├── CMakeLists.txt │ ├── LicensePage.cpp │ ├── LicensePage.h │ ├── LicensePage.ui │ ├── LicenseViewStep.cpp │ ├── LicenseViewStep.h │ ├── LicenseWidget.cpp │ ├── LicenseWidget.h │ ├── README.md │ ├── license.conf │ └── license.schema.yaml ├── locale │ ├── CMakeLists.txt │ ├── Config.cpp │ ├── Config.h │ ├── LCLocaleDialog.cpp │ ├── LCLocaleDialog.h │ ├── LocaleConfiguration.cpp │ ├── LocaleConfiguration.h │ ├── LocaleNames.cpp │ ├── LocaleNames.h │ ├── LocalePage.cpp │ ├── LocalePage.h │ ├── LocaleViewStep.cpp │ ├── LocaleViewStep.h │ ├── SetTimezoneJob.cpp │ ├── SetTimezoneJob.h │ ├── Tests.cpp │ ├── images │ │ ├── bg.png │ │ ├── bg.png.license │ │ ├── pin.png │ │ ├── pin.png.license │ │ ├── timezone_-1.0.png │ │ ├── timezone_-10.0.png │ │ ├── timezone_-11.0.png │ │ ├── timezone_-2.0.png │ │ ├── timezone_-3.0.png │ │ ├── timezone_-3.5.png │ │ ├── timezone_-4.0.png │ │ ├── timezone_-4.5.png │ │ ├── timezone_-5.0.png │ │ ├── timezone_-5.5.png │ │ ├── timezone_-6.0.png │ │ ├── timezone_-7.0.png │ │ ├── timezone_-8.0.png │ │ ├── timezone_-9.0.png │ │ ├── timezone_-9.5.png │ │ ├── timezone_0.0.png │ │ ├── timezone_1.0.png │ │ ├── timezone_10.0.png │ │ ├── timezone_10.5.png │ │ ├── timezone_11.0.png │ │ ├── timezone_12.0.png │ │ ├── timezone_12.75.png │ │ ├── timezone_13.0.png │ │ ├── timezone_2.0.png │ │ ├── timezone_3.0.png │ │ ├── timezone_3.5.png │ │ ├── timezone_4.0.png │ │ ├── timezone_4.5.png │ │ ├── timezone_5.0.png │ │ ├── timezone_5.5.png │ │ ├── timezone_5.75.png │ │ ├── timezone_6.0.png │ │ ├── timezone_6.5.png │ │ ├── timezone_7.0.png │ │ ├── timezone_8.0.png │ │ ├── timezone_9.0.png │ │ └── timezone_9.5.png │ ├── locale.conf │ ├── locale.qrc │ ├── locale.schema.yaml │ ├── tests │ │ ├── locale-data-freebsd │ │ └── locale-data-neon │ └── timezonewidget │ │ ├── TimeZoneImage.cpp │ │ ├── TimeZoneImage.h │ │ ├── timezonewidget.cpp │ │ └── timezonewidget.h ├── localecfg │ ├── main.py │ └── module.desc ├── localeq │ ├── CMakeLists.txt │ ├── LocaleQmlViewStep.cpp │ ├── LocaleQmlViewStep.h │ ├── Map-qt6.qml │ ├── Map.qml │ ├── Offline-qt6.qml │ ├── Offline.qml │ ├── img │ │ ├── locale.svg │ │ ├── locale.svg.license │ │ ├── minus.png │ │ ├── minus.png.license │ │ ├── pin.svg │ │ ├── pin.svg.license │ │ ├── plus.png │ │ └── plus.png.license │ ├── localeq-qt6.qml │ ├── localeq-qt6.qrc │ ├── localeq.conf │ ├── localeq.qml │ └── localeq.qrc ├── luksbootkeyfile │ ├── CMakeLists.txt │ ├── LuksBootKeyFileJob.cpp │ ├── LuksBootKeyFileJob.h │ ├── Tests.cpp │ ├── luksbootkeyfile.conf │ └── luksbootkeyfile.schema.yaml ├── luksopenswaphookcfg │ ├── CMakeLists.txt │ ├── LOSHInfo.h │ ├── LOSHJob.cpp │ ├── LOSHJob.h │ ├── Tests.cpp │ ├── luksopenswaphookcfg.conf │ └── luksopenswaphookcfg.schema.yaml ├── machineid │ ├── CMakeLists.txt │ ├── MachineIdJob.cpp │ ├── MachineIdJob.h │ ├── Tests.cpp │ ├── Workers.cpp │ ├── Workers.h │ ├── machineid.conf │ └── machineid.schema.yaml ├── mkinitfs │ ├── main.py │ └── module.desc ├── mount │ ├── main.py │ ├── module.desc │ ├── mount.conf │ ├── mount.schema.yaml │ └── tests │ │ ├── 1.global │ │ ├── 1.job │ │ ├── 2.global │ │ ├── 2.job │ │ ├── 3.global │ │ ├── 3.job │ │ ├── 4.global │ │ └── 4.job ├── netinstall │ ├── CMakeLists.txt │ ├── Config.cpp │ ├── Config.h │ ├── LoaderQueue.cpp │ ├── LoaderQueue.h │ ├── NetInstallPage.cpp │ ├── NetInstallPage.h │ ├── NetInstallViewStep.cpp │ ├── NetInstallViewStep.h │ ├── PackageModel.cpp │ ├── PackageModel.h │ ├── PackageTreeItem.cpp │ ├── PackageTreeItem.h │ ├── Tests.cpp │ ├── groupstreeview.cpp │ ├── groupstreeview.h │ ├── netinstall.conf │ ├── netinstall.schema.yaml │ ├── netinstall.yaml │ ├── page_netinst.ui │ └── tests │ │ ├── 1a-single-bad.conf │ │ ├── 1a-single-empty.conf │ │ ├── 1a-single-error.conf │ │ ├── 1b-single-large.conf │ │ ├── 1b-single-small.conf │ │ ├── 1c-none.conf │ │ ├── 1c-unset.conf │ │ ├── 1d-fallback-bad.conf │ │ ├── 1d-fallback-large.conf │ │ ├── 1d-fallback-mixed.conf │ │ ├── 1d-fallback-small.conf │ │ ├── data-empty.yaml │ │ ├── data-error.yaml │ │ ├── data-large.yaml │ │ └── data-small.yaml ├── networkcfg │ ├── main.py │ └── module.desc ├── notesqml │ ├── CMakeLists.txt │ ├── NotesQmlViewStep.cpp │ ├── NotesQmlViewStep.h │ ├── examples │ │ └── notesqml.qml.example │ ├── notesqml.conf │ ├── notesqml.qml │ └── notesqml.qrc ├── oemid │ ├── CMakeLists.txt │ ├── IDJob.cpp │ ├── IDJob.h │ ├── OEMPage.ui │ ├── OEMViewStep.cpp │ ├── OEMViewStep.h │ └── oemid.conf ├── openrcdmcryptcfg │ ├── main.py │ ├── module.desc │ └── openrcdmcryptcfg.conf ├── packagechooser │ ├── CMakeLists.txt │ ├── Config.cpp │ ├── Config.h │ ├── ItemAppData.cpp │ ├── ItemAppData.h │ ├── ItemAppStream.cpp │ ├── ItemAppStream.h │ ├── PackageChooserPage.cpp │ ├── PackageChooserPage.h │ ├── PackageChooserViewStep.cpp │ ├── PackageChooserViewStep.h │ ├── PackageModel.cpp │ ├── PackageModel.h │ ├── Tests.cpp │ ├── Tests.h │ ├── images │ │ ├── calamares.png │ │ ├── calamares.png.license │ │ ├── no-selection.png │ │ └── no-selection.png.license │ ├── packagechooser.conf │ ├── packagechooser.qrc │ └── page_package.ui ├── packagechooserq │ ├── CMakeLists.txt │ ├── PackageChooserQmlViewStep.cpp │ ├── PackageChooserQmlViewStep.h │ ├── images │ │ ├── libreoffice.jpg │ │ ├── libreoffice.jpg.license │ │ ├── no-selection.png │ │ ├── no-selection.png.license │ │ ├── plasma.png │ │ └── plasma.png.license │ ├── packagechooserq-qt6.qml │ ├── packagechooserq-qt6.qrc │ ├── packagechooserq.conf │ ├── packagechooserq.qml │ └── packagechooserq.qrc ├── packages │ ├── main.py │ ├── module.desc │ ├── packages.conf │ ├── packages.schema.yaml │ └── tests │ │ ├── 1.global │ │ ├── 2.job │ │ ├── CMakeTests.txt │ │ ├── pm-pacman-1.yaml │ │ ├── pm-pacman-2.yaml │ │ └── test-pm-pacman.py ├── partition │ ├── CMakeLists.txt │ ├── Config.cpp │ ├── Config.h │ ├── PartitionViewStep.cpp │ ├── PartitionViewStep.h │ ├── README.md │ ├── core │ │ ├── BootLoaderModel.cpp │ │ ├── BootLoaderModel.h │ │ ├── ColorUtils.cpp │ │ ├── ColorUtils.h │ │ ├── DeviceList.cpp │ │ ├── DeviceList.h │ │ ├── DeviceModel.cpp │ │ ├── DeviceModel.h │ │ ├── DirFSRestrictLayout.cpp │ │ ├── DirFSRestrictLayout.h │ │ ├── KPMHelpers.cpp │ │ ├── KPMHelpers.h │ │ ├── OsproberEntry.cpp │ │ ├── OsproberEntry.h │ │ ├── PartUtils.cpp │ │ ├── PartUtils.h │ │ ├── PartitionActions.cpp │ │ ├── PartitionActions.h │ │ ├── PartitionCoreModule.cpp │ │ ├── PartitionCoreModule.h │ │ ├── PartitionInfo.cpp │ │ ├── PartitionInfo.h │ │ ├── PartitionLayout.cpp │ │ ├── PartitionLayout.h │ │ ├── PartitionModel.cpp │ │ ├── PartitionModel.h │ │ └── SizeUtils.h │ ├── gui │ │ ├── BootInfoWidget.cpp │ │ ├── BootInfoWidget.h │ │ ├── ChoicePage.cpp │ │ ├── ChoicePage.h │ │ ├── ChoicePage.ui │ │ ├── CreatePartitionDialog.cpp │ │ ├── CreatePartitionDialog.h │ │ ├── CreatePartitionDialog.ui │ │ ├── CreatePartitionTableDialog.ui │ │ ├── CreateVolumeGroupDialog.cpp │ │ ├── CreateVolumeGroupDialog.h │ │ ├── DeviceInfoWidget.cpp │ │ ├── DeviceInfoWidget.h │ │ ├── EditExistingPartitionDialog.cpp │ │ ├── EditExistingPartitionDialog.h │ │ ├── EditExistingPartitionDialog.ui │ │ ├── EncryptWidget.cpp │ │ ├── EncryptWidget.h │ │ ├── EncryptWidget.ui │ │ ├── ListPhysicalVolumeWidgetItem.cpp │ │ ├── ListPhysicalVolumeWidgetItem.h │ │ ├── PartitionBarsView.cpp │ │ ├── PartitionBarsView.h │ │ ├── PartitionDialogHelpers.cpp │ │ ├── PartitionDialogHelpers.h │ │ ├── PartitionLabelsView.cpp │ │ ├── PartitionLabelsView.h │ │ ├── PartitionPage.cpp │ │ ├── PartitionPage.h │ │ ├── PartitionPage.ui │ │ ├── PartitionSizeController.cpp │ │ ├── PartitionSizeController.h │ │ ├── PartitionSplitterWidget.cpp │ │ ├── PartitionSplitterWidget.h │ │ ├── PartitionViewSelectionFilter.h │ │ ├── ResizeVolumeGroupDialog.cpp │ │ ├── ResizeVolumeGroupDialog.h │ │ ├── ScanningDialog.cpp │ │ ├── ScanningDialog.h │ │ ├── VolumeGroupBaseDialog.cpp │ │ ├── VolumeGroupBaseDialog.h │ │ └── VolumeGroupBaseDialog.ui │ ├── jobs │ │ ├── AutoMountManagementJob.cpp │ │ ├── AutoMountManagementJob.h │ │ ├── ChangeFilesystemLabelJob.cpp │ │ ├── ChangeFilesystemLabelJob.h │ │ ├── ClearMountsJob.cpp │ │ ├── ClearMountsJob.h │ │ ├── ClearTempMountsJob.cpp │ │ ├── ClearTempMountsJob.h │ │ ├── CreatePartitionJob.cpp │ │ ├── CreatePartitionJob.h │ │ ├── CreatePartitionTableJob.cpp │ │ ├── CreatePartitionTableJob.h │ │ ├── CreateVolumeGroupJob.cpp │ │ ├── CreateVolumeGroupJob.h │ │ ├── DeactivateVolumeGroupJob.cpp │ │ ├── DeactivateVolumeGroupJob.h │ │ ├── DeletePartitionJob.cpp │ │ ├── DeletePartitionJob.h │ │ ├── FillGlobalStorageJob.cpp │ │ ├── FillGlobalStorageJob.h │ │ ├── FormatPartitionJob.cpp │ │ ├── FormatPartitionJob.h │ │ ├── PartitionJob.cpp │ │ ├── PartitionJob.h │ │ ├── RemoveVolumeGroupJob.cpp │ │ ├── RemoveVolumeGroupJob.h │ │ ├── ResizePartitionJob.cpp │ │ ├── ResizePartitionJob.h │ │ ├── ResizeVolumeGroupJob.cpp │ │ ├── ResizeVolumeGroupJob.h │ │ ├── SetPartitionFlagsJob.cpp │ │ └── SetPartitionFlagsJob.h │ ├── partition.conf │ ├── partition.schema.yaml │ └── tests │ │ ├── 1a-legacy.conf │ │ ├── 1b-legacy.conf │ │ ├── 2a-legacy.conf │ │ ├── 2b-modern.conf │ │ ├── 2c-mixed.conf │ │ ├── 2d-overlap.conf │ │ ├── 3a-min-too-large.conf │ │ ├── AutoMountTests.cpp │ │ ├── CMakeLists.txt │ │ ├── ClearMountsJobTests.cpp │ │ ├── ClearMountsJobTests.h │ │ ├── ConfigTests.cpp │ │ ├── CreateLayoutsTests.cpp │ │ ├── CreateLayoutsTests.h │ │ ├── DevicesTests.cpp │ │ ├── PartitionJobTests.cpp │ │ └── PartitionJobTests.h ├── plasmalnf │ ├── CMakeLists.txt │ ├── Config.cpp │ ├── Config.h │ ├── PlasmaLnfJob.cpp │ ├── PlasmaLnfJob.h │ ├── PlasmaLnfPage.cpp │ ├── PlasmaLnfPage.h │ ├── PlasmaLnfViewStep.cpp │ ├── PlasmaLnfViewStep.h │ ├── ThemeInfo.cpp │ ├── ThemeInfo.h │ ├── page_plasmalnf.qrc │ ├── page_plasmalnf.ui │ ├── plasmalnf.conf │ ├── view-preview.png │ ├── view-preview.png.license │ ├── view-preview.svg │ └── view-preview.svg.license ├── plymouthcfg │ ├── main.py │ ├── module.desc │ ├── plymouthcfg.conf │ └── plymouthcfg.schema.yaml ├── preservefiles │ ├── CMakeLists.txt │ ├── Item.cpp │ ├── Item.h │ ├── PreserveFiles.cpp │ ├── PreserveFiles.h │ ├── Tests.cpp │ ├── preservefiles.conf │ ├── preservefiles.schema.yaml │ └── tests │ │ ├── 1a-log.conf │ │ ├── 1b-config.conf │ │ ├── 1c-src.conf │ │ ├── 1d-filename.conf │ │ ├── 1e-empty.conf │ │ └── 1f-bad.conf ├── rawfs │ ├── main.py │ ├── module.desc │ ├── rawfs.conf │ └── tests │ │ ├── 1.global │ │ ├── 1.job │ │ └── CMakeTests.txt ├── removeuser │ ├── CMakeLists.txt │ ├── RemoveUserJob.cpp │ ├── RemoveUserJob.h │ ├── removeuser.conf │ └── removeuser.schema.yaml ├── services-openrc │ ├── main.py │ ├── module.desc │ └── services-openrc.conf ├── services-systemd │ ├── main.py │ ├── module.desc │ ├── services-systemd.conf │ └── services-systemd.schema.yaml ├── shellprocess │ ├── CMakeLists.txt │ ├── ShellProcessJob.cpp │ ├── ShellProcessJob.h │ ├── Tests.cpp │ ├── Tests.h │ ├── shellprocess.conf │ └── shellprocess.schema.yaml ├── summary │ ├── CMakeLists.txt │ ├── Config.cpp │ ├── Config.h │ ├── SummaryModel.cpp │ ├── SummaryModel.h │ ├── SummaryPage.cpp │ ├── SummaryPage.h │ ├── SummaryViewStep.cpp │ └── SummaryViewStep.h ├── summaryq │ ├── CMakeLists.txt │ ├── SummaryQmlViewStep.cpp │ ├── SummaryQmlViewStep.h │ ├── img │ │ ├── keyboard.svg │ │ ├── keyboard.svg.license │ │ ├── lokalize.svg │ │ └── lokalize.svg.license │ ├── summaryq-qt6.qml │ ├── summaryq-qt6.qrc │ ├── summaryq.qml │ └── summaryq.qrc ├── tracking │ ├── CMakeLists.txt │ ├── Config.cpp │ ├── Config.h │ ├── Tests.cpp │ ├── TrackingJobs.cpp │ ├── TrackingJobs.h │ ├── TrackingPage.cpp │ ├── TrackingPage.h │ ├── TrackingType.h │ ├── TrackingViewStep.cpp │ ├── TrackingViewStep.h │ ├── level-install.svg │ ├── level-install.svg.license │ ├── level-machine.svg │ ├── level-machine.svg.license │ ├── level-none.svg │ ├── level-none.svg.license │ ├── level-user.svg │ ├── level-user.svg.license │ ├── page_trackingstep.qrc │ ├── page_trackingstep.ui │ └── tracking.conf ├── umount │ ├── CMakeLists.txt │ ├── Tests.cpp │ ├── UmountJob.cpp │ ├── UmountJob.h │ ├── umount.conf │ └── umount.schema.yaml ├── unpackfs │ ├── main.py │ ├── module.desc │ ├── runtests.sh │ ├── tests │ │ ├── 1.global │ │ ├── 2.global │ │ ├── 3.global │ │ ├── 3.job │ │ ├── 4.global │ │ ├── 4.job │ │ ├── 5.global │ │ ├── 5.job │ │ ├── 6.global │ │ ├── 6.job │ │ ├── 7.global │ │ ├── 7.job │ │ ├── 8.global │ │ ├── 8.job │ │ ├── 9.global │ │ └── 9.job │ ├── unpackfs.conf │ └── unpackfs.schema.yaml ├── unpackfsc │ ├── CMakeLists.txt │ ├── ErofsRunner.cpp │ ├── ErofsRunner.h │ ├── FSArchiverRunner.cpp │ ├── FSArchiverRunner.h │ ├── Runners.cpp │ ├── Runners.h │ ├── TarballRunner.cpp │ ├── TarballRunner.h │ ├── UnpackFSCJob.cpp │ ├── UnpackFSCJob.h │ ├── UnsquashRunner.cpp │ ├── UnsquashRunner.h │ ├── tests │ │ ├── 1.global │ │ └── 1.job │ ├── unpackfsc.conf │ └── unpackfsc.schema.yaml ├── users │ ├── ActiveDirectoryJob.cpp │ ├── ActiveDirectoryJob.h │ ├── CMakeLists.txt │ ├── CheckPWQuality.cpp │ ├── CheckPWQuality.h │ ├── Config.cpp │ ├── Config.h │ ├── CreateUserJob.cpp │ ├── CreateUserJob.h │ ├── MiscJobs.cpp │ ├── MiscJobs.h │ ├── SetHostNameJob.cpp │ ├── SetHostNameJob.h │ ├── SetPasswordJob.cpp │ ├── SetPasswordJob.h │ ├── TestGroupInformation.cpp │ ├── TestPasswordJob.cpp │ ├── TestSetHostNameJob.cpp │ ├── Tests.cpp │ ├── UsersPage.cpp │ ├── UsersPage.h │ ├── UsersViewStep.cpp │ ├── UsersViewStep.h │ ├── images │ │ ├── invalid.png │ │ ├── invalid.png.license │ │ ├── valid.png │ │ └── valid.png.license │ ├── page_usersetup.ui │ ├── tests │ │ ├── 3-wing.conf │ │ ├── 4-audio.conf │ │ ├── 5-issue-1523.conf │ │ ├── 6a-issue-1672.conf │ │ ├── 6b-issue-1672.conf │ │ ├── 6c-issue-1672.conf │ │ ├── 6d-issue-1672.conf │ │ ├── 6e-issue-1672.conf │ │ ├── 7an-shell.conf │ │ ├── 7ao-shell.conf │ │ ├── 7bn-shell.conf │ │ ├── 7bo-shell.conf │ │ ├── 7cn-shell.conf │ │ ├── 7co-shell.conf │ │ ├── 7dn-shell.conf │ │ ├── 7do-shell.conf │ │ ├── 7en-shell.conf │ │ ├── 7eo-shell.conf │ │ ├── 7fb-shell.conf │ │ ├── 7fn-shell.conf │ │ ├── 7fo-shell.conf │ │ ├── 8a-issue-2362.conf │ │ ├── 8b-issue-2362.conf │ │ ├── 8c-issue-2362.conf │ │ ├── 8d-issue-2362.conf │ │ ├── 8e-issue-2362.conf │ │ ├── 8f-issue-2362.conf │ │ ├── 8g-issue-2362.conf │ │ └── 8h-issue-2362.conf │ ├── users.conf │ ├── users.qrc │ └── users.schema.yaml ├── usersq │ ├── CMakeLists.txt │ ├── UsersQmlViewStep.cpp │ ├── UsersQmlViewStep.h │ ├── usersq-qt6.qml │ ├── usersq-qt6.qrc │ ├── usersq.conf │ ├── usersq.qml │ └── usersq.qrc ├── welcome │ ├── CMakeLists.txt │ ├── Config.cpp │ ├── Config.h │ ├── Tests.cpp │ ├── WelcomePage.cpp │ ├── WelcomePage.h │ ├── WelcomePage.ui │ ├── WelcomeViewStep.cpp │ ├── WelcomeViewStep.h │ ├── checker │ │ ├── CheckerContainer.cpp │ │ ├── CheckerContainer.h │ │ ├── GeneralRequirements.cpp │ │ ├── GeneralRequirements.h │ │ ├── ResultDelegate.cpp │ │ ├── ResultDelegate.h │ │ ├── ResultsListWidget.cpp │ │ ├── ResultsListWidget.h │ │ ├── partman_devices.c │ │ └── partman_devices.h │ ├── language-icon-128px.png │ ├── language-icon-128px.png.license │ ├── language-icon-48px.png │ ├── language-icon-48px.png.license │ ├── tests │ │ ├── 1a-checkinternet.conf │ │ ├── 1b-checkinternet.conf │ │ ├── 1c-checkinternet.conf │ │ ├── 1d-checkinternet.conf │ │ ├── 1e-checkinternet.conf │ │ ├── 1f-checkinternet.conf │ │ ├── 1g-checkinternet.conf │ │ └── 1h-checkinternet.conf │ ├── welcome.conf │ ├── welcome.qrc │ └── welcome.schema.yaml ├── welcomeq │ ├── CMakeLists.txt │ ├── Recommended.qml │ ├── Requirements.qml │ ├── WelcomeQmlViewStep.cpp │ ├── WelcomeQmlViewStep.h │ ├── img │ │ ├── chevron-left-solid.svg │ │ ├── chevron-left-solid.svg.license │ │ ├── language-icon-48px.png │ │ ├── language-icon-48px.png.license │ │ ├── squid.png │ │ └── squid.png.license │ ├── release_notes.qml │ ├── welcomeq-qt6.qml │ ├── welcomeq-qt6.qrc │ ├── welcomeq.conf │ ├── welcomeq.qml │ └── welcomeq.qrc ├── zfs │ ├── CMakeLists.txt │ ├── README.md │ ├── ZfsJob.cpp │ ├── ZfsJob.h │ ├── zfs.conf │ └── zfs.schema.yaml └── zfshostid │ ├── main.py │ ├── module.desc │ └── zfshostid.schema.yaml └── qml ├── CMakeLists.txt ├── calamares-qt5 ├── CMakeLists.txt └── slideshow │ ├── BackButton.qml │ ├── ForwardButton.qml │ ├── NavButton.qml │ ├── Presentation.qml │ ├── Slide.qml │ ├── SlideCounter.qml │ ├── qmldir │ └── qmldir.license └── calamares-qt6 ├── CMakeLists.txt └── slideshow ├── BackButton.qml ├── ForwardButton.qml ├── NavButton.qml ├── Presentation.qml ├── Slide.qml ├── SlideCounter.qml ├── qmldir └── qmldir.license /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/.clang-format -------------------------------------------------------------------------------- /.gersemirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/.gersemirc -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /3rdparty/kdsingleapplication/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/3rdparty/kdsingleapplication/src.pro -------------------------------------------------------------------------------- /3rdparty/pybind11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/3rdparty/pybind11/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/pybind11/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/3rdparty/pybind11/LICENSE -------------------------------------------------------------------------------- /3rdparty/pybind11/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/3rdparty/pybind11/MANIFEST.in -------------------------------------------------------------------------------- /3rdparty/pybind11/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/3rdparty/pybind11/README.rst -------------------------------------------------------------------------------- /3rdparty/pybind11/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/3rdparty/pybind11/SECURITY.md -------------------------------------------------------------------------------- /3rdparty/pybind11/include/pybind11/attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/3rdparty/pybind11/include/pybind11/attr.h -------------------------------------------------------------------------------- /3rdparty/pybind11/include/pybind11/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/3rdparty/pybind11/include/pybind11/cast.h -------------------------------------------------------------------------------- /3rdparty/pybind11/include/pybind11/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/3rdparty/pybind11/include/pybind11/eval.h -------------------------------------------------------------------------------- /3rdparty/pybind11/include/pybind11/gil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/3rdparty/pybind11/include/pybind11/gil.h -------------------------------------------------------------------------------- /3rdparty/pybind11/include/pybind11/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/3rdparty/pybind11/include/pybind11/stl.h -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES-3.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/CHANGES-3.2 -------------------------------------------------------------------------------- /CHANGES-3.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/CHANGES-3.3 -------------------------------------------------------------------------------- /CHANGES-3.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/CHANGES-3.4 -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeModules/AppStreamHelper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/CMakeModules/AppStreamHelper.cmake -------------------------------------------------------------------------------- /CMakeModules/CMakeColors.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/CMakeModules/CMakeColors.cmake -------------------------------------------------------------------------------- /CMakeModules/CalamaresAddLibrary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/CMakeModules/CalamaresAddLibrary.cmake -------------------------------------------------------------------------------- /CMakeModules/CalamaresAddPlugin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/CMakeModules/CalamaresAddPlugin.cmake -------------------------------------------------------------------------------- /CMakeModules/CalamaresAddTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/CMakeModules/CalamaresAddTest.cmake -------------------------------------------------------------------------------- /CMakeModules/CalamaresAutomoc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/CMakeModules/CalamaresAutomoc.cmake -------------------------------------------------------------------------------- /CMakeModules/ExtendedVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/CMakeModules/ExtendedVersion.cmake -------------------------------------------------------------------------------- /CMakeModules/FindCrypt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/CMakeModules/FindCrypt.cmake -------------------------------------------------------------------------------- /CMakeModules/FindLIBPARTED.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/CMakeModules/FindLIBPARTED.cmake -------------------------------------------------------------------------------- /CMakeModules/FindLibPWQuality.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/CMakeModules/FindLibPWQuality.cmake -------------------------------------------------------------------------------- /CMakeModules/FindYAMLCPP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/CMakeModules/FindYAMLCPP.cmake -------------------------------------------------------------------------------- /CMakeModules/KPMcoreHelper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/CMakeModules/KPMcoreHelper.cmake -------------------------------------------------------------------------------- /CMakeModules/i18n.qrc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/CMakeModules/i18n.qrc.in -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CalamaresConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/CalamaresConfig.cmake.in -------------------------------------------------------------------------------- /LICENSES/BSD-2-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/LICENSES/BSD-2-Clause.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/LICENSES/CC-BY-4.0.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/LICENSES/GPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-2.1-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/LICENSES/LGPL-2.1-only.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/LICENSES/LGPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/README.md -------------------------------------------------------------------------------- /calamares.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/calamares.desktop -------------------------------------------------------------------------------- /calamares.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/calamares.desktop.in -------------------------------------------------------------------------------- /ci/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/RELEASE.md -------------------------------------------------------------------------------- /ci/RELEASE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/RELEASE.sh -------------------------------------------------------------------------------- /ci/abicheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/abicheck.sh -------------------------------------------------------------------------------- /ci/astylerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/astylerc -------------------------------------------------------------------------------- /ci/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/build.sh -------------------------------------------------------------------------------- /ci/calamaresstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/calamaresstyle -------------------------------------------------------------------------------- /ci/configvalidator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/configvalidator.py -------------------------------------------------------------------------------- /ci/coverity-model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/coverity-model.c -------------------------------------------------------------------------------- /ci/deps-debian11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/deps-debian11.sh -------------------------------------------------------------------------------- /ci/deps-endeavouros.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/deps-endeavouros.sh -------------------------------------------------------------------------------- /ci/deps-fedora-qt6-boost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/deps-fedora-qt6-boost.sh -------------------------------------------------------------------------------- /ci/deps-fedora-qt6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/deps-fedora-qt6.sh -------------------------------------------------------------------------------- /ci/deps-kaos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/deps-kaos.sh -------------------------------------------------------------------------------- /ci/deps-neon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/deps-neon.sh -------------------------------------------------------------------------------- /ci/deps-opensuse-qt6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/deps-opensuse-qt6.sh -------------------------------------------------------------------------------- /ci/deps-opensuse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/deps-opensuse.sh -------------------------------------------------------------------------------- /ci/deps-ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/deps-ubuntu.sh -------------------------------------------------------------------------------- /ci/libcalamares/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/libcalamares/__init__.py -------------------------------------------------------------------------------- /ci/libcalamares/globalstorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/libcalamares/globalstorage.py -------------------------------------------------------------------------------- /ci/libcalamares/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/libcalamares/job.py -------------------------------------------------------------------------------- /ci/libcalamares/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/libcalamares/utils.py -------------------------------------------------------------------------------- /ci/txcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/txcheck.sh -------------------------------------------------------------------------------- /ci/txpull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/txpull.sh -------------------------------------------------------------------------------- /ci/txpush.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/txpush.sh -------------------------------------------------------------------------------- /ci/txreduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/txreduce.py -------------------------------------------------------------------------------- /ci/txstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/txstats.py -------------------------------------------------------------------------------- /ci/umount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/ci/umount.sh -------------------------------------------------------------------------------- /cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /data/completion/bash/calamares: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/completion/bash/calamares -------------------------------------------------------------------------------- /data/config-appimage/modules/locale.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/config-appimage/modules/locale.conf -------------------------------------------------------------------------------- /data/config-appimage/modules/users.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/config-appimage/modules/users.conf -------------------------------------------------------------------------------- /data/config-appimage/modules/welcome.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/config-appimage/modules/welcome.conf -------------------------------------------------------------------------------- /data/config-appimage/settings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/config-appimage/settings.conf -------------------------------------------------------------------------------- /data/example-root/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/example-root/README.md -------------------------------------------------------------------------------- /data/example-root/etc/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/example-root/etc/bash.bashrc -------------------------------------------------------------------------------- /data/example-root/etc/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/example-root/etc/group -------------------------------------------------------------------------------- /data/example-root/etc/issue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/example-root/etc/issue -------------------------------------------------------------------------------- /data/example-root/etc/locale.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/example-root/etc/locale.gen -------------------------------------------------------------------------------- /data/example-root/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/example-root/etc/profile -------------------------------------------------------------------------------- /data/example-root/etc/sudoers.d/10-installer: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/example-root/usr/share/zoneinfo/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/example-root/usr/share/zoneinfo/UTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/example-root/usr/share/zoneinfo/UTC -------------------------------------------------------------------------------- /data/example-root/usr/share/zoneinfo/Zulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/example-root/usr/share/zoneinfo/Zulu -------------------------------------------------------------------------------- /data/example-root/var/lib/dbus/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/example-root/var/lib/initramfs-tools: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/example-root/xbin/linux-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/example-root/xbin/linux-version -------------------------------------------------------------------------------- /data/example-root/xbin/useradd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/example-root/xbin/useradd -------------------------------------------------------------------------------- /data/images/boot-environment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/boot-environment.svg -------------------------------------------------------------------------------- /data/images/bugs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/bugs.svg -------------------------------------------------------------------------------- /data/images/bugs.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2015 Teo Mrnjavac 2 | SPDX-License-Identifier: GPL-3.0-or-later 3 | -------------------------------------------------------------------------------- /data/images/fail.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/fail.svgz -------------------------------------------------------------------------------- /data/images/fail.svgz.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2014 Teo Mrnjavac 2 | SPDX-License-Identifier: GPL-3.0-or-later 3 | -------------------------------------------------------------------------------- /data/images/help-donate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/help-donate.svg -------------------------------------------------------------------------------- /data/images/help-donate.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/help-donate.svg.license -------------------------------------------------------------------------------- /data/images/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/help.svg -------------------------------------------------------------------------------- /data/images/help.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2015 Teo Mrnjavac 2 | SPDX-License-Identifier: GPL-3.0-or-later 3 | -------------------------------------------------------------------------------- /data/images/information.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/information.svgz -------------------------------------------------------------------------------- /data/images/information.svgz.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2014 Teo Mrnjavac 2 | SPDX-License-Identifier: GPL-3.0-or-later 3 | -------------------------------------------------------------------------------- /data/images/no.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/no.svgz -------------------------------------------------------------------------------- /data/images/no.svgz.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2014 Teo Mrnjavac 2 | SPDX-License-Identifier: GPL-3.0-or-later 3 | -------------------------------------------------------------------------------- /data/images/partition-alongside.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/partition-alongside.svg -------------------------------------------------------------------------------- /data/images/partition-disk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/partition-disk.svg -------------------------------------------------------------------------------- /data/images/partition-erase-auto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/partition-erase-auto.svg -------------------------------------------------------------------------------- /data/images/partition-manual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/partition-manual.svg -------------------------------------------------------------------------------- /data/images/partition-partition.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/partition-partition.svg -------------------------------------------------------------------------------- /data/images/partition-replace-os.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/partition-replace-os.svg -------------------------------------------------------------------------------- /data/images/partition-table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/partition-table.svg -------------------------------------------------------------------------------- /data/images/release.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/release.svg -------------------------------------------------------------------------------- /data/images/release.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2015 Teo Mrnjavac 2 | SPDX-License-Identifier: GPL-3.0-or-later 3 | -------------------------------------------------------------------------------- /data/images/squid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/squid.png -------------------------------------------------------------------------------- /data/images/squid.png.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2014 Teo Mrnjavac 2 | SPDX-License-Identifier: GPL-3.0-or-later 3 | -------------------------------------------------------------------------------- /data/images/squid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/squid.svg -------------------------------------------------------------------------------- /data/images/squid.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2014 Teo Mrnjavac 2 | SPDX-License-Identifier: GPL-3.0-or-later 3 | -------------------------------------------------------------------------------- /data/images/state-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/state-error.svg -------------------------------------------------------------------------------- /data/images/state-error.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/state-error.svg.license -------------------------------------------------------------------------------- /data/images/state-ok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/state-ok.svg -------------------------------------------------------------------------------- /data/images/state-ok.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/state-ok.svg.license -------------------------------------------------------------------------------- /data/images/state-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/state-warning.svg -------------------------------------------------------------------------------- /data/images/state-warning.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/state-warning.svg.license -------------------------------------------------------------------------------- /data/images/yes.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/data/images/yes.svgz -------------------------------------------------------------------------------- /data/images/yes.svgz.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2014 Teo Mrnjavac 2 | SPDX-License-Identifier: GPL-3.0-or-later 3 | -------------------------------------------------------------------------------- /io.calamares.calamares.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/io.calamares.calamares.appdata.xml -------------------------------------------------------------------------------- /io.calamares.calamares.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/io.calamares.calamares.policy -------------------------------------------------------------------------------- /lang/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/CMakeLists.txt -------------------------------------------------------------------------------- /lang/calamares_ar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_ar.ts -------------------------------------------------------------------------------- /lang/calamares_as.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_as.ts -------------------------------------------------------------------------------- /lang/calamares_ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_ast.ts -------------------------------------------------------------------------------- /lang/calamares_az.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_az.ts -------------------------------------------------------------------------------- /lang/calamares_az_AZ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_az_AZ.ts -------------------------------------------------------------------------------- /lang/calamares_be.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_be.ts -------------------------------------------------------------------------------- /lang/calamares_bg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_bg.ts -------------------------------------------------------------------------------- /lang/calamares_bn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_bn.ts -------------------------------------------------------------------------------- /lang/calamares_ca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_ca.ts -------------------------------------------------------------------------------- /lang/calamares_ca@valencia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_ca@valencia.ts -------------------------------------------------------------------------------- /lang/calamares_cs_CZ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_cs_CZ.ts -------------------------------------------------------------------------------- /lang/calamares_da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_da.ts -------------------------------------------------------------------------------- /lang/calamares_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_de.ts -------------------------------------------------------------------------------- /lang/calamares_el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_el.ts -------------------------------------------------------------------------------- /lang/calamares_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_en.ts -------------------------------------------------------------------------------- /lang/calamares_en_GB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_en_GB.ts -------------------------------------------------------------------------------- /lang/calamares_eo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_eo.ts -------------------------------------------------------------------------------- /lang/calamares_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_es.ts -------------------------------------------------------------------------------- /lang/calamares_es_AR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_es_AR.ts -------------------------------------------------------------------------------- /lang/calamares_es_MX.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_es_MX.ts -------------------------------------------------------------------------------- /lang/calamares_es_PR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_es_PR.ts -------------------------------------------------------------------------------- /lang/calamares_et.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_et.ts -------------------------------------------------------------------------------- /lang/calamares_eu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_eu.ts -------------------------------------------------------------------------------- /lang/calamares_fa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_fa.ts -------------------------------------------------------------------------------- /lang/calamares_fi_FI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_fi_FI.ts -------------------------------------------------------------------------------- /lang/calamares_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_fr.ts -------------------------------------------------------------------------------- /lang/calamares_fur.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_fur.ts -------------------------------------------------------------------------------- /lang/calamares_gl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_gl.ts -------------------------------------------------------------------------------- /lang/calamares_gu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_gu.ts -------------------------------------------------------------------------------- /lang/calamares_he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_he.ts -------------------------------------------------------------------------------- /lang/calamares_hi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_hi.ts -------------------------------------------------------------------------------- /lang/calamares_hr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_hr.ts -------------------------------------------------------------------------------- /lang/calamares_hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_hu.ts -------------------------------------------------------------------------------- /lang/calamares_ia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_ia.ts -------------------------------------------------------------------------------- /lang/calamares_id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_id.ts -------------------------------------------------------------------------------- /lang/calamares_ie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_ie.ts -------------------------------------------------------------------------------- /lang/calamares_is.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_is.ts -------------------------------------------------------------------------------- /lang/calamares_it_IT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_it_IT.ts -------------------------------------------------------------------------------- /lang/calamares_ja-Hira.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_ja-Hira.ts -------------------------------------------------------------------------------- /lang/calamares_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_ja.ts -------------------------------------------------------------------------------- /lang/calamares_ka.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_ka.ts -------------------------------------------------------------------------------- /lang/calamares_kk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_kk.ts -------------------------------------------------------------------------------- /lang/calamares_kn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_kn.ts -------------------------------------------------------------------------------- /lang/calamares_ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_ko.ts -------------------------------------------------------------------------------- /lang/calamares_lo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_lo.ts -------------------------------------------------------------------------------- /lang/calamares_lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_lt.ts -------------------------------------------------------------------------------- /lang/calamares_lv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_lv.ts -------------------------------------------------------------------------------- /lang/calamares_mk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_mk.ts -------------------------------------------------------------------------------- /lang/calamares_ml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_ml.ts -------------------------------------------------------------------------------- /lang/calamares_mr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_mr.ts -------------------------------------------------------------------------------- /lang/calamares_nb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_nb.ts -------------------------------------------------------------------------------- /lang/calamares_ne_NP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_ne_NP.ts -------------------------------------------------------------------------------- /lang/calamares_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_nl.ts -------------------------------------------------------------------------------- /lang/calamares_oc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_oc.ts -------------------------------------------------------------------------------- /lang/calamares_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_pl.ts -------------------------------------------------------------------------------- /lang/calamares_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_pt_BR.ts -------------------------------------------------------------------------------- /lang/calamares_pt_PT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_pt_PT.ts -------------------------------------------------------------------------------- /lang/calamares_ro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_ro.ts -------------------------------------------------------------------------------- /lang/calamares_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_ru.ts -------------------------------------------------------------------------------- /lang/calamares_si.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_si.ts -------------------------------------------------------------------------------- /lang/calamares_sk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_sk.ts -------------------------------------------------------------------------------- /lang/calamares_sl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_sl.ts -------------------------------------------------------------------------------- /lang/calamares_sq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_sq.ts -------------------------------------------------------------------------------- /lang/calamares_sr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_sr.ts -------------------------------------------------------------------------------- /lang/calamares_sr@latin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_sr@latin.ts -------------------------------------------------------------------------------- /lang/calamares_sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_sv.ts -------------------------------------------------------------------------------- /lang/calamares_ta_IN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_ta_IN.ts -------------------------------------------------------------------------------- /lang/calamares_te.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_te.ts -------------------------------------------------------------------------------- /lang/calamares_tg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_tg.ts -------------------------------------------------------------------------------- /lang/calamares_th.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_th.ts -------------------------------------------------------------------------------- /lang/calamares_tr_TR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_tr_TR.ts -------------------------------------------------------------------------------- /lang/calamares_uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_uk.ts -------------------------------------------------------------------------------- /lang/calamares_ur.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_ur.ts -------------------------------------------------------------------------------- /lang/calamares_uz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_uz.ts -------------------------------------------------------------------------------- /lang/calamares_vi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_vi.ts -------------------------------------------------------------------------------- /lang/calamares_zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_zh.ts -------------------------------------------------------------------------------- /lang/calamares_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_zh_CN.ts -------------------------------------------------------------------------------- /lang/calamares_zh_HK.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_zh_HK.ts -------------------------------------------------------------------------------- /lang/calamares_zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/calamares_zh_TW.ts -------------------------------------------------------------------------------- /lang/kb_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/kb_en.ts -------------------------------------------------------------------------------- /lang/kb_tg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/kb_tg.ts -------------------------------------------------------------------------------- /lang/python.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python.pot -------------------------------------------------------------------------------- /lang/python/ar/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/ar/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/as/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/as/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/ast/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/ast/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/az/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/az/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/az_AZ/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/az_AZ/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/be/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/be/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/bg/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/bg/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/bn/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/bn/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/ca/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/ca/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/cs_CZ/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/cs_CZ/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/da/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/da/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/de/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/de/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/el/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/el/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/en_GB/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/en_GB/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/eo/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/eo/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/es/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/es/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/es_AR/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/es_AR/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/es_MX/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/es_MX/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/es_PR/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/es_PR/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/et/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/et/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/eu/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/eu/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/fa/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/fa/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/fi_FI/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/fi_FI/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/fr/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/fr/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/fur/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/fur/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/gl/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/gl/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/gu/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/gu/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/he/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/he/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/hi/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/hi/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/hr/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/hr/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/hu/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/hu/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/ia/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/ia/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/id/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/id/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/ie/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/ie/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/is/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/is/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/it_IT/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/it_IT/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/ja-Hira/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/ja-Hira/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/ja/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/ja/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/ka/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/ka/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/kk/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/kk/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/kn/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/kn/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/ko/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/ko/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/lo/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/lo/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/lt/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/lt/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/lv/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/lv/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/mk/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/mk/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/ml/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/ml/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/mr/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/mr/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/nb/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/nb/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/ne_NP/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/ne_NP/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/nl/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/nl/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/oc/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/oc/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/pl/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/pl/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/pt_BR/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/pt_BR/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/pt_PT/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/pt_PT/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/ro/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/ro/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/ru/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/ru/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/si/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/si/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/sk/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/sk/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/sl/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/sl/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/sq/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/sq/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/sr/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/sr/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/sv/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/sv/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/te/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/te/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/tg/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/tg/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/th/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/th/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/uk/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/uk/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/ur/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/ur/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/uz/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/uz/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/vi/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/vi/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/python/zh/LC_MESSAGES/python.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/python/zh/LC_MESSAGES/python.po -------------------------------------------------------------------------------- /lang/txload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/txload.cpp -------------------------------------------------------------------------------- /lang/tz_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/tz_en.ts -------------------------------------------------------------------------------- /lang/tz_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/tz_nl.ts -------------------------------------------------------------------------------- /lang/tz_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/tz_ru.ts -------------------------------------------------------------------------------- /lang/tz_sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/tz_sv.ts -------------------------------------------------------------------------------- /lang/tz_tg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/tz_tg.ts -------------------------------------------------------------------------------- /lang/tz_uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/tz_uk.ts -------------------------------------------------------------------------------- /lang/tz_vi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/lang/tz_vi.ts -------------------------------------------------------------------------------- /man/calamares.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/man/calamares.8 -------------------------------------------------------------------------------- /settings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/settings.conf -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/branding/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/branding/CMakeLists.txt -------------------------------------------------------------------------------- /src/branding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/branding/README.md -------------------------------------------------------------------------------- /src/branding/default/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/branding/default/banner.png -------------------------------------------------------------------------------- /src/branding/default/branding.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/branding/default/branding.desc -------------------------------------------------------------------------------- /src/branding/default/languages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/branding/default/languages.png -------------------------------------------------------------------------------- /src/branding/default/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/branding/default/show.qml -------------------------------------------------------------------------------- /src/branding/default/squid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/branding/default/squid.png -------------------------------------------------------------------------------- /src/branding/default/stylesheet.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/branding/default/stylesheet.qss -------------------------------------------------------------------------------- /src/calamares/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/calamares/CMakeLists.txt -------------------------------------------------------------------------------- /src/calamares/CalamaresApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/calamares/CalamaresApplication.cpp -------------------------------------------------------------------------------- /src/calamares/CalamaresApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/calamares/CalamaresApplication.h -------------------------------------------------------------------------------- /src/calamares/CalamaresWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/calamares/CalamaresWindow.cpp -------------------------------------------------------------------------------- /src/calamares/CalamaresWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/calamares/CalamaresWindow.h -------------------------------------------------------------------------------- /src/calamares/DebugWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/calamares/DebugWindow.cpp -------------------------------------------------------------------------------- /src/calamares/DebugWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/calamares/DebugWindow.h -------------------------------------------------------------------------------- /src/calamares/DebugWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/calamares/DebugWindow.ui -------------------------------------------------------------------------------- /src/calamares/VariantModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/calamares/VariantModel.cpp -------------------------------------------------------------------------------- /src/calamares/VariantModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/calamares/VariantModel.h -------------------------------------------------------------------------------- /src/calamares/calamares-navigation.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/calamares/calamares-navigation.qml -------------------------------------------------------------------------------- /src/calamares/calamares-sidebar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/calamares/calamares-sidebar.qml -------------------------------------------------------------------------------- /src/calamares/calamares.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/calamares/calamares.qrc -------------------------------------------------------------------------------- /src/calamares/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/calamares/main.cpp -------------------------------------------------------------------------------- /src/calamares/test_conf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/calamares/test_conf.cpp -------------------------------------------------------------------------------- /src/calamares/testmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/calamares/testmain.cpp -------------------------------------------------------------------------------- /src/libcalamares/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/CMakeLists.txt -------------------------------------------------------------------------------- /src/libcalamares/CalamaresAbout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/CalamaresAbout.cpp -------------------------------------------------------------------------------- /src/libcalamares/CalamaresAbout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/CalamaresAbout.h -------------------------------------------------------------------------------- /src/libcalamares/CalamaresConfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/CalamaresConfig.h.in -------------------------------------------------------------------------------- /src/libcalamares/CalamaresVersion.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/CalamaresVersion.h.in -------------------------------------------------------------------------------- /src/libcalamares/CppJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/CppJob.cpp -------------------------------------------------------------------------------- /src/libcalamares/CppJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/CppJob.h -------------------------------------------------------------------------------- /src/libcalamares/DllMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/DllMacro.h -------------------------------------------------------------------------------- /src/libcalamares/GlobalStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/GlobalStorage.cpp -------------------------------------------------------------------------------- /src/libcalamares/GlobalStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/GlobalStorage.h -------------------------------------------------------------------------------- /src/libcalamares/Job.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/Job.cpp -------------------------------------------------------------------------------- /src/libcalamares/Job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/Job.h -------------------------------------------------------------------------------- /src/libcalamares/JobExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/JobExample.cpp -------------------------------------------------------------------------------- /src/libcalamares/JobExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/JobExample.h -------------------------------------------------------------------------------- /src/libcalamares/JobQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/JobQueue.cpp -------------------------------------------------------------------------------- /src/libcalamares/JobQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/JobQueue.h -------------------------------------------------------------------------------- /src/libcalamares/ProcessJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/ProcessJob.cpp -------------------------------------------------------------------------------- /src/libcalamares/ProcessJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/ProcessJob.h -------------------------------------------------------------------------------- /src/libcalamares/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/Settings.cpp -------------------------------------------------------------------------------- /src/libcalamares/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/Settings.h -------------------------------------------------------------------------------- /src/libcalamares/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/Tests.cpp -------------------------------------------------------------------------------- /src/libcalamares/compat/CheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/compat/CheckBox.h -------------------------------------------------------------------------------- /src/libcalamares/compat/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/compat/Mutex.h -------------------------------------------------------------------------------- /src/libcalamares/compat/Size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/compat/Size.h -------------------------------------------------------------------------------- /src/libcalamares/compat/Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/compat/Variant.h -------------------------------------------------------------------------------- /src/libcalamares/compat/Xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/compat/Xml.h -------------------------------------------------------------------------------- /src/libcalamares/geoip/GeoIPFixed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/geoip/GeoIPFixed.cpp -------------------------------------------------------------------------------- /src/libcalamares/geoip/GeoIPFixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/geoip/GeoIPFixed.h -------------------------------------------------------------------------------- /src/libcalamares/geoip/GeoIPJSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/geoip/GeoIPJSON.cpp -------------------------------------------------------------------------------- /src/libcalamares/geoip/GeoIPJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/geoip/GeoIPJSON.h -------------------------------------------------------------------------------- /src/libcalamares/geoip/GeoIPTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/geoip/GeoIPTests.cpp -------------------------------------------------------------------------------- /src/libcalamares/geoip/GeoIPTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/geoip/GeoIPTests.h -------------------------------------------------------------------------------- /src/libcalamares/geoip/GeoIPXML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/geoip/GeoIPXML.cpp -------------------------------------------------------------------------------- /src/libcalamares/geoip/GeoIPXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/geoip/GeoIPXML.h -------------------------------------------------------------------------------- /src/libcalamares/geoip/Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/geoip/Handler.cpp -------------------------------------------------------------------------------- /src/libcalamares/geoip/Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/geoip/Handler.h -------------------------------------------------------------------------------- /src/libcalamares/geoip/Interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/geoip/Interface.cpp -------------------------------------------------------------------------------- /src/libcalamares/geoip/Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/geoip/Interface.h -------------------------------------------------------------------------------- /src/libcalamares/geoip/test_geoip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/geoip/test_geoip.cpp -------------------------------------------------------------------------------- /src/libcalamares/locale/Global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/locale/Global.cpp -------------------------------------------------------------------------------- /src/libcalamares/locale/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/locale/Global.h -------------------------------------------------------------------------------- /src/libcalamares/locale/Lookup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/locale/Lookup.cpp -------------------------------------------------------------------------------- /src/libcalamares/locale/Lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/locale/Lookup.h -------------------------------------------------------------------------------- /src/libcalamares/locale/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/locale/Tests.cpp -------------------------------------------------------------------------------- /src/libcalamares/locale/TimeZone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/locale/TimeZone.cpp -------------------------------------------------------------------------------- /src/libcalamares/locale/TimeZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/locale/TimeZone.h -------------------------------------------------------------------------------- /src/libcalamares/locale/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/locale/Translation.h -------------------------------------------------------------------------------- /src/libcalamares/modulesystem/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/modulesystem/Config.h -------------------------------------------------------------------------------- /src/libcalamares/modulesystem/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/modulesystem/Module.h -------------------------------------------------------------------------------- /src/libcalamares/modulesystem/Preset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/modulesystem/Preset.h -------------------------------------------------------------------------------- /src/libcalamares/network/Manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/network/Manager.cpp -------------------------------------------------------------------------------- /src/libcalamares/network/Manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/network/Manager.h -------------------------------------------------------------------------------- /src/libcalamares/network/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/network/Tests.cpp -------------------------------------------------------------------------------- /src/libcalamares/network/Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/network/Tests.h -------------------------------------------------------------------------------- /src/libcalamares/packages/Globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/packages/Globals.cpp -------------------------------------------------------------------------------- /src/libcalamares/packages/Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/packages/Globals.h -------------------------------------------------------------------------------- /src/libcalamares/packages/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/packages/Tests.cpp -------------------------------------------------------------------------------- /src/libcalamares/partition/AutoMount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/partition/AutoMount.h -------------------------------------------------------------------------------- /src/libcalamares/partition/Global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/partition/Global.cpp -------------------------------------------------------------------------------- /src/libcalamares/partition/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/partition/Global.h -------------------------------------------------------------------------------- /src/libcalamares/partition/KPMHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/partition/KPMHelper.h -------------------------------------------------------------------------------- /src/libcalamares/partition/Mount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/partition/Mount.cpp -------------------------------------------------------------------------------- /src/libcalamares/partition/Mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/partition/Mount.h -------------------------------------------------------------------------------- /src/libcalamares/partition/Sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/partition/Sync.cpp -------------------------------------------------------------------------------- /src/libcalamares/partition/Sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/partition/Sync.h -------------------------------------------------------------------------------- /src/libcalamares/partition/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/partition/Tests.cpp -------------------------------------------------------------------------------- /src/libcalamares/pybind11/Api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/pybind11/Api.cpp -------------------------------------------------------------------------------- /src/libcalamares/pybind11/Api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/pybind11/Api.h -------------------------------------------------------------------------------- /src/libcalamares/pybind11/PythonJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/pybind11/PythonJob.h -------------------------------------------------------------------------------- /src/libcalamares/pyboost/PythonJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/pyboost/PythonJob.cpp -------------------------------------------------------------------------------- /src/libcalamares/pyboost/PythonJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/pyboost/PythonJob.h -------------------------------------------------------------------------------- /src/libcalamares/pyboost/PythonTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/pyboost/PythonTypes.h -------------------------------------------------------------------------------- /src/libcalamares/python/Api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/python/Api.cpp -------------------------------------------------------------------------------- /src/libcalamares/python/Api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/python/Api.h -------------------------------------------------------------------------------- /src/libcalamares/python/Variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/python/Variant.cpp -------------------------------------------------------------------------------- /src/libcalamares/python/Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/python/Variant.h -------------------------------------------------------------------------------- /src/libcalamares/utils/CommandList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/CommandList.cpp -------------------------------------------------------------------------------- /src/libcalamares/utils/CommandList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/CommandList.h -------------------------------------------------------------------------------- /src/libcalamares/utils/Dirs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/Dirs.cpp -------------------------------------------------------------------------------- /src/libcalamares/utils/Dirs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/Dirs.h -------------------------------------------------------------------------------- /src/libcalamares/utils/Entropy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/Entropy.cpp -------------------------------------------------------------------------------- /src/libcalamares/utils/Entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/Entropy.h -------------------------------------------------------------------------------- /src/libcalamares/utils/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/Logger.cpp -------------------------------------------------------------------------------- /src/libcalamares/utils/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/Logger.h -------------------------------------------------------------------------------- /src/libcalamares/utils/NamedEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/NamedEnum.h -------------------------------------------------------------------------------- /src/libcalamares/utils/NamedSuffix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/NamedSuffix.h -------------------------------------------------------------------------------- /src/libcalamares/utils/Permissions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/Permissions.cpp -------------------------------------------------------------------------------- /src/libcalamares/utils/Permissions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/Permissions.h -------------------------------------------------------------------------------- /src/libcalamares/utils/PluginFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/PluginFactory.h -------------------------------------------------------------------------------- /src/libcalamares/utils/RAII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/RAII.h -------------------------------------------------------------------------------- /src/libcalamares/utils/Retranslator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/Retranslator.h -------------------------------------------------------------------------------- /src/libcalamares/utils/Runner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/Runner.cpp -------------------------------------------------------------------------------- /src/libcalamares/utils/Runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/Runner.h -------------------------------------------------------------------------------- /src/libcalamares/utils/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/String.cpp -------------------------------------------------------------------------------- /src/libcalamares/utils/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/String.h -------------------------------------------------------------------------------- /src/libcalamares/utils/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/System.cpp -------------------------------------------------------------------------------- /src/libcalamares/utils/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/System.h -------------------------------------------------------------------------------- /src/libcalamares/utils/TestPaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/TestPaths.cpp -------------------------------------------------------------------------------- /src/libcalamares/utils/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/Tests.cpp -------------------------------------------------------------------------------- /src/libcalamares/utils/Traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/Traits.h -------------------------------------------------------------------------------- /src/libcalamares/utils/UMask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/UMask.cpp -------------------------------------------------------------------------------- /src/libcalamares/utils/UMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/UMask.h -------------------------------------------------------------------------------- /src/libcalamares/utils/Units.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/Units.h -------------------------------------------------------------------------------- /src/libcalamares/utils/Variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/Variant.cpp -------------------------------------------------------------------------------- /src/libcalamares/utils/Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/Variant.h -------------------------------------------------------------------------------- /src/libcalamares/utils/Yaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/Yaml.cpp -------------------------------------------------------------------------------- /src/libcalamares/utils/Yaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/Yaml.h -------------------------------------------------------------------------------- /src/libcalamares/utils/moc-warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamares/utils/moc-warnings.h -------------------------------------------------------------------------------- /src/libcalamaresui/Branding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamaresui/Branding.cpp -------------------------------------------------------------------------------- /src/libcalamaresui/Branding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamaresui/Branding.h -------------------------------------------------------------------------------- /src/libcalamaresui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamaresui/CMakeLists.txt -------------------------------------------------------------------------------- /src/libcalamaresui/ViewManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamaresui/ViewManager.cpp -------------------------------------------------------------------------------- /src/libcalamaresui/ViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamaresui/ViewManager.h -------------------------------------------------------------------------------- /src/libcalamaresui/libcalamaresui.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamaresui/libcalamaresui.qrc -------------------------------------------------------------------------------- /src/libcalamaresui/utils/Gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamaresui/utils/Gui.cpp -------------------------------------------------------------------------------- /src/libcalamaresui/utils/Gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamaresui/utils/Gui.h -------------------------------------------------------------------------------- /src/libcalamaresui/utils/Paste.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamaresui/utils/Paste.cpp -------------------------------------------------------------------------------- /src/libcalamaresui/utils/Paste.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamaresui/utils/Paste.h -------------------------------------------------------------------------------- /src/libcalamaresui/utils/Qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamaresui/utils/Qml.cpp -------------------------------------------------------------------------------- /src/libcalamaresui/utils/Qml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamaresui/utils/Qml.h -------------------------------------------------------------------------------- /src/libcalamaresui/utils/QtCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamaresui/utils/QtCompat.h -------------------------------------------------------------------------------- /src/libcalamaresui/utils/TestPaste.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamaresui/utils/TestPaste.cpp -------------------------------------------------------------------------------- /src/libcalamaresui/widgets/LogWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/libcalamaresui/widgets/LogWidget.h -------------------------------------------------------------------------------- /src/modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/README.md -------------------------------------------------------------------------------- /src/modules/bootloader/bootloader.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/bootloader/bootloader.conf -------------------------------------------------------------------------------- /src/modules/bootloader/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/bootloader/main.py -------------------------------------------------------------------------------- /src/modules/bootloader/module.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/bootloader/module.desc -------------------------------------------------------------------------------- /src/modules/bootloader/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/bootloader/test.yaml -------------------------------------------------------------------------------- /src/modules/contextualprocess/Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/contextualprocess/Tests.h -------------------------------------------------------------------------------- /src/modules/displaymanager/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/displaymanager/main.py -------------------------------------------------------------------------------- /src/modules/displaymanager/module.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/displaymanager/module.desc -------------------------------------------------------------------------------- /src/modules/dracut/dracut.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/dracut/dracut.conf -------------------------------------------------------------------------------- /src/modules/dracut/dracut.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/dracut/dracut.schema.yaml -------------------------------------------------------------------------------- /src/modules/dracut/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/dracut/main.py -------------------------------------------------------------------------------- /src/modules/dracut/module.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/dracut/module.desc -------------------------------------------------------------------------------- /src/modules/dummycpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/dummycpp/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/dummycpp/DummyCppJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/dummycpp/DummyCppJob.cpp -------------------------------------------------------------------------------- /src/modules/dummycpp/DummyCppJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/dummycpp/DummyCppJob.h -------------------------------------------------------------------------------- /src/modules/dummycpp/dummycpp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/dummycpp/dummycpp.conf -------------------------------------------------------------------------------- /src/modules/dummycpp/module.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/dummycpp/module.desc -------------------------------------------------------------------------------- /src/modules/dummyprocess/module.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/dummyprocess/module.desc -------------------------------------------------------------------------------- /src/modules/dummypython/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/dummypython/main.py -------------------------------------------------------------------------------- /src/modules/dummypython/module.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/dummypython/module.desc -------------------------------------------------------------------------------- /src/modules/dummypython/tests/1.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/dummypython/tests/1.global -------------------------------------------------------------------------------- /src/modules/finished/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/finished/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/finished/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/finished/Config.cpp -------------------------------------------------------------------------------- /src/modules/finished/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/finished/Config.h -------------------------------------------------------------------------------- /src/modules/finished/FinishedPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/finished/FinishedPage.cpp -------------------------------------------------------------------------------- /src/modules/finished/FinishedPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/finished/FinishedPage.h -------------------------------------------------------------------------------- /src/modules/finished/FinishedPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/finished/FinishedPage.ui -------------------------------------------------------------------------------- /src/modules/finished/finished.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/finished/finished.conf -------------------------------------------------------------------------------- /src/modules/finishedq/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/finishedq/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/finishedq/finishedq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/finishedq/finishedq.conf -------------------------------------------------------------------------------- /src/modules/finishedq/finishedq.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/finishedq/finishedq.qml -------------------------------------------------------------------------------- /src/modules/finishedq/finishedq.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/finishedq/finishedq.qrc -------------------------------------------------------------------------------- /src/modules/finishedq/seedling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/finishedq/seedling.svg -------------------------------------------------------------------------------- /src/modules/fsresizer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/fsresizer/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/fsresizer/ResizeFSJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/fsresizer/ResizeFSJob.cpp -------------------------------------------------------------------------------- /src/modules/fsresizer/ResizeFSJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/fsresizer/ResizeFSJob.h -------------------------------------------------------------------------------- /src/modules/fsresizer/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/fsresizer/Tests.cpp -------------------------------------------------------------------------------- /src/modules/fsresizer/Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/fsresizer/Tests.h -------------------------------------------------------------------------------- /src/modules/fsresizer/fsresizer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/fsresizer/fsresizer.conf -------------------------------------------------------------------------------- /src/modules/fstab/fstab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/fstab/fstab.conf -------------------------------------------------------------------------------- /src/modules/fstab/fstab.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/fstab/fstab.schema.yaml -------------------------------------------------------------------------------- /src/modules/fstab/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/fstab/main.py -------------------------------------------------------------------------------- /src/modules/fstab/module.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/fstab/module.desc -------------------------------------------------------------------------------- /src/modules/fstab/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/fstab/test.yaml -------------------------------------------------------------------------------- /src/modules/fstab/test2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/fstab/test2.yaml -------------------------------------------------------------------------------- /src/modules/grubcfg/grubcfg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/grubcfg/grubcfg.conf -------------------------------------------------------------------------------- /src/modules/grubcfg/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/grubcfg/main.py -------------------------------------------------------------------------------- /src/modules/grubcfg/module.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/grubcfg/module.desc -------------------------------------------------------------------------------- /src/modules/grubcfg/tests/1.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/grubcfg/tests/1.global -------------------------------------------------------------------------------- /src/modules/grubcfg/tests/2.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/grubcfg/tests/2.global -------------------------------------------------------------------------------- /src/modules/grubcfg/tests/2.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/grubcfg/tests/2.job -------------------------------------------------------------------------------- /src/modules/grubcfg/tests/3.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/grubcfg/tests/3.global -------------------------------------------------------------------------------- /src/modules/grubcfg/tests/3.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/grubcfg/tests/3.job -------------------------------------------------------------------------------- /src/modules/grubcfg/tests/4.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/grubcfg/tests/4.global -------------------------------------------------------------------------------- /src/modules/grubcfg/tests/4.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/grubcfg/tests/4.job -------------------------------------------------------------------------------- /src/modules/hostinfo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/hostinfo/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/hostinfo/HostInfoJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/hostinfo/HostInfoJob.cpp -------------------------------------------------------------------------------- /src/modules/hostinfo/HostInfoJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/hostinfo/HostInfoJob.h -------------------------------------------------------------------------------- /src/modules/hostinfo/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/hostinfo/Tests.cpp -------------------------------------------------------------------------------- /src/modules/hwclock/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/hwclock/main.py -------------------------------------------------------------------------------- /src/modules/hwclock/module.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/hwclock/module.desc -------------------------------------------------------------------------------- /src/modules/initcpio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/initcpio/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/initcpio/InitcpioJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/initcpio/InitcpioJob.cpp -------------------------------------------------------------------------------- /src/modules/initcpio/InitcpioJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/initcpio/InitcpioJob.h -------------------------------------------------------------------------------- /src/modules/initcpio/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/initcpio/Tests.cpp -------------------------------------------------------------------------------- /src/modules/initcpio/Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/initcpio/Tests.h -------------------------------------------------------------------------------- /src/modules/initcpio/initcpio.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/initcpio/initcpio.conf -------------------------------------------------------------------------------- /src/modules/initcpiocfg/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/initcpiocfg/main.py -------------------------------------------------------------------------------- /src/modules/initcpiocfg/module.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/initcpiocfg/module.desc -------------------------------------------------------------------------------- /src/modules/initcpiocfg/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/initcpiocfg/test.yaml -------------------------------------------------------------------------------- /src/modules/initramfs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/initramfs/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/initramfs/InitramfsJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/initramfs/InitramfsJob.cpp -------------------------------------------------------------------------------- /src/modules/initramfs/InitramfsJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/initramfs/InitramfsJob.h -------------------------------------------------------------------------------- /src/modules/initramfs/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/initramfs/Tests.cpp -------------------------------------------------------------------------------- /src/modules/initramfs/Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/initramfs/Tests.h -------------------------------------------------------------------------------- /src/modules/initramfs/initramfs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/initramfs/initramfs.conf -------------------------------------------------------------------------------- /src/modules/initramfscfg/encrypt_hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/initramfscfg/encrypt_hook -------------------------------------------------------------------------------- /src/modules/initramfscfg/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/initramfscfg/main.py -------------------------------------------------------------------------------- /src/modules/initramfscfg/module.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/initramfscfg/module.desc -------------------------------------------------------------------------------- /src/modules/keyboard/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboard/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/keyboard/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboard/Config.cpp -------------------------------------------------------------------------------- /src/modules/keyboard/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboard/Config.h -------------------------------------------------------------------------------- /src/modules/keyboard/KeyboardPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboard/KeyboardPage.cpp -------------------------------------------------------------------------------- /src/modules/keyboard/KeyboardPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboard/KeyboardPage.h -------------------------------------------------------------------------------- /src/modules/keyboard/KeyboardPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboard/KeyboardPage.ui -------------------------------------------------------------------------------- /src/modules/keyboard/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboard/Tests.cpp -------------------------------------------------------------------------------- /src/modules/keyboard/kbd-model-map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboard/kbd-model-map -------------------------------------------------------------------------------- /src/modules/keyboard/keyboard.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboard/keyboard.conf -------------------------------------------------------------------------------- /src/modules/keyboard/keyboard.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboard/keyboard.qrc -------------------------------------------------------------------------------- /src/modules/keyboard/non-ascii-layouts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboard/non-ascii-layouts -------------------------------------------------------------------------------- /src/modules/keyboardq/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/keyboardq/data/Key-qt6.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/data/Key-qt6.qml -------------------------------------------------------------------------------- /src/modules/keyboardq/data/Key.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/data/Key.qml -------------------------------------------------------------------------------- /src/modules/keyboardq/data/afgani.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/data/afgani.xml -------------------------------------------------------------------------------- /src/modules/keyboardq/data/ar-qt6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/data/ar-qt6.xml -------------------------------------------------------------------------------- /src/modules/keyboardq/data/ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/data/ar.xml -------------------------------------------------------------------------------- /src/modules/keyboardq/data/de-qt6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/data/de-qt6.xml -------------------------------------------------------------------------------- /src/modules/keyboardq/data/de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/data/de.xml -------------------------------------------------------------------------------- /src/modules/keyboardq/data/empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/data/empty.xml -------------------------------------------------------------------------------- /src/modules/keyboardq/data/en-qt6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/data/en-qt6.xml -------------------------------------------------------------------------------- /src/modules/keyboardq/data/en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/data/en.xml -------------------------------------------------------------------------------- /src/modules/keyboardq/data/enter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/data/enter.svg -------------------------------------------------------------------------------- /src/modules/keyboardq/data/es-qt6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/data/es-qt6.xml -------------------------------------------------------------------------------- /src/modules/keyboardq/data/es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/data/es.xml -------------------------------------------------------------------------------- /src/modules/keyboardq/data/fr-qt6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/data/fr-qt6.xml -------------------------------------------------------------------------------- /src/modules/keyboardq/data/fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/data/fr.xml -------------------------------------------------------------------------------- /src/modules/keyboardq/data/generic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/data/generic.xml -------------------------------------------------------------------------------- /src/modules/keyboardq/data/pt-qt6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/data/pt-qt6.xml -------------------------------------------------------------------------------- /src/modules/keyboardq/data/pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/data/pt.xml -------------------------------------------------------------------------------- /src/modules/keyboardq/data/ru-qt6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/data/ru-qt6.xml -------------------------------------------------------------------------------- /src/modules/keyboardq/data/ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/data/ru.xml -------------------------------------------------------------------------------- /src/modules/keyboardq/data/scan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/data/scan.xml -------------------------------------------------------------------------------- /src/modules/keyboardq/data/shift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/data/shift.svg -------------------------------------------------------------------------------- /src/modules/keyboardq/keyboardq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/keyboardq.conf -------------------------------------------------------------------------------- /src/modules/keyboardq/keyboardq.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/keyboardq.qml -------------------------------------------------------------------------------- /src/modules/keyboardq/keyboardq.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/keyboardq/keyboardq.qrc -------------------------------------------------------------------------------- /src/modules/license/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/license/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/license/LicensePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/license/LicensePage.cpp -------------------------------------------------------------------------------- /src/modules/license/LicensePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/license/LicensePage.h -------------------------------------------------------------------------------- /src/modules/license/LicensePage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/license/LicensePage.ui -------------------------------------------------------------------------------- /src/modules/license/LicenseViewStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/license/LicenseViewStep.h -------------------------------------------------------------------------------- /src/modules/license/LicenseWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/license/LicenseWidget.cpp -------------------------------------------------------------------------------- /src/modules/license/LicenseWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/license/LicenseWidget.h -------------------------------------------------------------------------------- /src/modules/license/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/license/README.md -------------------------------------------------------------------------------- /src/modules/license/license.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/license/license.conf -------------------------------------------------------------------------------- /src/modules/locale/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/locale/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/locale/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/locale/Config.cpp -------------------------------------------------------------------------------- /src/modules/locale/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/locale/Config.h -------------------------------------------------------------------------------- /src/modules/locale/LCLocaleDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/locale/LCLocaleDialog.cpp -------------------------------------------------------------------------------- /src/modules/locale/LCLocaleDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/locale/LCLocaleDialog.h -------------------------------------------------------------------------------- /src/modules/locale/LocaleNames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/locale/LocaleNames.cpp -------------------------------------------------------------------------------- /src/modules/locale/LocaleNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/locale/LocaleNames.h -------------------------------------------------------------------------------- /src/modules/locale/LocalePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/locale/LocalePage.cpp -------------------------------------------------------------------------------- /src/modules/locale/LocalePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/locale/LocalePage.h -------------------------------------------------------------------------------- /src/modules/locale/LocaleViewStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/locale/LocaleViewStep.cpp -------------------------------------------------------------------------------- /src/modules/locale/LocaleViewStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/locale/LocaleViewStep.h -------------------------------------------------------------------------------- /src/modules/locale/SetTimezoneJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/locale/SetTimezoneJob.cpp -------------------------------------------------------------------------------- /src/modules/locale/SetTimezoneJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/locale/SetTimezoneJob.h -------------------------------------------------------------------------------- /src/modules/locale/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/locale/Tests.cpp -------------------------------------------------------------------------------- /src/modules/locale/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/locale/images/bg.png -------------------------------------------------------------------------------- /src/modules/locale/images/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/locale/images/pin.png -------------------------------------------------------------------------------- /src/modules/locale/locale.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/locale/locale.conf -------------------------------------------------------------------------------- /src/modules/locale/locale.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/locale/locale.qrc -------------------------------------------------------------------------------- /src/modules/locale/locale.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/locale/locale.schema.yaml -------------------------------------------------------------------------------- /src/modules/localecfg/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/localecfg/main.py -------------------------------------------------------------------------------- /src/modules/localecfg/module.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/localecfg/module.desc -------------------------------------------------------------------------------- /src/modules/localeq/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/localeq/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/localeq/Map-qt6.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/localeq/Map-qt6.qml -------------------------------------------------------------------------------- /src/modules/localeq/Map.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/localeq/Map.qml -------------------------------------------------------------------------------- /src/modules/localeq/Offline-qt6.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/localeq/Offline-qt6.qml -------------------------------------------------------------------------------- /src/modules/localeq/Offline.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/localeq/Offline.qml -------------------------------------------------------------------------------- /src/modules/localeq/img/locale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/localeq/img/locale.svg -------------------------------------------------------------------------------- /src/modules/localeq/img/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/localeq/img/minus.png -------------------------------------------------------------------------------- /src/modules/localeq/img/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/localeq/img/pin.svg -------------------------------------------------------------------------------- /src/modules/localeq/img/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/localeq/img/plus.png -------------------------------------------------------------------------------- /src/modules/localeq/localeq-qt6.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/localeq/localeq-qt6.qml -------------------------------------------------------------------------------- /src/modules/localeq/localeq-qt6.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/localeq/localeq-qt6.qrc -------------------------------------------------------------------------------- /src/modules/localeq/localeq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/localeq/localeq.conf -------------------------------------------------------------------------------- /src/modules/localeq/localeq.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/localeq/localeq.qml -------------------------------------------------------------------------------- /src/modules/localeq/localeq.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/localeq/localeq.qrc -------------------------------------------------------------------------------- /src/modules/luksbootkeyfile/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/luksbootkeyfile/Tests.cpp -------------------------------------------------------------------------------- /src/modules/machineid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/machineid/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/machineid/MachineIdJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/machineid/MachineIdJob.cpp -------------------------------------------------------------------------------- /src/modules/machineid/MachineIdJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/machineid/MachineIdJob.h -------------------------------------------------------------------------------- /src/modules/machineid/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/machineid/Tests.cpp -------------------------------------------------------------------------------- /src/modules/machineid/Workers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/machineid/Workers.cpp -------------------------------------------------------------------------------- /src/modules/machineid/Workers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/machineid/Workers.h -------------------------------------------------------------------------------- /src/modules/machineid/machineid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/machineid/machineid.conf -------------------------------------------------------------------------------- /src/modules/mkinitfs/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/mkinitfs/main.py -------------------------------------------------------------------------------- /src/modules/mkinitfs/module.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/mkinitfs/module.desc -------------------------------------------------------------------------------- /src/modules/mount/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/mount/main.py -------------------------------------------------------------------------------- /src/modules/mount/module.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/mount/module.desc -------------------------------------------------------------------------------- /src/modules/mount/mount.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/mount/mount.conf -------------------------------------------------------------------------------- /src/modules/mount/mount.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/mount/mount.schema.yaml -------------------------------------------------------------------------------- /src/modules/mount/tests/1.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/mount/tests/1.global -------------------------------------------------------------------------------- /src/modules/mount/tests/1.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/mount/tests/1.job -------------------------------------------------------------------------------- /src/modules/mount/tests/2.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/mount/tests/2.global -------------------------------------------------------------------------------- /src/modules/mount/tests/2.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/mount/tests/2.job -------------------------------------------------------------------------------- /src/modules/mount/tests/3.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/mount/tests/3.global -------------------------------------------------------------------------------- /src/modules/mount/tests/3.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/mount/tests/3.job -------------------------------------------------------------------------------- /src/modules/mount/tests/4.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/mount/tests/4.global -------------------------------------------------------------------------------- /src/modules/mount/tests/4.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/mount/tests/4.job -------------------------------------------------------------------------------- /src/modules/netinstall/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/netinstall/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/netinstall/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/netinstall/Config.cpp -------------------------------------------------------------------------------- /src/modules/netinstall/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/netinstall/Config.h -------------------------------------------------------------------------------- /src/modules/netinstall/LoaderQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/netinstall/LoaderQueue.cpp -------------------------------------------------------------------------------- /src/modules/netinstall/LoaderQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/netinstall/LoaderQueue.h -------------------------------------------------------------------------------- /src/modules/netinstall/PackageModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/netinstall/PackageModel.h -------------------------------------------------------------------------------- /src/modules/netinstall/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/netinstall/Tests.cpp -------------------------------------------------------------------------------- /src/modules/netinstall/netinstall.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/netinstall/netinstall.conf -------------------------------------------------------------------------------- /src/modules/netinstall/netinstall.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/netinstall/netinstall.yaml -------------------------------------------------------------------------------- /src/modules/netinstall/page_netinst.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/netinstall/page_netinst.ui -------------------------------------------------------------------------------- /src/modules/networkcfg/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/networkcfg/main.py -------------------------------------------------------------------------------- /src/modules/networkcfg/module.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/networkcfg/module.desc -------------------------------------------------------------------------------- /src/modules/notesqml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/notesqml/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/notesqml/notesqml.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/notesqml/notesqml.conf -------------------------------------------------------------------------------- /src/modules/notesqml/notesqml.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/notesqml/notesqml.qml -------------------------------------------------------------------------------- /src/modules/notesqml/notesqml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/notesqml/notesqml.qrc -------------------------------------------------------------------------------- /src/modules/oemid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/oemid/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/oemid/IDJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/oemid/IDJob.cpp -------------------------------------------------------------------------------- /src/modules/oemid/IDJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/oemid/IDJob.h -------------------------------------------------------------------------------- /src/modules/oemid/OEMPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/oemid/OEMPage.ui -------------------------------------------------------------------------------- /src/modules/oemid/OEMViewStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/oemid/OEMViewStep.cpp -------------------------------------------------------------------------------- /src/modules/oemid/OEMViewStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/oemid/OEMViewStep.h -------------------------------------------------------------------------------- /src/modules/oemid/oemid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/oemid/oemid.conf -------------------------------------------------------------------------------- /src/modules/openrcdmcryptcfg/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/openrcdmcryptcfg/main.py -------------------------------------------------------------------------------- /src/modules/packagechooser/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/packagechooser/Config.cpp -------------------------------------------------------------------------------- /src/modules/packagechooser/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/packagechooser/Config.h -------------------------------------------------------------------------------- /src/modules/packagechooser/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/packagechooser/Tests.cpp -------------------------------------------------------------------------------- /src/modules/packagechooser/Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/packagechooser/Tests.h -------------------------------------------------------------------------------- /src/modules/packages/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/packages/main.py -------------------------------------------------------------------------------- /src/modules/packages/module.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/packages/module.desc -------------------------------------------------------------------------------- /src/modules/packages/packages.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/packages/packages.conf -------------------------------------------------------------------------------- /src/modules/packages/tests/1.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/packages/tests/1.global -------------------------------------------------------------------------------- /src/modules/packages/tests/2.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/packages/tests/2.job -------------------------------------------------------------------------------- /src/modules/partition/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/partition/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/partition/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/partition/Config.cpp -------------------------------------------------------------------------------- /src/modules/partition/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/partition/Config.h -------------------------------------------------------------------------------- /src/modules/partition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/partition/README.md -------------------------------------------------------------------------------- /src/modules/partition/core/PartUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/partition/core/PartUtils.h -------------------------------------------------------------------------------- /src/modules/partition/core/SizeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/partition/core/SizeUtils.h -------------------------------------------------------------------------------- /src/modules/partition/gui/ChoicePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/partition/gui/ChoicePage.h -------------------------------------------------------------------------------- /src/modules/partition/partition.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/partition/partition.conf -------------------------------------------------------------------------------- /src/modules/plasmalnf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/plasmalnf/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/plasmalnf/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/plasmalnf/Config.cpp -------------------------------------------------------------------------------- /src/modules/plasmalnf/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/plasmalnf/Config.h -------------------------------------------------------------------------------- /src/modules/plasmalnf/PlasmaLnfJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/plasmalnf/PlasmaLnfJob.cpp -------------------------------------------------------------------------------- /src/modules/plasmalnf/PlasmaLnfJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/plasmalnf/PlasmaLnfJob.h -------------------------------------------------------------------------------- /src/modules/plasmalnf/PlasmaLnfPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/plasmalnf/PlasmaLnfPage.h -------------------------------------------------------------------------------- /src/modules/plasmalnf/ThemeInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/plasmalnf/ThemeInfo.cpp -------------------------------------------------------------------------------- /src/modules/plasmalnf/ThemeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/plasmalnf/ThemeInfo.h -------------------------------------------------------------------------------- /src/modules/plasmalnf/plasmalnf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/plasmalnf/plasmalnf.conf -------------------------------------------------------------------------------- /src/modules/plasmalnf/view-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/plasmalnf/view-preview.png -------------------------------------------------------------------------------- /src/modules/plasmalnf/view-preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/plasmalnf/view-preview.svg -------------------------------------------------------------------------------- /src/modules/plymouthcfg/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/plymouthcfg/main.py -------------------------------------------------------------------------------- /src/modules/plymouthcfg/module.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/plymouthcfg/module.desc -------------------------------------------------------------------------------- /src/modules/preservefiles/Item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/preservefiles/Item.cpp -------------------------------------------------------------------------------- /src/modules/preservefiles/Item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/preservefiles/Item.h -------------------------------------------------------------------------------- /src/modules/preservefiles/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/preservefiles/Tests.cpp -------------------------------------------------------------------------------- /src/modules/rawfs/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/rawfs/main.py -------------------------------------------------------------------------------- /src/modules/rawfs/module.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/rawfs/module.desc -------------------------------------------------------------------------------- /src/modules/rawfs/rawfs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/rawfs/rawfs.conf -------------------------------------------------------------------------------- /src/modules/rawfs/tests/1.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/rawfs/tests/1.global -------------------------------------------------------------------------------- /src/modules/rawfs/tests/1.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/rawfs/tests/1.job -------------------------------------------------------------------------------- /src/modules/rawfs/tests/CMakeTests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/rawfs/tests/CMakeTests.txt -------------------------------------------------------------------------------- /src/modules/removeuser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/removeuser/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/removeuser/RemoveUserJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/removeuser/RemoveUserJob.h -------------------------------------------------------------------------------- /src/modules/removeuser/removeuser.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/removeuser/removeuser.conf -------------------------------------------------------------------------------- /src/modules/services-openrc/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/services-openrc/main.py -------------------------------------------------------------------------------- /src/modules/services-systemd/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/services-systemd/main.py -------------------------------------------------------------------------------- /src/modules/shellprocess/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/shellprocess/Tests.cpp -------------------------------------------------------------------------------- /src/modules/shellprocess/Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/shellprocess/Tests.h -------------------------------------------------------------------------------- /src/modules/summary/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/summary/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/summary/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/summary/Config.cpp -------------------------------------------------------------------------------- /src/modules/summary/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/summary/Config.h -------------------------------------------------------------------------------- /src/modules/summary/SummaryModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/summary/SummaryModel.cpp -------------------------------------------------------------------------------- /src/modules/summary/SummaryModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/summary/SummaryModel.h -------------------------------------------------------------------------------- /src/modules/summary/SummaryPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/summary/SummaryPage.cpp -------------------------------------------------------------------------------- /src/modules/summary/SummaryPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/summary/SummaryPage.h -------------------------------------------------------------------------------- /src/modules/summary/SummaryViewStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/summary/SummaryViewStep.h -------------------------------------------------------------------------------- /src/modules/summaryq/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/summaryq/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/summaryq/img/keyboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/summaryq/img/keyboard.svg -------------------------------------------------------------------------------- /src/modules/summaryq/img/lokalize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/summaryq/img/lokalize.svg -------------------------------------------------------------------------------- /src/modules/summaryq/summaryq-qt6.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/summaryq/summaryq-qt6.qml -------------------------------------------------------------------------------- /src/modules/summaryq/summaryq-qt6.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/summaryq/summaryq-qt6.qrc -------------------------------------------------------------------------------- /src/modules/summaryq/summaryq.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/summaryq/summaryq.qml -------------------------------------------------------------------------------- /src/modules/summaryq/summaryq.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/summaryq/summaryq.qrc -------------------------------------------------------------------------------- /src/modules/tracking/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/tracking/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/tracking/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/tracking/Config.cpp -------------------------------------------------------------------------------- /src/modules/tracking/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/tracking/Config.h -------------------------------------------------------------------------------- /src/modules/tracking/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/tracking/Tests.cpp -------------------------------------------------------------------------------- /src/modules/tracking/TrackingJobs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/tracking/TrackingJobs.cpp -------------------------------------------------------------------------------- /src/modules/tracking/TrackingJobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/tracking/TrackingJobs.h -------------------------------------------------------------------------------- /src/modules/tracking/TrackingPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/tracking/TrackingPage.cpp -------------------------------------------------------------------------------- /src/modules/tracking/TrackingPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/tracking/TrackingPage.h -------------------------------------------------------------------------------- /src/modules/tracking/TrackingType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/tracking/TrackingType.h -------------------------------------------------------------------------------- /src/modules/tracking/level-install.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/tracking/level-install.svg -------------------------------------------------------------------------------- /src/modules/tracking/level-machine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/tracking/level-machine.svg -------------------------------------------------------------------------------- /src/modules/tracking/level-none.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/tracking/level-none.svg -------------------------------------------------------------------------------- /src/modules/tracking/level-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/tracking/level-user.svg -------------------------------------------------------------------------------- /src/modules/tracking/tracking.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/tracking/tracking.conf -------------------------------------------------------------------------------- /src/modules/umount/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/umount/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/umount/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/umount/Tests.cpp -------------------------------------------------------------------------------- /src/modules/umount/UmountJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/umount/UmountJob.cpp -------------------------------------------------------------------------------- /src/modules/umount/UmountJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/umount/UmountJob.h -------------------------------------------------------------------------------- /src/modules/umount/umount.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/umount/umount.conf -------------------------------------------------------------------------------- /src/modules/umount/umount.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/umount/umount.schema.yaml -------------------------------------------------------------------------------- /src/modules/unpackfs/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfs/main.py -------------------------------------------------------------------------------- /src/modules/unpackfs/module.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfs/module.desc -------------------------------------------------------------------------------- /src/modules/unpackfs/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfs/runtests.sh -------------------------------------------------------------------------------- /src/modules/unpackfs/tests/1.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfs/tests/1.global -------------------------------------------------------------------------------- /src/modules/unpackfs/tests/2.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfs/tests/2.global -------------------------------------------------------------------------------- /src/modules/unpackfs/tests/3.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfs/tests/3.global -------------------------------------------------------------------------------- /src/modules/unpackfs/tests/3.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfs/tests/3.job -------------------------------------------------------------------------------- /src/modules/unpackfs/tests/4.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfs/tests/4.global -------------------------------------------------------------------------------- /src/modules/unpackfs/tests/4.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfs/tests/4.job -------------------------------------------------------------------------------- /src/modules/unpackfs/tests/5.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfs/tests/5.global -------------------------------------------------------------------------------- /src/modules/unpackfs/tests/5.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfs/tests/5.job -------------------------------------------------------------------------------- /src/modules/unpackfs/tests/6.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfs/tests/6.global -------------------------------------------------------------------------------- /src/modules/unpackfs/tests/6.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfs/tests/6.job -------------------------------------------------------------------------------- /src/modules/unpackfs/tests/7.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfs/tests/7.global -------------------------------------------------------------------------------- /src/modules/unpackfs/tests/7.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfs/tests/7.job -------------------------------------------------------------------------------- /src/modules/unpackfs/tests/8.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfs/tests/8.global -------------------------------------------------------------------------------- /src/modules/unpackfs/tests/8.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfs/tests/8.job -------------------------------------------------------------------------------- /src/modules/unpackfs/tests/9.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfs/tests/9.global -------------------------------------------------------------------------------- /src/modules/unpackfs/tests/9.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfs/tests/9.job -------------------------------------------------------------------------------- /src/modules/unpackfs/unpackfs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfs/unpackfs.conf -------------------------------------------------------------------------------- /src/modules/unpackfsc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfsc/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/unpackfsc/ErofsRunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfsc/ErofsRunner.cpp -------------------------------------------------------------------------------- /src/modules/unpackfsc/ErofsRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfsc/ErofsRunner.h -------------------------------------------------------------------------------- /src/modules/unpackfsc/Runners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfsc/Runners.cpp -------------------------------------------------------------------------------- /src/modules/unpackfsc/Runners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfsc/Runners.h -------------------------------------------------------------------------------- /src/modules/unpackfsc/TarballRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfsc/TarballRunner.h -------------------------------------------------------------------------------- /src/modules/unpackfsc/UnpackFSCJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfsc/UnpackFSCJob.cpp -------------------------------------------------------------------------------- /src/modules/unpackfsc/UnpackFSCJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfsc/UnpackFSCJob.h -------------------------------------------------------------------------------- /src/modules/unpackfsc/UnsquashRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfsc/UnsquashRunner.h -------------------------------------------------------------------------------- /src/modules/unpackfsc/tests/1.global: -------------------------------------------------------------------------------- 1 | --- 2 | rootMountPoint: /tmp/fstest 3 | -------------------------------------------------------------------------------- /src/modules/unpackfsc/tests/1.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfsc/tests/1.job -------------------------------------------------------------------------------- /src/modules/unpackfsc/unpackfsc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/unpackfsc/unpackfsc.conf -------------------------------------------------------------------------------- /src/modules/users/ActiveDirectoryJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/ActiveDirectoryJob.h -------------------------------------------------------------------------------- /src/modules/users/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/users/CheckPWQuality.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/CheckPWQuality.cpp -------------------------------------------------------------------------------- /src/modules/users/CheckPWQuality.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/CheckPWQuality.h -------------------------------------------------------------------------------- /src/modules/users/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/Config.cpp -------------------------------------------------------------------------------- /src/modules/users/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/Config.h -------------------------------------------------------------------------------- /src/modules/users/CreateUserJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/CreateUserJob.cpp -------------------------------------------------------------------------------- /src/modules/users/CreateUserJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/CreateUserJob.h -------------------------------------------------------------------------------- /src/modules/users/MiscJobs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/MiscJobs.cpp -------------------------------------------------------------------------------- /src/modules/users/MiscJobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/MiscJobs.h -------------------------------------------------------------------------------- /src/modules/users/SetHostNameJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/SetHostNameJob.cpp -------------------------------------------------------------------------------- /src/modules/users/SetHostNameJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/SetHostNameJob.h -------------------------------------------------------------------------------- /src/modules/users/SetPasswordJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/SetPasswordJob.cpp -------------------------------------------------------------------------------- /src/modules/users/SetPasswordJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/SetPasswordJob.h -------------------------------------------------------------------------------- /src/modules/users/TestPasswordJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/TestPasswordJob.cpp -------------------------------------------------------------------------------- /src/modules/users/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/Tests.cpp -------------------------------------------------------------------------------- /src/modules/users/UsersPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/UsersPage.cpp -------------------------------------------------------------------------------- /src/modules/users/UsersPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/UsersPage.h -------------------------------------------------------------------------------- /src/modules/users/UsersViewStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/UsersViewStep.cpp -------------------------------------------------------------------------------- /src/modules/users/UsersViewStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/UsersViewStep.h -------------------------------------------------------------------------------- /src/modules/users/images/invalid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/images/invalid.png -------------------------------------------------------------------------------- /src/modules/users/images/valid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/images/valid.png -------------------------------------------------------------------------------- /src/modules/users/page_usersetup.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/page_usersetup.ui -------------------------------------------------------------------------------- /src/modules/users/tests/3-wing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/tests/3-wing.conf -------------------------------------------------------------------------------- /src/modules/users/tests/4-audio.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/tests/4-audio.conf -------------------------------------------------------------------------------- /src/modules/users/tests/7an-shell.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/tests/7an-shell.conf -------------------------------------------------------------------------------- /src/modules/users/tests/7ao-shell.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/tests/7ao-shell.conf -------------------------------------------------------------------------------- /src/modules/users/tests/7bn-shell.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/tests/7bn-shell.conf -------------------------------------------------------------------------------- /src/modules/users/tests/7bo-shell.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/tests/7bo-shell.conf -------------------------------------------------------------------------------- /src/modules/users/tests/7cn-shell.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/tests/7cn-shell.conf -------------------------------------------------------------------------------- /src/modules/users/tests/7co-shell.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/tests/7co-shell.conf -------------------------------------------------------------------------------- /src/modules/users/tests/7dn-shell.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/tests/7dn-shell.conf -------------------------------------------------------------------------------- /src/modules/users/tests/7do-shell.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/tests/7do-shell.conf -------------------------------------------------------------------------------- /src/modules/users/tests/7en-shell.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/tests/7en-shell.conf -------------------------------------------------------------------------------- /src/modules/users/tests/7eo-shell.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/tests/7eo-shell.conf -------------------------------------------------------------------------------- /src/modules/users/tests/7fb-shell.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/tests/7fb-shell.conf -------------------------------------------------------------------------------- /src/modules/users/tests/7fn-shell.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/tests/7fn-shell.conf -------------------------------------------------------------------------------- /src/modules/users/tests/7fo-shell.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/tests/7fo-shell.conf -------------------------------------------------------------------------------- /src/modules/users/users.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/users.conf -------------------------------------------------------------------------------- /src/modules/users/users.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/users.qrc -------------------------------------------------------------------------------- /src/modules/users/users.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/users/users.schema.yaml -------------------------------------------------------------------------------- /src/modules/usersq/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/usersq/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/usersq/UsersQmlViewStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/usersq/UsersQmlViewStep.h -------------------------------------------------------------------------------- /src/modules/usersq/usersq-qt6.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/usersq/usersq-qt6.qml -------------------------------------------------------------------------------- /src/modules/usersq/usersq-qt6.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/usersq/usersq-qt6.qrc -------------------------------------------------------------------------------- /src/modules/usersq/usersq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/usersq/usersq.conf -------------------------------------------------------------------------------- /src/modules/usersq/usersq.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/usersq/usersq.qml -------------------------------------------------------------------------------- /src/modules/usersq/usersq.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/usersq/usersq.qrc -------------------------------------------------------------------------------- /src/modules/welcome/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/welcome/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/welcome/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/welcome/Config.cpp -------------------------------------------------------------------------------- /src/modules/welcome/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/welcome/Config.h -------------------------------------------------------------------------------- /src/modules/welcome/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/welcome/Tests.cpp -------------------------------------------------------------------------------- /src/modules/welcome/WelcomePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/welcome/WelcomePage.cpp -------------------------------------------------------------------------------- /src/modules/welcome/WelcomePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/welcome/WelcomePage.h -------------------------------------------------------------------------------- /src/modules/welcome/WelcomePage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/welcome/WelcomePage.ui -------------------------------------------------------------------------------- /src/modules/welcome/WelcomeViewStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/welcome/WelcomeViewStep.h -------------------------------------------------------------------------------- /src/modules/welcome/welcome.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/welcome/welcome.conf -------------------------------------------------------------------------------- /src/modules/welcome/welcome.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/welcome/welcome.qrc -------------------------------------------------------------------------------- /src/modules/welcomeq/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/welcomeq/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/welcomeq/Recommended.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/welcomeq/Recommended.qml -------------------------------------------------------------------------------- /src/modules/welcomeq/Requirements.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/welcomeq/Requirements.qml -------------------------------------------------------------------------------- /src/modules/welcomeq/img/squid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/welcomeq/img/squid.png -------------------------------------------------------------------------------- /src/modules/welcomeq/release_notes.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/welcomeq/release_notes.qml -------------------------------------------------------------------------------- /src/modules/welcomeq/welcomeq-qt6.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/welcomeq/welcomeq-qt6.qml -------------------------------------------------------------------------------- /src/modules/welcomeq/welcomeq-qt6.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/welcomeq/welcomeq-qt6.qrc -------------------------------------------------------------------------------- /src/modules/welcomeq/welcomeq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/welcomeq/welcomeq.conf -------------------------------------------------------------------------------- /src/modules/welcomeq/welcomeq.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/welcomeq/welcomeq.qml -------------------------------------------------------------------------------- /src/modules/welcomeq/welcomeq.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/welcomeq/welcomeq.qrc -------------------------------------------------------------------------------- /src/modules/zfs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/zfs/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/zfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/zfs/README.md -------------------------------------------------------------------------------- /src/modules/zfs/ZfsJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/zfs/ZfsJob.cpp -------------------------------------------------------------------------------- /src/modules/zfs/ZfsJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/zfs/ZfsJob.h -------------------------------------------------------------------------------- /src/modules/zfs/zfs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/zfs/zfs.conf -------------------------------------------------------------------------------- /src/modules/zfs/zfs.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/zfs/zfs.schema.yaml -------------------------------------------------------------------------------- /src/modules/zfshostid/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/zfshostid/main.py -------------------------------------------------------------------------------- /src/modules/zfshostid/module.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/modules/zfshostid/module.desc -------------------------------------------------------------------------------- /src/qml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/qml/CMakeLists.txt -------------------------------------------------------------------------------- /src/qml/calamares-qt5/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | calamares_install_qml() 2 | -------------------------------------------------------------------------------- /src/qml/calamares-qt5/slideshow/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/qml/calamares-qt5/slideshow/qmldir -------------------------------------------------------------------------------- /src/qml/calamares-qt5/slideshow/qmldir.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: no 2 | SPDX-License-Identifier: CC0-1.0 3 | -------------------------------------------------------------------------------- /src/qml/calamares-qt6/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | calamares_install_qml() 2 | -------------------------------------------------------------------------------- /src/qml/calamares-qt6/slideshow/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachyOS/cachyos-calamares/HEAD/src/qml/calamares-qt6/slideshow/qmldir -------------------------------------------------------------------------------- /src/qml/calamares-qt6/slideshow/qmldir.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: no 2 | SPDX-License-Identifier: CC0-1.0 3 | --------------------------------------------------------------------------------