diff --git a/calamares/branding/snigdhaos/branding.desc b/calamares/branding/snigdhaos/branding.desc new file mode 100644 index 0000000..424ab66 --- /dev/null +++ b/calamares/branding/snigdhaos/branding.desc @@ -0,0 +1,231 @@ +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Product branding information. This influences some global +# user-visible aspects of Calamares, such as the product +# name, window behavior, and the slideshow during installation. +# +# Additional styling can be done using the stylesheet.qss +# file, also in the branding directory. +--- +componentName: arcolinuxnew + + +### WELCOME / OVERALL WORDING +# +# These settings affect some overall phrasing and looks, +# which are most visible in the welcome page. + +# This selects between different welcome texts. When false, uses +# the traditional "Welcome to the %1 installer.", and when true, +# uses "Welcome to the Calamares installer for %1." This allows +# to distinguish this installer from other installers for the +# same distribution. +welcomeStyleCalamares: false + +# Should the welcome image (productWelcome, below) be scaled +# up beyond its natural size? If false, the image does not grow +# with the window but remains the same size throughout (this +# may have surprising effects on HiDPI monitors). +welcomeExpandingLogo: true + +### WINDOW CONFIGURATION +# +# The settings here affect the placement of the Calamares +# window through hints to the window manager and initial +# sizing of the Calamares window. + +# Size and expansion policy for Calamares. +# - "normal" or unset, expand as needed, use *windowSize* +# - "fullscreen", start as large as possible, ignore *windowSize* +# - "noexpand", don't expand automatically, use *windowSize* +windowExpanding: normal + +# Size of Calamares window, expressed as w,h. Both w and h +# may be either pixels (suffix px) or font-units (suffix em). +# e.g. "800px,600px" +# "60em,480px" +# This setting is ignored if "fullscreen" is selected for +# *windowExpanding*, above. If not set, use constants defined +# in CalamaresUtilsGui, 800x520. +windowSize: 1200px,800px + +# Placement of Calamares window. Either "center" or "free". +# Whether "center" actually works does depend on the window +# manager in use (and only makes sense if you're not using +# *windowExpanding* set to "fullscreen"). +windowPlacement: center + +### PANELS CONFIGURATION +# +# Calamares has a main content area, and two panels (navigation +# and progress / sidebar). The panels can be controlled individually, +# or switched off. If both panels are switched off, the layout of +# the main content area loses its margins, on the assumption that +# you're doing something special. + +# Kind of sidebar (panel on the left, showing progress). +# - "widget" or unset, use traditional sidebar (logo, items) +# - "none", hide it entirely +# - "qml", use calamares-sidebar.qml from branding folder +# In addition, you **may** specify a side, separated by a comma, +# from the kind. Valid sides are: +# - "left" (if not specified, uses this) +# - "right" +# - "top" +# - "bottom" +# For instance, "widget,right" is valid; so is "qml", which defaults +# to putting the sidebar on the left. Also valid is "qml,top". +# While "widget,top" is valid, the widgets code is **not** flexible +# and results will be terrible. +sidebar: widget + +# Kind of navigation (button panel on the bottom). +# - "widget" or unset, use traditional navigation +# - "none", hide it entirely +# - "qml", use calamares-navigation.qml from branding folder +# In addition, you **may** specify a side, separated by a comma, +# from the kind. The same sides are valid as for *sidebar*, +# except the default is *bottom*. +navigation: widget + + +### STRINGS, IMAGES AND COLORS +# +# This section contains the "branding proper" of names +# and images, rather than global-look settings. + +# These are strings shown to the user in the user interface. +# There is no provision for translating them -- since they +# are names, the string is included as-is. +# +# The four Url strings are the Urls used by the buttons in +# the welcome screen, and are not shown to the user. Clicking +# on the "Support" button, for instance, opens the link supportUrl. +# If a Url is empty, the corresponding button is not shown. +# +# bootloaderEntryName is how this installation / distro is named +# in the boot loader (e.g. in the GRUB menu). +# +# These strings support substitution from /etc/os-release +# if KDE Frameworks 5.58 are available at build-time. When +# enabled, @{var-name} is replaced by the equivalent value +# from os-release. All the supported var-names are in all-caps, +# and are listed on the FreeDesktop.org site, +# https://www.freedesktop.org/software/systemd/man/os-release.html +# Note that ANSI_COLOR and CPE_NAME don't make sense here, and +# are not supported (the rest are). Remember to quote the string +# if it contains substitutions, or you'll get YAML exceptions. +# +# The *Url* entries are used on the welcome page, and they +# are visible as buttons there if the corresponding *show* keys +# are set to "true" (they can also be overridden). +strings: + productName: ArcoLinux + shortProductName: ArcoLinux + version: 3.0 + shortVersion: 3.0 + versionedName: ArcoLinux + shortVersionedName: ArcoLinux + bootloaderEntryName: ArcoLinux +# productUrl: https://arcolinux.info/ +# supportUrl: https://arcolinuxforum.com/ +# knownIssuesUrl: https://arcolinux.info/ +# releaseNotesUrl: https://arcolinux.info/arcolinux-editions/ +# donateUrl: https://kde.org/community/donations/index.php + +# These images are loaded from the branding module directory. +# +# productBanner is an optional image, which if present, will be shown +# on the welcome page of the application, above the welcome text. +# It is intended to have a width much greater than height. +# It is displayed at 64px height (also on HiDPI). +# Recommended size is 64px tall, and up to 460px wide. +# productIcon is used as the window icon, and will (usually) be used +# by the window manager to represent the application. This image +# should be square, and may be displayed by the window manager +# as small as 16x16 (but possibly larger). +# productLogo is used as the logo at the top of the left-hand column +# which shows the steps to be taken. The image should be square, +# and is displayed at 80x80 pixels (also on HiDPI). +# productWallpaper is an optional image, which if present, will replace +# the normal solid background on every page of the application. +# It can be any size and proportion, +# and will be tiled to fit the entire window. +# For a non-tiled wallpaper, the size should be the same as +# the overall window, see *windowSize* above (800x520). +# productWelcome is shown on the welcome page of the application in +# the middle of the window, below the welcome text. It can be +# any size and proportion, and will be scaled to fit inside +# the window. Use `welcomeExpandingLogo` to make it non-scaled. +# Recommended size is 320x150. +# +# These filenames can also use substitutions from os-release (see above). +images: + # productBanner: "banner.png" + productLogo: "squid.png" + productIcon: "logo.png" + # productWallpaper: "wallpaper.png" + productWelcome: "calamares-0.png" + +# Colors for text and background components. +# +# - sidebarBackground is the background of the sidebar +# - sidebarText is the (foreground) text color +# - sidebarTextHighlight sets the background of the selected (current) step. +# Optional, and defaults to the application palette. +# - sidebarSelect is the text color of the selected step. +# +# These colors can **also** be set through the stylesheet, if the +# branding component also ships a stylesheet.qss. Then they are +# the corresponding CSS attributes of #sidebarApp. +style: + SidebarBackground: "#353945" + SidebarText: "#ECEDEE" + +### SLIDESHOW +# +# The slideshow is displayed during execution steps (e.g. when the +# installer is actually writing to disk and doing other slow things). + +# The slideshow can be a QML file (recommended) which can display +# arbitrary things -- text, images, animations, or even play a game -- +# during the execution step. The QML **is** abruptly stopped when the +# execution step is done, though, so maybe a game isn't a great idea. +# +# The slideshow can also be a sequence of images (not recommended unless +# you don't want QML at all in your Calamares). The images are displayed +# at a rate of 1 every 2 seconds during the execution step. +# +# To configure a QML file, list a single filename: +# slideshow: "show.qml" +# To configure images, like the filenames (here, as an inline list): +# slideshow: [ "/etc/calamares/slideshow/0.png", "/etc/logo.png" ] +slideshow: "show.qml" + +# There are two available APIs for a QML slideshow: +# - 1 (the default) loads the entire slideshow when the installation- +# slideshow page is shown and starts the QML then. The QML +# is never stopped (after installation is done, times etc. +# continue to fire). +# - 2 loads the slideshow on startup and calls onActivate() and +# onLeave() in the root object. After the installation is done, +# the show is stopped (first by calling onLeave(), then destroying +# the QML components). +# +# An image slideshow does not need to have the API defined. +slideshowAPI: 2 + + +# These options are to customize online uploading of logs to pastebins: +# - type : Defines the kind of pastebin service to be used. Currently +# it accepts two values: +# - none : disables the pastebin functionality +# - fiche : use fiche pastebin server +# - url : Defines the address of pastebin service to be used. +# Takes string as input. Important bits are the host and port, +# the scheme is not used. +uploadServer : + type : "fiche" + url : "http://termbin.com:9999" + sizeLimit : -1 diff --git a/calamares/branding/snigdhaos/calamares-0.png b/calamares/branding/snigdhaos/calamares-0.png new file mode 100644 index 0000000..4ecb023 Binary files /dev/null and b/calamares/branding/snigdhaos/calamares-0.png differ diff --git a/calamares/branding/snigdhaos/calamares-1.png b/calamares/branding/snigdhaos/calamares-1.png new file mode 100644 index 0000000..19fa438 Binary files /dev/null and b/calamares/branding/snigdhaos/calamares-1.png differ diff --git a/calamares/branding/snigdhaos/calamares-10.png b/calamares/branding/snigdhaos/calamares-10.png new file mode 100644 index 0000000..dc271b0 Binary files /dev/null and b/calamares/branding/snigdhaos/calamares-10.png differ diff --git a/calamares/branding/snigdhaos/calamares-11.png b/calamares/branding/snigdhaos/calamares-11.png new file mode 100644 index 0000000..a9ee3fb Binary files /dev/null and b/calamares/branding/snigdhaos/calamares-11.png differ diff --git a/calamares/branding/snigdhaos/calamares-12.png b/calamares/branding/snigdhaos/calamares-12.png new file mode 100644 index 0000000..df325a4 Binary files /dev/null and b/calamares/branding/snigdhaos/calamares-12.png differ diff --git a/calamares/branding/snigdhaos/calamares-13.png b/calamares/branding/snigdhaos/calamares-13.png new file mode 100644 index 0000000..50717d7 Binary files /dev/null and b/calamares/branding/snigdhaos/calamares-13.png differ diff --git a/calamares/branding/snigdhaos/calamares-2.png b/calamares/branding/snigdhaos/calamares-2.png new file mode 100644 index 0000000..1392a34 Binary files /dev/null and b/calamares/branding/snigdhaos/calamares-2.png differ diff --git a/calamares/branding/snigdhaos/calamares-3.png b/calamares/branding/snigdhaos/calamares-3.png new file mode 100644 index 0000000..cfecd6f Binary files /dev/null and b/calamares/branding/snigdhaos/calamares-3.png differ diff --git a/calamares/branding/snigdhaos/calamares-4.png b/calamares/branding/snigdhaos/calamares-4.png new file mode 100644 index 0000000..abc9330 Binary files /dev/null and b/calamares/branding/snigdhaos/calamares-4.png differ diff --git a/calamares/branding/snigdhaos/calamares-5.png b/calamares/branding/snigdhaos/calamares-5.png new file mode 100644 index 0000000..0e36ec6 Binary files /dev/null and b/calamares/branding/snigdhaos/calamares-5.png differ diff --git a/calamares/branding/snigdhaos/calamares-6.png b/calamares/branding/snigdhaos/calamares-6.png new file mode 100644 index 0000000..3406030 Binary files /dev/null and b/calamares/branding/snigdhaos/calamares-6.png differ diff --git a/calamares/branding/snigdhaos/calamares-7.png b/calamares/branding/snigdhaos/calamares-7.png new file mode 100644 index 0000000..e0f347f Binary files /dev/null and b/calamares/branding/snigdhaos/calamares-7.png differ diff --git a/calamares/branding/snigdhaos/calamares-8.png b/calamares/branding/snigdhaos/calamares-8.png new file mode 100644 index 0000000..b4f3304 Binary files /dev/null and b/calamares/branding/snigdhaos/calamares-8.png differ diff --git a/calamares/branding/snigdhaos/calamares-9.png b/calamares/branding/snigdhaos/calamares-9.png new file mode 100644 index 0000000..a948ea0 Binary files /dev/null and b/calamares/branding/snigdhaos/calamares-9.png differ diff --git a/calamares/branding/snigdhaos/calamares-widget-tree b/calamares/branding/snigdhaos/calamares-widget-tree new file mode 100644 index 0000000..67f6d08 --- /dev/null +++ b/calamares/branding/snigdhaos/calamares-widget-tree @@ -0,0 +1,572 @@ + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "" + "" + + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "" + "" + + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "" + "" + + "mainApp" + "sidebarApp" + "logoApp" + "sidebarMenuApp" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "debugButton" + "" + "view-button-back" + "view-button-next" + "view-button-cancel" + "viewManager" + "viewManagerStack" + "FinishedPage" + "mainText" + "restartCheckBox" + "" + "" + "" + "" + "summaryStep" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "" + "Page_UserSetup" + "labelWhatIsYourName" + "textBoxFullName" + "labelFullName" + "labelFullNameError" + "username_label_2" + "textBoxLoginName" + "labelUsername" + "labelUsernameError" + "hostname_label_2" + "textBoxHostName" + "labelHostname" + "labelHostnameError" + "password_label_2" + "textBoxUserPassword" + "textBoxUserVerifiedPassword" + "labelUserPassword" + "labelUserPasswordError" + "checkBoxRequireStrongPassword" + "checkBoxDoAutoLogin" + "checkBoxReusePassword" + "labelChooseRootPassword" + "textBoxRootPassword" + "textBoxVerifiedRootPassword" + "labelRootPassword" + "labelRootPasswordError" + "" + "ChoicePage" + "m_drivesLabel" + "m_messageLabel" + "m_itemsScrollArea" + "qt_scrollarea_viewport" + "scrollAreaWidgetContents" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "" + "" + "" + "" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "hLine" + "m_encryptWidget" + "m_encryptCheckBox" + "m_passphraseLineEdit" + "m_confirmLineEdit" + "m_iconLabel" + "m_reuseHomeCheckBox" + "m_selectLabel" + "m_previewAfterLabel" + "m_previewBeforeLabel" + "m_previewBeforeFrame" + "partitionBarView" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "partitionLabel" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "m_previewAfterFrame" + "" + "bootInfoIcon" + "bootInfoLabel" + "" + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "" + "" + "" + "deviceInfoIcon" + "deviceInfoLabel" + "Page_Keyboard" + "" + "label" + "physicalModelSelector" + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "" + "" + "buttonRestore" + "layoutSelector" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "variantSelector" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "LE_TestKeyboard" + "" + "Page_NetInst" + "label" + "scrollArea" + "qt_scrollarea_viewport" + "groupswidget" + "qt_scrollarea_viewport" + "qt_scrollarea_vcontainer" + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "netinst_status" + "Page_NetInst" + "label" + "scrollArea" + "qt_scrollarea_viewport" + "groupswidget" + "qt_scrollarea_viewport" + "qt_scrollarea_vcontainer" + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "netinst_status" + "Page_NetInst" + "label" + "scrollArea" + "qt_scrollarea_viewport" + "groupswidget" + "qt_scrollarea_viewport" + "qt_scrollarea_vcontainer" + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "netinst_status" + "Page_NetInst" + "label" + "scrollArea" + "qt_scrollarea_viewport" + "groupswidget" + "qt_scrollarea_viewport" + "qt_scrollarea_vcontainer" + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "netinst_status" + "Page_NetInst" + "label" + "scrollArea" + "qt_scrollarea_viewport" + "groupswidget" + "qt_scrollarea_viewport" + "qt_scrollarea_vcontainer" + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "netinst_status" + "Page_NetInst" + "label" + "scrollArea" + "qt_scrollarea_viewport" + "groupswidget" + "qt_scrollarea_viewport" + "qt_scrollarea_vcontainer" + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "netinst_status" + "Page_NetInst" + "label" + "scrollArea" + "qt_scrollarea_viewport" + "groupswidget" + "qt_scrollarea_viewport" + "qt_scrollarea_vcontainer" + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "netinst_status" + "Page_NetInst" + "label" + "scrollArea" + "qt_scrollarea_viewport" + "groupswidget" + "qt_scrollarea_viewport" + "qt_scrollarea_vcontainer" + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "netinst_status" + "Page_NetInst" + "label" + "scrollArea" + "qt_scrollarea_viewport" + "groupswidget" + "qt_scrollarea_viewport" + "qt_scrollarea_vcontainer" + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "netinst_status" + "Page_NetInst" + "label" + "scrollArea" + "qt_scrollarea_viewport" + "groupswidget" + "qt_scrollarea_viewport" + "qt_scrollarea_vcontainer" + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "netinst_status" + "Page_NetInst" + "label" + "scrollArea" + "qt_scrollarea_viewport" + "groupswidget" + "qt_scrollarea_viewport" + "qt_scrollarea_vcontainer" + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "netinst_status" + "Page_NetInst" + "label" + "scrollArea" + "qt_scrollarea_viewport" + "groupswidget" + "qt_scrollarea_viewport" + "qt_scrollarea_vcontainer" + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "netinst_status" + "Page_NetInst" + "label" + "scrollArea" + "qt_scrollarea_viewport" + "groupswidget" + "qt_scrollarea_viewport" + "qt_scrollarea_vcontainer" + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "netinst_status" + "Page_NetInst" + "label" + "scrollArea" + "qt_scrollarea_viewport" + "groupswidget" + "qt_scrollarea_viewport" + "qt_scrollarea_vcontainer" + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "netinst_status" + "WelcomePage" + "" + "" + "" + "" + "mainText" + "languageIcon" + "languageWidget" + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "" + "" + "aboutButton" + "donateButton" + "supportButton" + "knownIssuesButton" + "releaseNotesButton" + + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "" + "" + + "Calamares__DebugWindow" + "tabWidget" + "qt_tabwidget_stackedwidget" + "jobQueueTab" + "jobQueueText" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "globalStorageTab" + "globalStorageView" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "modulesTab" + "modulesListView" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "typeLabel" + "moduleTypeLabel" + "interfaceLabel" + "moduleInterfaceLabel" + "moduleConfigView" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "" + "qt_scrollarea_viewport" + "qt_scrollarea_hcontainer" + "" + "qt_scrollarea_vcontainer" + "" + "toolsTab" + "crashButton" + "reloadStylesheetButton" + "widgetTreeButton" + "qt_tabwidget_tabbar" + "" + "" +Shutting down Calamares... + .. Finished shutdown. +[liveuser@ArcoLinux Desktop]$ diff --git a/calamares/branding/snigdhaos/lang/calamares-default_ar.ts b/calamares/branding/snigdhaos/lang/calamares-default_ar.ts new file mode 100644 index 0000000..3c4fe09 --- /dev/null +++ b/calamares/branding/snigdhaos/lang/calamares-default_ar.ts @@ -0,0 +1,17 @@ + + + + + show + + + This is a second Slide element. + عرض الثاني + + + + This is a third Slide element. + عرض الثالث + + + diff --git a/calamares/branding/snigdhaos/lang/calamares-default_en.ts b/calamares/branding/snigdhaos/lang/calamares-default_en.ts new file mode 100644 index 0000000..b02dbd5 --- /dev/null +++ b/calamares/branding/snigdhaos/lang/calamares-default_en.ts @@ -0,0 +1,17 @@ + + + + + show + + + This is a second Slide element. + + + + + This is a third Slide element. + + + + diff --git a/calamares/branding/snigdhaos/lang/calamares-default_eo.ts b/calamares/branding/snigdhaos/lang/calamares-default_eo.ts new file mode 100644 index 0000000..7d1ef4e --- /dev/null +++ b/calamares/branding/snigdhaos/lang/calamares-default_eo.ts @@ -0,0 +1,17 @@ + + + + + show + + + This is a second Slide element. + Ĉi tio estas la dua gliteja. + + + + This is a third Slide element. + Ĉi tio estas la tria gliteja. + + + diff --git a/calamares/branding/snigdhaos/lang/calamares-default_fr.ts b/calamares/branding/snigdhaos/lang/calamares-default_fr.ts new file mode 100644 index 0000000..ec5e041 --- /dev/null +++ b/calamares/branding/snigdhaos/lang/calamares-default_fr.ts @@ -0,0 +1,17 @@ + + + + + show + + + This is a second Slide element. + Ceci est la deuxieme affiche. + + + + This is a third Slide element. + La troisième affice ce trouve ici. + + + diff --git a/calamares/branding/snigdhaos/lang/calamares-default_nl.ts b/calamares/branding/snigdhaos/lang/calamares-default_nl.ts new file mode 100644 index 0000000..19fd583 --- /dev/null +++ b/calamares/branding/snigdhaos/lang/calamares-default_nl.ts @@ -0,0 +1,17 @@ + + + + + show + + + This is a second Slide element. + Dit is het tweede Dia element. + + + + This is a third Slide element. + Dit is het derde Dia element. + + + diff --git a/calamares/branding/snigdhaos/languages.png b/calamares/branding/snigdhaos/languages.png new file mode 100644 index 0000000..c9c9d21 Binary files /dev/null and b/calamares/branding/snigdhaos/languages.png differ diff --git a/calamares/branding/snigdhaos/logo-calamares.png b/calamares/branding/snigdhaos/logo-calamares.png new file mode 100644 index 0000000..c5c1b34 Binary files /dev/null and b/calamares/branding/snigdhaos/logo-calamares.png differ diff --git a/calamares/branding/snigdhaos/logo.png b/calamares/branding/snigdhaos/logo.png new file mode 100644 index 0000000..c592845 Binary files /dev/null and b/calamares/branding/snigdhaos/logo.png differ diff --git a/calamares/branding/snigdhaos/show.qml b/calamares/branding/snigdhaos/show.qml new file mode 100644 index 0000000..ab9b36d --- /dev/null +++ b/calamares/branding/snigdhaos/show.qml @@ -0,0 +1,223 @@ +/* === This file is part of Calamares - === + * + * SPDX-FileCopyrightText: 2015 Teo Mrnjavac + * SPDX-FileCopyrightText: 2018 Adriaan de Groot + * SPDX-License-Identifier: GPL-3.0-or-later + * + * Calamares is Free Software: see the License-Identifier above. + * + */ + +import QtQuick 2.0; +import calamares.slideshow 1.0; + +Presentation +{ + id: presentation + + function nextSlide() { + console.log("QML Component (default slideshow) Next slide"); + presentation.goToNextSlide(); + } + + Timer { + id: advanceTimer + interval: 5000 + running: presentation.activatedInCalamares + repeat: true + onTriggered: nextSlide() + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + Image { + id: background1 + source: "calamares-0.png" + width: parent.width; height: parent.height + verticalAlignment: Image.AlignTop + fillMode: Image.Stretch + anchors.fill: parent + } + + } + + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + Image { + id: background2 + source: "calamares-2.png" + width: parent.width; height: parent.height + verticalAlignment: Image.AlignTop + fillMode: Image.Stretch + anchors.fill: parent + } + + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + Image { + id: background4 + source: "calamares-3.png" + width: parent.width; height: parent.height + verticalAlignment: Image.AlignTop + fillMode: Image.Stretch + anchors.fill: parent + } + + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + Image { + id: background5 + source: "calamares-4.png" + width: parent.width; height: parent.height + verticalAlignment: Image.AlignTop + fillMode: Image.Stretch + anchors.fill: parent + } + + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + Image { + id: background6 + source: "calamares-5.png" + width: parent.width; height: parent.height + verticalAlignment: Image.AlignTop + fillMode: Image.Stretch + anchors.fill: parent + } + + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + Image { + id: background7 + source: "calamares-6.png" + width: parent.width; height: parent.height + verticalAlignment: Image.AlignTop + fillMode: Image.Stretch + anchors.fill: parent + } + + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + Image { + id: background8 + source: "calamares-7.png" + width: parent.width; height: parent.height + verticalAlignment: Image.AlignTop + fillMode: Image.Stretch + anchors.fill: parent + } + + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + Image { + id: background9 + source: "calamares-8.png" + width: parent.width; height: parent.height + verticalAlignment: Image.AlignTop + fillMode: Image.Stretch + anchors.fill: parent + } + + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + Image { + id: background10 + source: "calamares-9.png" + width: parent.width; height: parent.height + verticalAlignment: Image.AlignTop + fillMode: Image.Stretch + anchors.fill: parent + } + + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + Image { + id: background11 + source: "calamares-10.png" + width: parent.width; height: parent.height + verticalAlignment: Image.AlignTop + fillMode: Image.Stretch + anchors.fill: parent + } + + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + Image { + id: background12 + source: "calamares-11.png" + width: parent.width; height: parent.height + verticalAlignment: Image.AlignTop + fillMode: Image.Stretch + anchors.fill: parent + } + + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + Image { + id: background13 + source: "calamares-12.png" + width: parent.width; height: parent.height + verticalAlignment: Image.AlignTop + fillMode: Image.Stretch + anchors.fill: parent + } + + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + Image { + id: background14 + source: "calamares-13.png" + width: parent.width; height: parent.height + verticalAlignment: Image.AlignTop + fillMode: Image.Stretch + anchors.fill: parent + } + + } + + function onActivate() { + console.log("QML Component (default slideshow) activated"); + presentation.currentSlide = 0; + } + + function onLeave() { + console.log("QML Component (default slideshow) deactivated"); + } + +} diff --git a/calamares/branding/snigdhaos/squid.png b/calamares/branding/snigdhaos/squid.png new file mode 100644 index 0000000..452e445 Binary files /dev/null and b/calamares/branding/snigdhaos/squid.png differ diff --git a/calamares/branding/snigdhaos/stylesheet-codes.qss b/calamares/branding/snigdhaos/stylesheet-codes.qss new file mode 100644 index 0000000..080f53e --- /dev/null +++ b/calamares/branding/snigdhaos/stylesheet-codes.qss @@ -0,0 +1,398 @@ +/* + +A branding component can ship a stylesheet (like this one) +which is applied to parts of the Calamares user-interface. +In principle, all parts can be styled through CSS. +Missing parts should be filed as issues. + +The IDs are based on the object names in the C++ code. +You can use the Debug Dialog to find out object names: + - Open the debug dialog + - Choose tab *Tools* + - Click *Widget Tree* button +The list of object names is printed in the log. + +Documentation for styling Qt Widgets through a stylesheet +can be found at + https://doc.qt.io/qt-5/stylesheet-examples.html + https://doc.qt.io/qt-5/stylesheet-reference.html +In Calamares, styling widget classes is supported (e.g. +using `QComboBox` as a selector). + +This example stylesheet has all the actual styling commented out. +The examples are not exhaustive. + +Use gammaray + +*/ + + +/* ########## MAIN APPLICATION WINDOW ########## */ + +#mainApp { +} + +#mainText{ + font : bold 16px; +} + +#sidebarApp { + +} + +#logoApp { +} + +#sidebarMenuApp { + padding: 3px; + background-color: #353945; +} + +QWidget { + font: 16px; +} + +QTextEdit, QListView { +} +QDialogButtonBox { +} +QAbstractSpinBox { +} +QListWidget::item:alternate { +} + +#view-button-back:hover { + color: #58B2D7; +} +#view-button-next:hover { + color: #58B2D7; +} +#view-button-cancel:hover { + color: #58B2D7; +} + +#debugButton { + font: bold 8px; + color: #FFFFFF; +} +#debugButton:hover { + color: #58B2D7; +} + +#aboutButton:hover { + color: #58B2D7; +} +#donateButton:hover { + color: #58B2D7; +} +#supportButton:hover { + color: #58B2D7; +} +#knownIssuesButton:hover { + color: #58B2D7; +} +#releaseNotesButton:hover { + color: #58B2D7; +} + +/* ########## TOOLTIP ########## */ + +QToolTip { + background-color: #58B2D7; + font : 16px; + color: white; + padding: 3px; + border: none; +} + +QPushButton { + font : 16px; +} + +QDialogButtonBox { + dialogbuttonbox-buttons-have-icons: 0; +} + +/* ########## SCROLL BAR ########## */ + +QScrollBar:vertical { + background: #efefef; + width: 20px; + margin: 38px 0 20px 0; +} + +QScrollBar::handle:vertical { + background: #58B2D7; + max-height: 25px; +} + +QScrollBar::sub-line:vertical { + border: none; + background: none; + height: 20px; + subcontrol-position: top; + subcontrol-origin: margin; +} + +QScrollBar::add-line:vertical { + border: none; + background: none; + height: 20px; + subcontrol-position: bottom; + subcontrol-origin: margin; +} + +/* ########## QLIST VIEW ########## */ + +QListView { + font: 16px; +} + +QListView::item:alternate { + color: #58B2D7; + color: white; +} + +QListView::item:!alternate:selected:active { + background: #58B2D7; + color: white; +} + +QListView::item:selected:active { + background: #58B2D7; + color: white; +} + +QListView::item:selected:!active { + background: #58B2D7; + color: white; +} + +QListView::item:hover { + background: #58B2D7; + color: white; +} + +QListView#listLayout::item:!alternate:selected:active { + background: #58B2D7; + color: white; +} + +QListView#listVariant::item:!alternate:selected:active { + background: #58B2D7; + color: white; +} + + + +/* ########## QLINE EDIT ########## */ + +QLineEdit#LE_TestKeyboard { + font: 16px; +} + +QLineEdit#m_passphraseLineEdit, QLineEdit#vgName, +QLineEdit#m_confirmLineEdit { + font: 16px; +} + +QLineEdit#textBoxUserVerifiedPassword, QLineEdit#textBoxVerifiedRootPassword { + font: 16px; +} + +QLineEdit#textBoxFullName, QLineEdit#textBoxLoginName, QLineEdit#textBoxHostName, +QLineEdit#textBoxUserPassword, QLineEdit#textBoxRootPassword { + font: 16px; +} + +#textBoxFullName, #textBoxLoginName, #textBoxHostName, #textBoxUserPassword, +#textBoxRootPassword, #textBoxAutoLogin, #vgName { + font: 16px; +} + +#textBoxUserVerifiedPassword, #textBoxVerifiedRootPassword, +#LE_TestKeyboard, #m_confirmLineEdit, #m_passphraseLineEdit { + font: 16px; +} + +/* ##########PARTITION ########## */ + +#partitionLabel { +} + +#partitionLabelsView { +} + +#CreatePartitionDialog { +} + +#partResizerWidget { + font: 16px; +} + +/* ########## PAGE_USERSETUP ########## */ + + #labelWhatIsYourName { + font: 16px; +} + #textBoxFullName { + font: 16px; +} + #labelFullName { + font: 16px; +} + #labelFullNameError { + font: 16px; +} + #username_label_2 { + font: 16px; +} + #textBoxLoginName { + font: 16px; +} + #labelUsername { + font: 16px; +} + #labelUsernameError { + font: 16px; +} + #hostname_label_2 { + font: 16px; +} + #textBoxHostName { + font: 16px; +} + #labelHostname { + font: 16px; +} + #labelHostnameError { + font: 16px; +} + #password_label_2 { + font: 16px; +} + #textBoxUserPassword { + font: 16px; +} + #textBoxUserVerifiedPassword { + font: 16px; +} + #labelUserPassword { + font: 16px; +} + #labelUserPasswordError { + font: 16px; +} + #checkBoxRequireStrongPassword { + font: 16px; +} + #checkBoxDoAutoLogin { + font: 16px; +} + #checkBoxReusePassword { + font: 16px; +} + #labelChooseRootPassword { + font: 16px; +} + #textBoxRootPassword { + font: 16px; +} + #textBoxVerifiedRootPassword { + font: 16px; +} + #labelRootPassword { + font: 16px; +} + #labelRootPasswordError { + font: 16px; +} + +/* ########## COMBO BOX ########## */ + +QComboBox { + font: 16px; +} + +QComboBox::item:selected { + background: #58B2D7; + color: white; +} + +#mountPointComboBox::drop-down { + font: 16px; +} + +/* ########## SPIN BOX ########## */ + +QSpinBox { + font: 16px; +} + +QLineEdit { + font: 16px; +} + +/* ########## TREE VIEW ########## */ + +QTreeView { + font: 16px; + show-decoration-selected: 0; +} + +QTreeView::item { + padding: 2px; +} + +QTreeView::item:selected { + background: #58B2D7; + font: bold; +} + +QTreeView::branch:has-siblings:!adjoins-item { +} +QTreeView::branch:has-siblings:adjoins-item { +} +QTreeView::branch:!has-children:!has-siblings:adjoins-item { +} +QTreeView::branch:has-children:!has-siblings:closed, +QTreeView::branch:closed:has-children:has-siblings { +} +QTreeView::branch:open:has-children:!has-siblings, +QTreeView::branch:open:has-children:has-siblings { +} + +/* ########## CHECK BOX ########## */ + +QCheckBox { +} +QCheckBox::indicator:unchecked { +} +QCheckBox::indicator:checked { +} +QItemSelectionModel::Select { +} + +/* ########## HEADER VIEW ########## */ + +QHeaderView::section { + font : 16px; +} + +/* ########## PROGRESS BAR ########## */ + +QProgressBar { + text-align: center; +} + +QProgressBar::chunk { + background-color: #58B2D7; +} + +#debugButton { + font: bold 8px; + color: #353945; +} +#debugButton:hover { + color: #353945; +} diff --git a/calamares/branding/snigdhaos/stylesheet.qss b/calamares/branding/snigdhaos/stylesheet.qss new file mode 100644 index 0000000..eb1e6b6 --- /dev/null +++ b/calamares/branding/snigdhaos/stylesheet.qss @@ -0,0 +1,347 @@ +/* + +A branding component can ship a stylesheet (like this one) +which is applied to parts of the Calamares user-interface. +In principle, all parts can be styled through CSS. +Missing parts should be filed as issues. + +The IDs are based on the object names in the C++ code. +You can use the Debug Dialog to find out object names: + - Open the debug dialog + - Choose tab *Tools* + - Click *Widget Tree* button +The list of object names is printed in the log. + +Documentation for styling Qt Widgets through a stylesheet +can be found at + https://doc.qt.io/qt-5/stylesheet-examples.html + https://doc.qt.io/qt-5/stylesheet-reference.html +In Calamares, styling widget classes is supported (e.g. +using `QComboBox` as a selector). + +This example stylesheet has all the actual styling commented out. +The examples are not exhaustive. + +Use gammaray + +*/ + + +/* ########## MAIN APPLICATION WINDOW ########## */ + +#mainApp { +} + +#sidebarApp { + width : 250px; +} + +#mainText{ + font : bold 16px; +} + +#sidebarMenuApp { + padding: 3px; + background-color: #353945; +} + +QWidget { + font: 16px; +} + + +#view-button-back:hover { + color: #58B2D7; +} +#view-button-next:hover { + color: #58B2D7; +} +#view-button-cancel:hover { + color: #58B2D7; +} + + +/* ########## TOOLTIP ########## */ + +QToolTip { + background-color: #58B2D7; + font : 16px; + color: white; + padding: 3px; + border: none; +} + +QPushButton { + font : 16px; +} + +QDialogButtonBox { + dialogbuttonbox-buttons-have-icons: 0; +} + +/* ########## SCROLL BAR ########## */ + +QScrollBar:vertical { + background: #efefef; + width: 10px; + margin: 38px 0 20px 0; +} + +QScrollBar::handle:vertical { + background: #58B2D7; + max-height: 25px; +} + +QScrollBar::sub-line:vertical { + border: none; + background: none; + height: 10px; + subcontrol-position: top; + subcontrol-origin: margin; +} + +QScrollBar::add-line:vertical { + border: none; + background: none; + height: 10px; + subcontrol-position: bottom; + subcontrol-origin: margin; +} + +/* ########## QLIST VIEW ########## */ + +QListView { + font: 16px; +} + +QListView::item:alternate { + color: black; +} + +QListView::item:!alternate:selected:active { + background: #58B2D7; + color: white; +} + +QListView::item:selected:active { + background: #58B2D7; + color: white; +} + +QListView::item:selected:!active { + background: #58B2D7; + color: white; +} + +QListView::item:hover { + background: #58B2D7; + color: white; +} + +QListView#listLayout::item:!alternate:selected:active { + background: #58B2D7; + color: white; +} + +QListView#listVariant::item:!alternate:selected:active { + background: #58B2D7; + color: white; +} + + + +/* ########## QLINE EDIT ########## */ + +QLineEdit#LE_TestKeyboard { + font: 16px; +} + +QLineEdit#m_passphraseLineEdit, QLineEdit#vgName, +QLineEdit#m_confirmLineEdit { + font: 16px; +} + +QLineEdit#textBoxUserVerifiedPassword, QLineEdit#textBoxVerifiedRootPassword { + font: 16px; +} + +QLineEdit#textBoxFullName, QLineEdit#textBoxLoginName, QLineEdit#textBoxHostName, +QLineEdit#textBoxUserPassword, QLineEdit#textBoxRootPassword { + font: 16px; +} + +#textBoxFullName, #textBoxLoginName, #textBoxHostName, #textBoxUserPassword, +#textBoxRootPassword, #textBoxAutoLogin, #vgName { + font: 16px; +} + +#textBoxUserVerifiedPassword, #textBoxVerifiedRootPassword, +#LE_TestKeyboard, #m_confirmLineEdit, #m_passphraseLineEdit { + font: 16px; +} + +/* ##########PARTITION ########## */ + +#partResizerWidget { + font: 16px; +} + +/* ########## PAGE_USERSETUP ########## */ + + #labelWhatIsYourName { + font: 16px; +} + #textBoxFullName { + font: 16px; +} + #labelFullName { + font: 16px; +} + #labelFullNameError { + font: 16px; +} + #username_label_2 { + font: 16px; +} + #textBoxLoginName { + font: 16px; +} + #labelUsername { + font: 16px; +} + #labelUsernameError { + font: 16px; +} + #hostname_label_2 { + font: 16px; +} + #textBoxHostName { + font: 16px; +} + #labelHostname { + font: 16px; +} + #labelHostnameError { + font: 16px; +} + #password_label_2 { + font: 16px; +} + #textBoxUserPassword { + font: 16px; +} + #textBoxUserVerifiedPassword { + font: 16px; +} + #labelUserPassword { + font: 16px; +} + #labelUserPasswordError { + font: 16px; +} + #checkBoxRequireStrongPassword { + font: 16px; +} + #checkBoxDoAutoLogin { + font: 16px; +} + #checkBoxReusePassword { + font: 16px; +} + #labelChooseRootPassword { + font: 16px; +} + #textBoxRootPassword { + font: 16px; +} + #textBoxVerifiedRootPassword { + font: 16px; +} + #labelRootPassword { + font: 16px; +} + #labelRootPasswordError { + font: 16px; +} + +/* ########## COMBO BOX ########## */ + +QComboBox { + font: 16px; +} + +QComboBox::item:selected { + background: #58B2D7; + color: white; +} + +#mountPointComboBox::drop-down { + font: 16px; +} + +/* ########## SPIN BOX ########## */ + +QSpinBox { + font: 16px; +} + +QLineEdit { + font: 16px; +} + +/* ########## TREE VIEW ########## */ + +QTreeView { + font: 16px; + show-decoration-selected: 0; +} + +QTreeView::item { + padding: 2px; +} + +QTreeView::item:selected { + background: #58B2D7; + font: bold; +} + + +/* ########## HEADER VIEW ########## */ + +QHeaderView::section { + font : 16px; +} + +/* ########## PROGRESS BAR ########## */ + +QProgressBar { + text-align: center; +} + +QProgressBar::chunk { + background-color: #58B2D7; +} + +#debugButton { + background-color: none; + font: 12px; + color: #edecf0; + height: 32px; + border: none; +} + +#debugButton:hover { + color: #ff7f7f; +} + +#aboutButton { + background-color: none; + font: 12px; + color: #edecf0; + height: 32px; + border: none; +} + +QScrollBar:horizontal{ + height:0 +} diff --git a/calamares/modules/bootloader-grub.conf b/calamares/modules/bootloader-grub.conf new file mode 100644 index 0000000..bf466e0 --- /dev/null +++ b/calamares/modules/bootloader-grub.conf @@ -0,0 +1,15 @@ +efiBootLoader: "grub" + +kernel: "_ALL_kver_" +img: "_default_image_" +fallback: "_fallback_image_" +timeout: "10" + +bootloaderEntryName: "snigdhaos" + +grubInstall: "grub-install" +grubMkconfig: "grub-mkconfig" +grubCfg: "/boot/grub/grub.cfg" +grubProbe: "grub-probe" +efiBootMgr: "efibootmgr" +installEFIFallback: true diff --git a/calamares/modules/bootloader-systemd.conf b/calamares/modules/bootloader-systemd.conf new file mode 100644 index 0000000..e0273d6 --- /dev/null +++ b/calamares/modules/bootloader-systemd.conf @@ -0,0 +1,16 @@ +efiBootLoader: "systemd-boot" +kernelSearchPath: "/usr/lib/modules" +kernelPattern: "^vmlinuz.*" +loaderEntries: + - "timeout 5" + - "console-mode keep" +kernelParams: [ "quiet" ] + +bootloaderEntryName: "arcolinux" + +grubInstall: "grub-install" +grubMkconfig: "grub-mkconfig" +grubCfg: "/boot/grub/grub.cfg" +grubProbe: "grub-probe" +efiBootMgr: "efibootmgr" +installEFIFallback: true diff --git a/calamares/modules/bootloader.conf b/calamares/modules/bootloader.conf new file mode 100644 index 0000000..aa1e4c4 --- /dev/null +++ b/calamares/modules/bootloader.conf @@ -0,0 +1,15 @@ +efiBootLoader: "grub" + +kernel: "_ALL_kver_" +img: "_default_image_" +fallback: "_fallback_image_" +timeout: "10" + +bootloaderEntryName: "arcolinux" + +grubInstall: "grub-install" +grubMkconfig: "grub-mkconfig" +grubCfg: "/boot/grub/grub.cfg" +grubProbe: "grub-probe" +efiBootMgr: "efibootmgr" +installEFIFallback: true diff --git a/calamares/modules/displaymanager.conf b/calamares/modules/displaymanager.conf new file mode 100644 index 0000000..695a5f3 --- /dev/null +++ b/calamares/modules/displaymanager.conf @@ -0,0 +1,9 @@ +displaymanagers: + - sddm + +executable: "startxfce4" +desktopFile: "xfce" + +basicSetup: false + +sysconfigSetup: false diff --git a/calamares/modules/finished.conf b/calamares/modules/finished.conf new file mode 100644 index 0000000..a0b243c --- /dev/null +++ b/calamares/modules/finished.conf @@ -0,0 +1,5 @@ +restartNowMode: user-checked + +restartNowCommand: "systemctl -i reboot" + +notifyOnFinished: false diff --git a/calamares/modules/fstab.conf b/calamares/modules/fstab.conf new file mode 100644 index 0000000..42ec269 --- /dev/null +++ b/calamares/modules/fstab.conf @@ -0,0 +1,11 @@ +mountOptions: + default: defaults,noatime + btrfs: defaults,noatime,noautodefrag,compress=zstd + btrfs_swap: defaults,noatime + +efiMountOptions: umask=0077 + +ssdExtraMountOptions: + btrfs: discard=async,ssd + +crypttabOptions: luks \ No newline at end of file diff --git a/calamares/modules/grubcfg.conf b/calamares/modules/grubcfg.conf new file mode 100644 index 0000000..8516765 --- /dev/null +++ b/calamares/modules/grubcfg.conf @@ -0,0 +1,12 @@ +overwrite: false + +prefer_grub_d: false + +keep_distributor: false + +defaults: + GRUB_TIMEOUT: 5 + GRUB_DEFAULT: "saved" + GRUB_DISABLE_SUBMENU: true + GRUB_TERMINAL_OUTPUT: "console" + GRUB_DISABLE_RECOVERY: true diff --git a/calamares/modules/initcpio-linux-zen.conf b/calamares/modules/initcpio-linux-zen.conf new file mode 100644 index 0000000..0998e8e --- /dev/null +++ b/calamares/modules/initcpio-linux-zen.conf @@ -0,0 +1,3 @@ +kernel: linux-zen + +be_unsafe: false diff --git a/calamares/modules/initcpio-linux.conf b/calamares/modules/initcpio-linux.conf new file mode 100644 index 0000000..97f9b30 --- /dev/null +++ b/calamares/modules/initcpio-linux.conf @@ -0,0 +1,3 @@ +kernel: linux + +be_unsafe: false diff --git a/calamares/modules/locale.conf b/calamares/modules/locale.conf new file mode 100644 index 0000000..fbe16e6 --- /dev/null +++ b/calamares/modules/locale.conf @@ -0,0 +1,9 @@ +region: "America" +zone: "New_York" + +localeGenPath: "/etc/locale.gen" + +geoip: + style: "json" + url: "https://geoip.kde.org/v1/calamares" + selector: "" diff --git a/calamares/modules/machineid.conf b/calamares/modules/machineid.conf new file mode 100644 index 0000000..a986866 --- /dev/null +++ b/calamares/modules/machineid.conf @@ -0,0 +1,3 @@ +systemd: true +dbus: true +dbus-symlink: true \ No newline at end of file diff --git a/calamares/modules/mount.conf b/calamares/modules/mount.conf new file mode 100644 index 0000000..aa24558 --- /dev/null +++ b/calamares/modules/mount.conf @@ -0,0 +1,48 @@ +extraMounts: + - device: proc + fs: proc + mountPoint: /proc + - device: sys + fs: sysfs + mountPoint: /sys + - device: /dev + mountPoint: /dev + options: [ bind ] + - device: tmpfs + fs: tmpfs + mountPoint: /run + - device: /run/udev + mountPoint: /run/udev + options: [ bind ] + - device: efivarfs + fs: efivarfs + mountPoint: /sys/firmware/efi/efivars + efi: true + +btrfsSubvolumes: + - mountPoint: / + subvolume: /@ + - mountPoint: /home + subvolume: /@home + - mountPoint: /root + subvolume: /@root + - mountPoint: /srv + subvolume: /@srv + - mountPoint: /var/cache + subvolume: /@cache + - mountPoint: /var/log + subvolume: /@log + - mountPoint: /var/tmp + subvolume: /@tmp + +btrfsSwapSubvol: /@swap + +mountOptions: + - filesystem: default + options: [ defaults, noatime ] + - filesystem: efi + options: [ defaults, umask=0077 ] + - filesystem: btrfs + options: [ defaults, noatime, compress=zstd ] + - filesystem: btrfs_swap + options: [ defaults, noatime ] diff --git a/calamares/modules/netinstall-applications.conf b/calamares/modules/netinstall-applications.conf new file mode 100644 index 0000000..3ea34a0 --- /dev/null +++ b/calamares/modules/netinstall-applications.conf @@ -0,0 +1,13 @@ +groupsUrl: + - https://raw.githubusercontent.com/arcolinux/arco-calamares-config-xs-zen/master/calamares/modules/netinstall-applications.yaml + - file:///etc/calamares/modules/netinstall-applications.yaml + +required: false + +label: + sidebar: "Applications" + sidebar[nl]: "Applicaties" + sidebar[ja]: "アプリケーション" + title: "Applications" + title[nl]: "Applicaties" + title[ja]: "アプリケーション" diff --git a/calamares/modules/netinstall-applications.yaml b/calamares/modules/netinstall-applications.yaml new file mode 100644 index 0000000..dfc0720 --- /dev/null +++ b/calamares/modules/netinstall-applications.yaml @@ -0,0 +1,111 @@ +- name: "Accessories" + description: "Accessories" + critical: false + hidden: false + selected: false + expanded: true + packages: + - cheese + - font-manager-git + - galculator + - gpick + - flameshot-git + - liferea + - mediainfo-gui + - mcomix + - nitrogen + - nomacs + - nomacs-git + - nomacs-qt6-git + - pdfarranger + - plank + - arcolinux-plank-themes-git + - screenkey-git + - variety +- name: "Conky" + description: "Conky and conky collection" + critical: false + hidden: false + selected: false + expanded: true + packages: + - arcolinux-conky-collection-git + - arcolinux-pipemenus-git + - conky-lua-archers + - yad +- name: "Git" + description: "Git applications" + critical: false + hidden: false + selected: false + expanded: true + packages: + - gitahead + - gitg + - gitfiend + - github-desktop-bin + - gitkraken +- name: "Password Manager" + description: "Password managers" + critical: false + hidden: false + selected: false + expanded: true + packages: + - bitwarden + - enpass-bin + - keepassxc + - lastpass +- name: "Privacy" + description: "Applications that ensure your privacy" + critical: false + hidden: false + selected: false + expanded: true + packages: + - torbrowser-launcher + - privoxy +- name: "Virtualbox for Linux kernel" + description: "Installs virtualbox for linux kernel" + critical: false + hidden: false + selected: false + expanded: false + packages: + - virtualbox + - virtualbox-host-dkms + - linux + - linux-headers +- name: "Virtualbox for Linux-lts kernel" + description: "Installs virtualbox for linux-lts kernel" + critical: false + hidden: false + selected: false + expanded: false + packages: + - virtualbox + - virtualbox-host-dkms + - linux-lts + - linux-lts-headers +- name: "Vmware" + description: "Installs vmware software" + critical: false + hidden: false + selected: false + expanded: false + packages: + - open-vm-tools + - vmware-workstation + - vmware-keymaps +- name: "Qemu software" + description: "Installs qemu software" + critical: false + hidden: false + selected: false + expanded: false + packages: + - qemu-base + - qemu-full + - quickemu + - quickemu-git + - quickgui-bin diff --git a/calamares/modules/netinstall-arcolinux.conf b/calamares/modules/netinstall-arcolinux.conf new file mode 100644 index 0000000..848901b --- /dev/null +++ b/calamares/modules/netinstall-arcolinux.conf @@ -0,0 +1,13 @@ +groupsUrl: + - https://raw.githubusercontent.com/arcolinux/arco-calamares-config-xs-zen/master/calamares/modules/netinstall-arcolinux.yaml + - file:///etc/calamares/modules/netinstall-arcolinux.yaml + +required: false + +label: + sidebar: "ArcoLinux Tools" + sidebar[nl]: "ArcoLinux Tools" + sidebar[ja]: "ArcoLinux 道具" + title: "ArcoLinux Tools" + title[nl]: "ArcoLinux Tools" + title[ja]: "ArcoLinux 道具" diff --git a/calamares/modules/netinstall-arcolinux.yaml b/calamares/modules/netinstall-arcolinux.yaml new file mode 100644 index 0000000..1d05252 --- /dev/null +++ b/calamares/modules/netinstall-arcolinux.yaml @@ -0,0 +1,155 @@ +- name: "ArcoLinux Plasma Packages" + description: "ArcoLinux plasma packages" + critical: false + hidden: false + selected: false + expanded: true + packages: + - arcolinux-plasma-keybindings-git + - arcolinux-plasma-servicemenus-git + - arcolinux-plasma-theme-candy-beauty-arc-dark-git + - arcolinux-plasma-theme-candy-beauty-nordic-git + - arcolinux-plasma-theme-surfn-arc-dark-git + - arcolinux-plasma-theme-surfn-nordic-git +- name: "ArcoLinux Meta Packages" + description: "ArcoLinux meta packages" + critical: false + hidden: false + selected: false + expanded: true + packages: + - arcolinux-meta-arc-theme + - arcolinux-meta-asian-fonts + - arcolinux-meta-fun + - arcolinux-meta-log + - arcolinux-meta-plasma-design + - arcolinux-meta-samba + - arcolinux-meta-sddm-themes + - arcolinux-meta-steam-amd + - arcolinux-meta-steam-intel + - arcolinux-meta-steam-nvidia + - arcolinux-meta-utilities + - arcolinux-meta-wine +- name: "ArcoLinux Applications" + description: "ArcoLinux applications" + critical: false + hidden: false + selected: false + expanded: true + packages: + - archlinux-logout-git + - archlinux-tweak-tool-git + - arcolinux-desktop-trasher-git + - arcolinux-powermenu-git + - arcolinux-reflector-simple-git + - arcolinux-teamviewer + - arcolinux-tellme-git + - arcolinux-xlunch-git +- name: "ArcoLinux Arc Theming" + description: "ArcoLinux arc theming packages" + critical: false + hidden: false + selected: false + expanded: true + packages: + - arcolinux-arc-aqua-git + - arcolinux-arc-archlinux-blue-git + - arcolinux-arc-arcolinux-blue-git + - arcolinux-arc-azul-git + - arcolinux-arc-azure-git + - arcolinux-arc-azure-dodger-blue-git + - arcolinux-arc-blood-git + - arcolinux-arc-blue-sky-git + - arcolinux-arc-blueberry-git + - arcolinux-arc-botticelli-git + - arcolinux-arc-bright-lilac-git + - arcolinux-arc-carnation-git + - arcolinux-arc-carolina-blue-git + - arcolinux-arc-casablanca-git + - arcolinux-arc-cornflower-blue-git + - arcolinux-arc-crimson-git + - arcolinux-arc-darkish-git + - arcolinux-arc-dawn-git + - arcolinux-arc-dodger-blue-git + - arcolinux-arc-emerald-git + - arcolinux-arc-evopop-git + - arcolinux-arc-fern-git + - arcolinux-arc-fire-git + - arcolinux-arc-froly-git + - arcolinux-arc-havelock-git + - arcolinux-arc-hibiscus-git + - arcolinux-arc-light-blue-grey-git + - arcolinux-arc-light-blue-surfn-git + - arcolinux-arc-light-salmon-git + - arcolinux-arc-mandy-git + - arcolinux-arc-mantis-git + - arcolinux-arc-medium-blue-git + - arcolinux-arc-niagara-git + - arcolinux-arc-nice-blue-git + - arcolinux-arc-numix-git + - arcolinux-arc-orchid-git + - arcolinux-arc-pale-grey-git + - arcolinux-arc-paper-git + - arcolinux-arc-pink-git + - arcolinux-arc-polo-git + - arcolinux-arc-punch-git + - arcolinux-arc-purpley-git + - arcolinux-arc-red-orange-git + - arcolinux-arc-red-violet-git + - arcolinux-arc-rusty-orange-git + - arcolinux-arc-sky-blue-git + - arcolinux-arc-slate-grey-git + - arcolinux-arc-smoke-git + - arcolinux-arc-soft-blue-git + - arcolinux-arc-tacao-git + - arcolinux-arc-tangerine-git + - arcolinux-arc-tory-git + - arcolinux-arc-twilight-git + - arcolinux-arc-warm-pink-git +- name: "ArcoLinux Theming" + description: "ArcoLinux theming packages" + critical: false + hidden: false + selected: false + expanded: true + packages: + - a-candy-beauty-icon-theme-git + - arcolinux-arc-kde + - arcolinux-mint-y-icons-git + - arcolinux-paleofetch-git + - arcolinux-plank-git + - arcolinux-plank-themes-git +- name: "ArcoLinux Wallpapers" + description: "ArcoLinux wallpapers" + critical: false + hidden: false + selected: false + expanded: true + packages: + - archlinux-login-backgrounds-git + - arcolinux-wallpapers-git + - arcolinux-wallpapers-candy-git + - arcolinux-wallpapers-dual-git +- name: "ArcoLinux Sddm themes" + description: "ArcoLinux Sddm themes" + critical: false + hidden: false + selected: false + expanded: true + packages: + - archlinux-login-backgrounds-git + - arcolinux-sddm-futuristic-git + - arcolinux-sddm-materia-git + - arcolinux-sddm-simplicity-git + - arcolinux-sddm-slice-git + - arcolinux-sddm-sugar-candy-git + - arcolinux-sddm-urbanlifestyle-git +- name: "Packages that will install plasma as a dependency" + description: "Plasma related" + critical: false + hidden: false + selected: false + expanded: true + packages: + - arcolinux-sddm-breeze-git + - arcolinux-sddm-breeze-minimal-git diff --git a/calamares/modules/netinstall-arcolinuxdev.conf b/calamares/modules/netinstall-arcolinuxdev.conf new file mode 100644 index 0000000..c95278c --- /dev/null +++ b/calamares/modules/netinstall-arcolinuxdev.conf @@ -0,0 +1,13 @@ +groupsUrl: + - https://raw.githubusercontent.com/arcolinux/arco-calamares-config-xs-zen/master/calamares/modules/netinstall-arcolinuxdev.yaml + - file:///etc/calamares/modules/netinstall-arcolinuxdev.yaml + +required: false + +label: + sidebar: "ArcoLinux Dev" + sidebar[nl]: "ArcoLinux Dev" + sidebar[ja]: "ArcoLinux 開発" + title: "ArcoLinux Dev" + title[nl]: "ArcoLinux Dev" + title[ja]: "ArcoLinux 開発" diff --git a/calamares/modules/netinstall-arcolinuxdev.yaml b/calamares/modules/netinstall-arcolinuxdev.yaml new file mode 100644 index 0000000..07316ce --- /dev/null +++ b/calamares/modules/netinstall-arcolinuxdev.yaml @@ -0,0 +1,18 @@ +- name: "ArcoLinux Dev" + description: "Software for ArcoLinux developers and betatesters" + critical: false + hidden: false + selected: false + expanded: true + packages: + - chromium + - discord + - flameshot-git + - gitahead + - meld + - simplescreenrecorder + - sublime-text-4 + - telegram-desktop + - vivaldi + - vivaldi-ffmpeg-codecs + - vivaldi-widevine diff --git a/calamares/modules/netinstall-communication.conf b/calamares/modules/netinstall-communication.conf new file mode 100644 index 0000000..b8adbf1 --- /dev/null +++ b/calamares/modules/netinstall-communication.conf @@ -0,0 +1,13 @@ +groupsUrl: + - https://raw.githubusercontent.com/arcolinux/arco-calamares-config-xs-zen/master/calamares/modules/netinstall-communication.yaml + - file:///etc/calamares/modules/netinstall-communication.yaml + +required: false + +label: + sidebar: "Communication" + sidebar[nl]: "Communication" + sidebar[ja]: "コミュニケーション" + title: "Communication" + title[nl]: "Communication" + title[ja]: "コミュニケーション" diff --git a/calamares/modules/netinstall-communication.yaml b/calamares/modules/netinstall-communication.yaml new file mode 100644 index 0000000..7a7d294 --- /dev/null +++ b/calamares/modules/netinstall-communication.yaml @@ -0,0 +1,44 @@ +- name: "Communication" + description: "Communication software" + critical: false + hidden: false + selected: false + expanded: true + packages: + - element-desktop + - discord + - discord_arch_electron + - google-chat-linux-bin + - hexchat + - jitsi-meet-desktop-bin + - mumble + - neochat + - pidgin + - qtox + - skypeforlinux-stable-bin + - signal-desktop + - signal-desktop-beta-bin + - slack-desktop + - teams + - telegram-desktop + - telegram-desktop-bin + - tweetdeck-desktop + - viber + - whatsapp-nativefier + - wire-desktop + - zoom +- name: "Connect Remotely" + description: "Applications to connect to other systems" + critical: false + hidden: false + selected: false + expanded: true + packages: + - anydesk-bin + - arcolinux-teamviewer + - krdc + - nomachine + - realvnc-vnc-server + - realvnc-vnc-viewer + - remmina + - tigervnc diff --git a/calamares/modules/netinstall-desktop-wayland.conf b/calamares/modules/netinstall-desktop-wayland.conf new file mode 100644 index 0000000..1e7cba2 --- /dev/null +++ b/calamares/modules/netinstall-desktop-wayland.conf @@ -0,0 +1,13 @@ +groupsUrl: + - https://raw.githubusercontent.com/arcolinux/arco-calamares-config-xs-zen/master/calamares/modules/netinstall-desktop-wayland.yaml + - file:///etc/calamares/modules/netinstall-desktop-wayland.yaml + +required: false + +label: + sidebar: "Desktop Wayland" + sidebar[nl]: "Desktop Wayland" + sidebar[jp]: "デスクトップ" + title: "Desktop Wayland" + title[nl]: "Desktop Wayland" + title[jp]: "デスクトップ" diff --git a/calamares/modules/netinstall-desktop-wayland.yaml b/calamares/modules/netinstall-desktop-wayland.yaml new file mode 100644 index 0000000..3b533a7 --- /dev/null +++ b/calamares/modules/netinstall-desktop-wayland.yaml @@ -0,0 +1,42 @@ +- name: "Desktop: Hyprland - Wayland" + description: "Installs hyprland - only on real metal" + critical: false + hidden: false + selected: false + immutable: false + expanded: false + packages: + - archlinux-logout-git + - arcolinux-hyprland-git + - arcolinux-kitty-git + - hyprland-git + - kitty + - swaybg + - thunar + - ttf-jetbrains-mono-nerd + - waybar-hyprland-git + - wofi + - xfce4-terminal +- name: "Desktop: Sway - Wayland" + description: "Installs sway - only on real metal" + critical: false + hidden: false + selected: false + immutable: false + expanded: false + packages: + - archlinux-logout-git + - arcolinux-kitty-git + - arcolinux-nwg-drawer-git + - arcolinux-sway-git + - kitty + - nwg-drawer-bin + - rofi-lbonn-wayland-only-git + - thunar + - sway-dev + - swaybg + - swayidle + - swaylock + - ttf-iosevka-nerd + - waybar + diff --git a/calamares/modules/netinstall-desktop.conf b/calamares/modules/netinstall-desktop.conf new file mode 100644 index 0000000..ea977c9 --- /dev/null +++ b/calamares/modules/netinstall-desktop.conf @@ -0,0 +1,13 @@ +groupsUrl: + - https://raw.githubusercontent.com/arcolinux/arco-calamares-config-xs-zen/master/calamares/modules/netinstall-desktop.yaml + - file:///etc/calamares/modules/netinstall-desktop.yaml + +required: false + +label: + sidebar: "Desktop" + sidebar[nl]: "Desktop" + sidebar[jp]: "デスクトップ" + title: "Desktop" + title[nl]: "Desktop" + title[jp]: "デスクトップ" diff --git a/calamares/modules/netinstall-desktop.yaml b/calamares/modules/netinstall-desktop.yaml new file mode 100644 index 0000000..82a4f1a --- /dev/null +++ b/calamares/modules/netinstall-desktop.yaml @@ -0,0 +1,1175 @@ +- name: "Desktop: Awesome" + description: "Installs awesome desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-awesome-git + - arcolinux-config-all-desktops-git + - arcolinux-dconf-all-desktops-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-rofi-git + - arcolinux-rofi-themes-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-volumeicon-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - autorandr + - awesome + - dmenu + - feh + - lxappearance + - picom + - polkit-gnome + - rofi + - thunar + - thunar-archive-plugin + - thunar-volman + - vicious + - volumeicon + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal +- name: "Desktop: Berry" + description: "Installs berry desktop" + critical: false + hidden: false + selected: false + packages: + - alacritty + - arcolinux-berry-git + - arcolinux-config-all-desktops-git + - arcolinux-dconf-all-desktops-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-polybar-git + - arcolinux-rofi-git + - arcolinux-rofi-themes-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-volumeicon-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - berry-dev-git + - dmenu + - feh + - lxappearance + - picom + - polybar + - polkit-gnome + - rofi + - sxhkd + - thunar + - thunar-archive-plugin + - thunar-volman + - ttf-hack + - volumeicon + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal +- name: "Desktop: Bspwm" + description: "Installs bspwm desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-bspwm-git + - arcolinux-config-all-desktops-git + - arcolinux-dconf-all-desktops-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-polybar-git + - arcolinux-rofi-git + - arcolinux-rofi-themes-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-volumeicon-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - awesome-terminal-fonts + - bspwm + - dmenu + - feh + - lxappearance + - picom + - polybar + - polkit-gnome + - rofi + - sutils-git + - sxhkd + - thunar + - thunar-archive-plugin + - thunar-volman + - volumeicon + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal + - xtitle-git +- name: "Desktop: Budgie" + description: "Installs budgie desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-budgie-dconf-git + - arcolinux-budgie-git + - arcolinux-config-all-desktops-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-guake-autostart-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-wallpapers-git + - budgie-desktop + - budgie-extras + - gnome + - guake + - ttf-hack +- name: "Desktop: Cinnamon" + description: "Installs cinnamon desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-cinnamon-dconf-git + - arcolinux-cinnamon-git + - arcolinux-config-all-desktops-git + - arcolinux-gtk3-surfn-arc-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - cinnamon + - cinnamon-translations + - gnome-screenshot + - gnome-system-monitor + - gnome-terminal + - iso-flag-png + - mintlocale + - nemo-fileroller + - xfce4-terminal +- name: "Desktop: Chadwm" + description: "Installs chadwm desktop" + critical: false + hidden: false + selected: false + packages: + - alacritty + - arcolinux-chadwm-git + - arcolinux-config-all-desktops-git + - arcolinux-dconf-all-desktops-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-rofi-git + - arcolinux-rofi-themes-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-volumeicon-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - dmenu + - feh + - lxappearance + - picom + - polkit-gnome + - rofi + - sxhkd + - thunar + - thunar-archive-plugin + - thunar-volman + - ttf-hack + - ttf-jetbrains-mono-nerd + - ttf-meslo-nerd-font-powerlevel10k + - volumeicon + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal +- name: "Desktop: Cutefish" + description: "Installs cutefish desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-cutefish-dconf-git + - arcolinux-cutefish-git + - arcolinux-config-all-desktops-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-wallpapers-git + - cutefish +- name: "Desktop: Cwm" + description: "Installs cwm desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-config-all-desktops-git + - arcolinux-cwm-git + - arcolinux-dconf-all-desktops-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-polybar-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-volumeicon-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - autorandr + - cwm + - dmenu + - feh + - lxappearance + - picom + - polybar + - sxhkd + - thunar + - thunar-archive-plugin + - thunar-volman + - volumeicon + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal +- name: "Desktop: Deepin" + description: "Installs deepin desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-config-all-desktops-git + - arcolinux-deepin-dconf-git + - arcolinux-deepin-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-wallpapers-git + - deepin + - deepin-extra +- name: "Desktop: Dk" + description: "Installs dk desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-config-all-desktops-git + - arcolinux-dconf-all-desktops-git + - arcolinux-dk-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-polybar-git + - arcolinux-rofi-git + - arcolinux-rofi-themes-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-volumeicon-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - dk + - dmenu + - feh + - lxappearance + - nerd-fonts-source-code-pro + - picom + - polkit-gnome + - polybar + - rofi + - sxhkd + - thunar + - thunar-archive-plugin + - thunar-volman + - volumeicon + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal +- name: "Desktop: Dusk" + description: "Installs dusk desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-config-all-desktops-git + - arcolinux-dconf-all-desktops-git + - arcolinux-dusk-git + - arcolinux-dwm-st-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-rofi-git + - arcolinux-rofi-themes-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-volumeicon-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - dmenu + - feh + - lxappearance + - picom + - polkit-gnome + - rofi + - sxhkd + - thunar + - thunar-archive-plugin + - thunar-volman + - volumeicon + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal +- name: "Desktop: Dwm" + description: "Installs dwm desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-config-all-desktops-git + - arcolinux-dconf-all-desktops-git + - arcolinux-dwm-git + - arcolinux-dwm-slstatus-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-rofi-git + - arcolinux-rofi-themes-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-volumeicon-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - dmenu + - feh + - gsimplecal + - lxappearance + - picom + - polkit-gnome + - rofi + - sxhkd + - thunar + - thunar-archive-plugin + - thunar-volman + - volumeicon + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal +- name: "Desktop: Enlightenment" + description: "Installs enlightenment desktop" + critical: false + hidden: false + selected: false + packages: + - enlightenment +- name: "Desktop: Fvwm3" + description: "Installs fvwm3 desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-config-all-desktops-git + - arcolinux-dconf-all-desktops-git + - arcolinux-fvwm3-git + - arcolinux-gtk3-surfn-arc-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-rofi-git + - arcolinux-rofi-themes-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-volumeicon-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - dmenu + - feh + - fvwm3-git + - gsimplecal + - picom + - polkit-gnome + - rofi + - sxhkd + - thunar + - thunar-archive-plugin + - thunar-volman + - volumeicon + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal +- name: "Desktop: Gnome" + description: "Installs gnome desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-config-all-desktops-git + - arcolinux-gnome-dconf-git + - arcolinux-gnome-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-guake-autostart-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-wallpapers-git + - gnome + - gnome-extra + - gnome-shell-extension-appindicator-git + - gnome-shell-extension-dash-to-dock + - gnome-shell-extension-pop-shell-git + - gnome-system-tools + - guake + - ttf-hack +- name: "Desktop: Herbstluftwm" + description: "Installs herbstluftwm desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-config-all-desktops-git + - arcolinux-dconf-all-desktops-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-herbstluftwm-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-polybar-git + - arcolinux-rofi-git + - arcolinux-rofi-themes-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-volumeicon-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - awesome-terminal-fonts + - dmenu + - feh + - herbstluftwm + - lxappearance + - picom + - polkit-gnome + - polybar + - rofi + - sxhkd + - thunar + - thunar-archive-plugin + - thunar-volman + - volumeicon + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal + - xtitle-git +- name: "Desktop: Hypr" + description: "Installs hypr desktop" + critical: false + hidden: false + selected: false + packages: + - alacritty + - arcolinux-config-all-desktops-git + - arcolinux-dconf-all-desktops-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-hypr-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-polybar-git + - arcolinux-rofi-git + - arcolinux-rofi-themes-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-volumeicon-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - dmenu + - feh + - hypr-dev-git + - lxappearance + - picom + - polkit-gnome + - polybar + - rofi + - sxhkd + - thunar + - thunar-archive-plugin + - thunar-volman + - ttf-hack + - volumeicon + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal +- name: "Desktop: i3" + description: "Installs i3 desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-config-all-desktops-git + - arcolinux-dconf-all-desktops-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-i3wm-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-nitrogen-git + - arcolinux-polybar-git + - arcolinux-rofi-git + - arcolinux-rofi-themes-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-volumeicon-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - autotiling + - dmenu + - feh + - i3blocks + - i3-wm + - i3status + - lxappearance + - nitrogen + - picom + - polkit-gnome + - polybar + - rofi + - thunar + - thunar-archive-plugin + - thunar-volman + - volumeicon + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal +- name: "Desktop: Icewm" + description: "Installs icewm desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-config-all-desktops-git + - arcolinux-dconf-all-desktops-git + - arcolinux-gtk3-surfn-arc-git + - arcolinux-icewm-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-rofi-git + - arcolinux-rofi-themes-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-volumeicon-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - autorandr + - dmenu + - feh + - icewm + - lxappearance + - picom + - polkit-gnome + - rofi + - thunar + - thunar-archive-plugin + - thunar-volman + - volumeicon + - xdgmenumaker + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal +- name: "Desktop: Jwm" + description: "Installs jwm desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-config-all-desktops-git + - arcolinux-dconf-all-desktops-git + - arcolinux-gtk3-surfn-arc-git + - arcolinux-jwm-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-rofi-git + - arcolinux-rofi-themes-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-volumeicon-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - autorandr + - dmenu + - feh + - jwm + - lxappearance + - picom + - polkit-gnome + - rofi + - sxhkd + - thunar + - thunar-archive-plugin + - thunar-volman + - volumeicon + - xdgmenumaker + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal +- name: "Desktop: Leftwm" + description: "Installs leftwm desktop" + critical: false + hidden: false + selected: false + packages: + - a-candy-beauty-icon-theme-git + - arcolinux-leftwm-git + - arcolinux-config-all-desktops-git + - arcolinux-dconf-all-desktops-git + - arcolinux-gtk3-arcolinux-candy-beauty-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-polybar-git + - arcolinux-rofi-git + - arcolinux-rofi-themes-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-volumeicon-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - autorandr + - dmenu + - feh + - leftwm-dev-git + - leftwm-theme-git + - lxappearance + - nerd-fonts-source-code-pro + - nitrogen + - picom + - polybar + - polkit-gnome + - rofi + - rofi-theme-fonts + - sxhkd + - thunar + - thunar-archive-plugin + - thunar-media-tags-plugin + - thunar-volman + - ttf-fantasque-sans-mono + - ttf-iosevka-nerd + - ttf-material-design-iconic-font + - ttf-meslo-nerd-font-powerlevel10k + - volumeicon + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal +- name: "Desktop: Lxqt" + description: "Installs lxqt desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-config-all-desktops-git + - arcolinux-dconf-all-desktops-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-lxqt-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - dmenu + - lxappearance + - lxqt + - lxqt-arc-dark-theme-git + - obconf-qt + - pavucontrol-qt + - picom + - polkit-gnome + - thunar + - thunar-archive-plugin + - thunar-volman + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal + - xscreensaver +- name: "Desktop: Mate" + description: "Installs mate desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-config-all-desktops-git + - arcolinux-gtk3-surfn-arc-git + - arcolinux-mate-dconf-git + - arcolinux-mate-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - dmenu + - gnome-screenshot + - mate + - mate-extra + - mate-tweak + - xfce4-terminal +- name: "Desktop: Nimdow" + description: "Installs nimdow desktop" + critical: false + hidden: false + selected: false + packages: + - alacritty + - archlinux-logout-git + - arcolinux-btop-git + - arcolinux-config-all-desktops-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-dconf-all-desktops-git + - arcolinux-nimdow-git + - arcolinux-powermenu-git + - arcolinux-rofi-git + - arcolinux-rofi-themes-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-volumeicon-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - btop + - dmenu + - feh + - lxappearance + - nim + - nimdow-bin + - nitrogen + - picom + - polkit-gnome + - rofi + - rofi-theme-fonts + - sxhkd + - thunar + - thunar-archive-plugin + - thunar-media-tags-plugin + - thunar-volman + - ttf-jetbrains-mono-nerd + - ttf-hack + - volumeicon + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal +- name: "Desktop: Openbox" + description: "Installs openbox desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-common-git + - arcolinux-config-all-desktops-git + - arcolinux-dconf-all-desktops-git + - arcolinux-docs-git + - arcolinux-geany-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-nitrogen-git + - arcolinux-obmenu-generator-git + - arcolinux-openbox-git + - arcolinux-openbox-themes-git + - arcolinux-pipemenus-git + - arcolinux-plank-git + - arcolinux-plank-themes-git + - arcolinux-rofi-git + - arcolinux-rofi-themes-git + - arcolinux-root-git + - arcolinux-tint2-git + - arcolinux-tint2-themes-git + - archlinux-tweak-tool-git + - arcolinux-volumeicon-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - dmenu + - feh + - geany + - gksu + - gnome-screenshot + - gsimplecal + - gtk2-perl + - lxappearance-obconf + - lxrandr + - nitrogen + - obconf + - obmenu-generator + - obmenu3 + - openbox + - openbox-arc-git + - openbox-themes-pambudi-git + - perl-linux-desktopfiles + - picom + - plank + - polkit-gnome + - rofi + - thunar + - thunar-archive-plugin + - thunar-volman + - tint2 + - volumeicon + - xcape + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal + - yad +- name: "Desktop: Pantheon" + description: "Installs pantheon desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-root-git + - archlinux-tweak-tool-git + - pantheon +- name: "Desktop: Plasma" + description: "Installs plasma desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-plasma-theme-candy-beauty-arc-dark-git + - arcolinux-plasma-theme-candy-beauty-nordic-git + - arcolinux-plasma-theme-surfn-arc-dark-git + - arcolinux-plasma-theme-surfn-nordic-git + - plasma + - kde-accessibility-meta + - kde-education-meta + - kde-games-meta + - kde-graphics-meta + - kde-multimedia-meta + - kde-network-meta + - kde-pim-meta + - kde-sdk-meta + - kde-system-meta + - kde-utilities-meta + - kdevelop-meta + - arcolinux-arc-kde + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-wallpapers-git + - ark + - breeze + - cryfs + - discover + - dolphin + - dolphin-plugins + - encfs + - ffmpegthumbs + - gocryptfs + - gwenview + - kate + - kde-gtk-config + - kdeconnect + - kdenetwork-filesharing + - ktorrent + - ocs-url + - okular + - packagekit-qt5 + - partitionmanager + - spectacle + - surfn-plasma-dark-icons-git + - surfn-plasma-light-icons-git + - yakuake +- name: "Desktop: Qtile" + description: "Installs qtile desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-config-all-desktops-git + - arcolinux-dconf-all-desktops-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-qtile-git + - arcolinux-rofi-git + - arcolinux-rofi-themes-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-volumeicon-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - awesome-terminal-fonts + - dmenu + - feh + - lxappearance + - picom + - polkit-gnome + - python-psutil + - python-setuptools + - qtile + - rofi + - thunar + - thunar-archive-plugin + - thunar-volman + - volumeicon + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal +- name: "Desktop: Spectrwm" + description: "Installs spectrwm desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-config-all-desktops-git + - arcolinux-dconf-all-desktops-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-polybar-git + - arcolinux-rofi-git + - arcolinux-rofi-themes-git + - arcolinux-root-git + - arcolinux-spectrwm-git + - archlinux-tweak-tool-git + - arcolinux-volumeicon-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - awesome-terminal-fonts + - dmenu + - feh + - lxappearance + - picom + - polkit-gnome + - polybar + - python-psutil + - spectrwm + - sutils-git + - sxhkd + - thunar + - thunar-archive-plugin + - thunar-volman + - volumeicon + - xdo + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal + - xtitle-git +- name: "Desktop: Ukui" + description: "Installs ukui desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-config-all-desktops-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-local-xfce4-git + - arcolinux-qt5-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-ukui-dconf-git + - arcolinux-ukui-git + - arcolinux-xfce-git + - arcolinux-wallpapers-git + - dmenu + - gnome-screenshot + - gvfs + - lxappearance + - mate-control-center + - mate-desktop + - mate-menus + - mate-system-monitor + - mate-terminal + - qt5-quickcontrols + - redshift + - thunar + - thunar-archive-plugin + - thunar-volman + - ukui + - xfce4-terminal +- name: "Desktop: Wmderland" + description: "Installs wmderland desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-config-all-desktops-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-wmderland-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-polybar-git + - arcolinux-rofi-git + - arcolinux-rofi-themes-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-volumeicon-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - dmenu + - feh + - lxappearance + - picom + - polkit-gnome + - polybar + - rofi + - sxhkd + - thunar + - thunar-archive-plugin + - thunar-volman + - volumeicon + - wmderland-git + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal +- name: "Desktop: Worm" + description: "Installs worm desktop" + critical: false + hidden: false + selected: false + packages: + - alacritty + - arcolinux-config-all-desktops-git + - arcolinux-dconf-all-desktops-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-polybar-git + - arcolinux-rofi-git + - arcolinux-rofi-themes-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-volumeicon-git + - arcolinux-wallpapers-git + - arcolinux-worm-git + - arcolinux-xfce-git + - dmenu + - feh + - lxappearance + - picom + - polkit-gnome + - polybar + - rofi + - sxhkd + - thunar + - thunar-archive-plugin + - thunar-volman + - ttf-hack + - volumeicon + - worm-dev-git + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal +- name: "Desktop: Xfce4" + description: "Installs xfce4 desktop" + critical: false + hidden: false + selected: false + packages: + - xfce4 + - xfce4-goodies + - dmenu + - arcolinux-config-all-desktops-git + - arcolinux-dconf-all-desktops-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-xfce-git +- name: "Desktop: Xmonad" + description: "Installs xmonad desktop" + critical: false + hidden: false + selected: false + packages: + - arcolinux-config-all-desktops-git + - arcolinux-dconf-all-desktops-git + - arcolinux-gtk3-sardi-arc-git + - arcolinux-local-xfce4-git + - archlinux-logout-git + - arcolinux-polybar-git + - arcolinux-rofi-git + - arcolinux-rofi-themes-git + - arcolinux-root-git + - archlinux-tweak-tool-git + - arcolinux-volumeicon-git + - arcolinux-wallpapers-git + - arcolinux-xfce-git + - arcolinux-xmonad-polybar-git + - awesome-terminal-fonts + - dmenu + - feh + - haskell-dbus + - lxappearance + - perl-checkupdates-aur + - perl-www-aur + - picom + - polybar + - rofi + - thunar + - thunar-archive-plugin + - thunar-volman + - volumeicon + - xfce4-notifyd + - xfce4-power-manager + - xfce4-screenshooter + - xfce4-settings + - xfce4-taskmanager + - xfce4-terminal + - xmonad + - xmonad-contrib + - xmonad-log + - xmonad-utils diff --git a/calamares/modules/netinstall-development.conf b/calamares/modules/netinstall-development.conf new file mode 100644 index 0000000..7a12237 --- /dev/null +++ b/calamares/modules/netinstall-development.conf @@ -0,0 +1,13 @@ +groupsUrl: + - https://raw.githubusercontent.com/arcolinux/arco-calamares-config-xs-zen/master/calamares/modules/netinstall-development.yaml + - file:///etc/calamares/modules/netinstall-development.yaml + +required: false + +label: + sidebar: "Development" + sidebar[nl]: "Development" + sidebar[ja]: "開発ソフトウェア" + title: "Development" + title[nl]: "Development" + title[ja]: "開発ソフトウェア" diff --git a/calamares/modules/netinstall-development.yaml b/calamares/modules/netinstall-development.yaml new file mode 100644 index 0000000..9a017cd --- /dev/null +++ b/calamares/modules/netinstall-development.yaml @@ -0,0 +1,34 @@ +- name: "Development" + description: "Development software" + critical: false + hidden: false + selected: false + expanded: true + packages: + - arduino + - bluefish + - brackets-bin + - code + - codeblocks + - emacs + - geany + - geany-plugins + - glade + - intellij-idea-community-edition + - kdevelop + - kde-dev-utils + - leafpad + - meld + - micro + - netbeans + - notepadqq + - openscad + - pulsar-bin + - pycharm-community-edition + - qt5-tools + - qtcreator + - sublime-text-4 + - vim + - vim-runtime + - visual-studio-code-bin + - vscodium-bin diff --git a/calamares/modules/netinstall-drivers.conf b/calamares/modules/netinstall-drivers.conf new file mode 100644 index 0000000..acef5ea --- /dev/null +++ b/calamares/modules/netinstall-drivers.conf @@ -0,0 +1,11 @@ +groupsUrl: + - https://raw.githubusercontent.com/arcolinux/arco-calamares-config-xs-zen/master/calamares/modules/netinstall-drivers.yaml + - file:///etc/calamares/modules/netinstall-drivers.yaml + +required: false + +label: + sidebar: "Drivers" + sidebar[nl]: "Drivers" + title: "Drivers" + title[nl]: "Drivers" diff --git a/calamares/modules/netinstall-drivers.yaml b/calamares/modules/netinstall-drivers.yaml new file mode 100644 index 0000000..b0d4a2a --- /dev/null +++ b/calamares/modules/netinstall-drivers.yaml @@ -0,0 +1,41 @@ +- name: "Xf86-video-nouveau" + description: "Installs xf86-video-nouveau" + critical: false + hidden: false + selected: false + immutable: false + expanded: false + packages: + - xf86-video-nouveau +- name: "Xf86-video-amdgpu" + description: "Installs xf86-video-amdgpu" + critical: false + hidden: false + selected: false + immutable: false + expanded: false + packages: + - xf86-video-amdgpu +- name: "Xf86-video-ati" + description: "Installs xf86-video-ati" + critical: false + hidden: false + selected: false + immutable: false + expanded: false + packages: + - xf86-video-ati +- name: "Xf86-video-vesa" + description: "Installs xf86-video-vesa" + critical: false + hidden: false + selected: false + packages: + - xf86-video-vesa +- name: "Xf86-video-openchrome" + description: "Installs xf86-video-openchrome" + critical: false + hidden: false + selected: false + packages: + - xf86-video-openchrome diff --git a/calamares/modules/netinstall-filemanagers.conf b/calamares/modules/netinstall-filemanagers.conf new file mode 100644 index 0000000..f3cdbdf --- /dev/null +++ b/calamares/modules/netinstall-filemanagers.conf @@ -0,0 +1,13 @@ +groupsUrl: + - https://raw.githubusercontent.com/arcolinux/arco-calamares-config-xs-zen/master/calamares/modules/netinstall-filemanagers.yaml + - file:///etc/calamares/modules/netinstall-filemanagers.yaml + +required: false + +label: + sidebar: "Filemanagers" + sidebar[nl]: "Filemanagers" + sidebar[ja]: "ファイルマネージャー" + title: "Filemanagers" + title[nl]: "Filemanagers" + title[ja]: "ファイルマネージャー" diff --git a/calamares/modules/netinstall-filemanagers.yaml b/calamares/modules/netinstall-filemanagers.yaml new file mode 100644 index 0000000..c68b0bb --- /dev/null +++ b/calamares/modules/netinstall-filemanagers.yaml @@ -0,0 +1,23 @@ +- name: "Filemanagers" + description: "Filemanagers" + critical: false + hidden: false + selected: false + expanded: true + packages: + - caja + - dolphin + - doublecmd-qt5 + - joshuto + - lf + - nnn + - mc + - nautilus + - nemo + - nemo-fileroller + - pcmanfm + - ranger + - thunar + - thunar-archive-plugin + - thunar-volman + - thunar-shares-plugin \ No newline at end of file diff --git a/calamares/modules/netinstall-fonts.conf b/calamares/modules/netinstall-fonts.conf new file mode 100644 index 0000000..bf9ebf6 --- /dev/null +++ b/calamares/modules/netinstall-fonts.conf @@ -0,0 +1,13 @@ +groupsUrl: + - https://raw.githubusercontent.com/arcolinux/arco-calamares-config-xs-zen/master/calamares/modules/netinstall-fonts.yaml + - file:///etc/calamares/modules/netinstall-fonts.yaml + +required: false + +label: + sidebar: "Fonts" + sidebar[nl]: "Fonts" + sidebar[ja]: "フォント" + title: "Fonts" + title[nl]: "Fonts" + title[ja]: "フォント" diff --git a/calamares/modules/netinstall-fonts.yaml b/calamares/modules/netinstall-fonts.yaml new file mode 100644 index 0000000..d9c2234 --- /dev/null +++ b/calamares/modules/netinstall-fonts.yaml @@ -0,0 +1,55 @@ +- name: "Fonts" + description: "Fonts" + critical: false + hidden: false + selected: false + expanded: true + packages: + - adobe-source-code-pro-fonts + - adobe-source-sans-fonts + - adobe-source-serif-fonts + - awesome-terminal-fonts + - libertinus-font + - lohit-fonts + - nerd-fonts-source-code-pro + - noto-fonts + - noto-fonts-emoji + - ttf-anonymous-pro + - ttf-bitstream-vera + - ttf-caladea + - ttf-carlito + - ttf-cascadia-code + - ttf-cormorant + - ttf-croscore + - ttf-dejavu + - ttf-droid + - ttf-eurof + - ttf-fantasque-sans-mono + - ttf-fira-code + - ttf-fira-mono + - ttf-fira-sans + - ttf-font-awesome + - ttf-hack + - ttf-hactor + - ttf-hellvetica + - ttf-ibm-plex + - ttf-inconsolata + - ttf-iosevka-nerd + - ttf-jetbrains-mono + - ttf-jetbrains-mono-nerd + - ttf-joypixels + - ttf-lato + - ttf-liberation + - ttf-linux-libertine + - ttf-linux-libertine-g + - ttf-meslo-nerd-font-powerlevel10k + - ttf-mac-fonts + - ttf-monofur + - ttf-ms-fonts + - ttf-nerd-fonts-symbols + - ttf-nerd-fonts-symbols-mono + - ttf-opensans + - ttf-proggy-clean + - ttf-roboto + - ttf-roboto-mono + - ttf-ubuntu-font-family diff --git a/calamares/modules/netinstall-gaming.conf b/calamares/modules/netinstall-gaming.conf new file mode 100644 index 0000000..f6bef69 --- /dev/null +++ b/calamares/modules/netinstall-gaming.conf @@ -0,0 +1,13 @@ +groupsUrl: + - https://raw.githubusercontent.com/arcolinux/arco-calamares-config-xs-zen/master/calamares/modules/netinstall-gaming.yaml + - file:///etc/calamares/modules/netinstall-gaming.yaml + +required: false + +label: + sidebar: "Gaming" + sidebar[nl]: "Gaming" + sidebar[ja]: "ゲーム" + title: "Gaming" + title[nl]: "Gaming" + title[ja]: "ゲーム" diff --git a/calamares/modules/netinstall-gaming.yaml b/calamares/modules/netinstall-gaming.yaml new file mode 100644 index 0000000..ffc978d --- /dev/null +++ b/calamares/modules/netinstall-gaming.yaml @@ -0,0 +1,64 @@ +- name: "Games" + description: "Gaming software" + critical: false + hidden: false + selected: false + expanded: true + packages: + - aisleriot + - armagetronad + - astromenace + - chromium-bsu + - extremetuxracer + - freeciv + - gnome-chess + - gnuchess + - hedgewars + - kbreakout + - knights + - mari0 + - minecraft-launcher + - multimc-git + - neverball + - sauerbraten + - sauerbraten-data + - supertux + - supertuxkart + - warsow + - wesnoth + - xonotic + - xonotic-data +- name: "Game utilities" + description: "Game utilities" + critical: false + hidden: false + selected: false + expanded: true + packages: + - arcolinux-meta-steam-amd + - arcolinux-meta-steam-intel + - arcolinux-meta-steam-nvidia + - gamehub-bin + - gamemode + - game-devices-udev + - goverlay-bin + - heroic-games-launcher-bin + - itch + - legendary + - lutris + - mangohud + - minigalaxy + - playonlinux + - proton-community-updater + - proton-ge-custom-bin + - protontricks + - protontricks-git + - protonup-qt-bin + - protonup-git + - rare + - replay-sorcery + - supergfxctl + - steam-buddy + - steam-tweaks + - steamtinkerlaunch + - vkbasalt diff --git a/calamares/modules/netinstall-graphics.conf b/calamares/modules/netinstall-graphics.conf new file mode 100644 index 0000000..63b9670 --- /dev/null +++ b/calamares/modules/netinstall-graphics.conf @@ -0,0 +1,13 @@ +groupsUrl: + - https://raw.githubusercontent.com/arcolinux/arco-calamares-config-xs-zen/master/calamares/modules/netinstall-graphics.yaml + - file:///etc/calamares/modules/netinstall-graphics.yaml + +required: false + +label: + sidebar: "Graphics" + sidebar[nl]: "Grahpics" + sidebar[ja]: "グラフィックス" + title: "Graphics" + title[nl]: "Graphics" + title[ja]: "グラフィックス" diff --git a/calamares/modules/netinstall-graphics.yaml b/calamares/modules/netinstall-graphics.yaml new file mode 100644 index 0000000..332f0d9 --- /dev/null +++ b/calamares/modules/netinstall-graphics.yaml @@ -0,0 +1,13 @@ +- name: "Graphics" + description: "Graphics" + critical: false + hidden: false + selected: false + expanded: true + packages: + - blender + - darktable + - digikam + - gimp + - inkscape + - krita diff --git a/calamares/modules/netinstall-internet.conf b/calamares/modules/netinstall-internet.conf new file mode 100644 index 0000000..6325dab --- /dev/null +++ b/calamares/modules/netinstall-internet.conf @@ -0,0 +1,13 @@ +groupsUrl: + - https://raw.githubusercontent.com/arcolinux/arco-calamares-config-xs-zen/master/calamares/modules/netinstall-internet.yaml + - file:///etc/calamares/modules/netinstall-internet.yaml + +required: false + +label: + sidebar: "Internet" + sidebar[nl]: "Internet" + sidebar[ja]: "インターネット" + title: "Internet" + title[nl]: "Internet" + title[ja]: "インターネット" diff --git a/calamares/modules/netinstall-internet.yaml b/calamares/modules/netinstall-internet.yaml new file mode 100644 index 0000000..cc5a04f --- /dev/null +++ b/calamares/modules/netinstall-internet.yaml @@ -0,0 +1,77 @@ +- name: "Browsers" + description: "Browsers" + critical: false + hidden: false + selected: false + expanded: true + packages: + - brave-bin + - chrome-gnome-shell + - chromium + - chromium-widevine + - falkon + - firefox + - firefox-adblock-plus + - firefox-ublock-origin + - google-chrome + - icecat + - librewolf-bin + - netsurf + - opera + - qutebrowser + - torbrowser-launcher + - vivaldi + - vivaldi-ffmpeg-codecs + - vivaldi-widevine +- name: "Downloaders" + description: "Downloaders" + critical: false + hidden: false + selected: false + expanded: true + packages: + - aria2 + - deluge + - filezilla + - fragments + - freedownloadmanager + - gdown + - jdownloader2 + - ktorrent + - persepolis + - qbittorrent + - transmission-gtk + - xdman +- name: "Cloud Software" + description: "Cloud software" + critical: false + hidden: false + selected: false + expanded: true + packages: + - dropbox + - insync + - megasync-bin + - nextcloud-client +- name: "Mail Clients" + description: "Mail clients" + critical: false + hidden: false + selected: false + expanded: true + packages: + - evolution + - geary + - mailspring + - thunderbird +- name: "Vpn Software" + description: "Vpn Software" + critical: false + hidden: false + selected: false + expanded: true + packages: + - mullvad-vpn-bin + - nordtray-bin + - nordpass-bin + - nordvpn-bin diff --git a/calamares/modules/netinstall-kernel.conf b/calamares/modules/netinstall-kernel.conf new file mode 100644 index 0000000..ef4b0ed --- /dev/null +++ b/calamares/modules/netinstall-kernel.conf @@ -0,0 +1,11 @@ +groupsUrl: + - https://raw.githubusercontent.com/arcolinux/arco-calamares-config-xs-zen/master/calamares/modules/netinstall-kernel.yaml + - file:///etc/calamares/modules/netinstall-kernel.yaml + +required: false + +label: + sidebar: "Kernel" + sidebar[nl]: "Kernel" + title: "Kernel" + title[nl]: "Kernel" diff --git a/calamares/modules/netinstall-kernel.yaml b/calamares/modules/netinstall-kernel.yaml new file mode 100644 index 0000000..339bb8e --- /dev/null +++ b/calamares/modules/netinstall-kernel.yaml @@ -0,0 +1,48 @@ +- name: "Linux kernel" + description: "Installs the latest linux kernel" + critical: false + hidden: false + selected: false + immutable: false + expanded: false + packages: + - linux + - linux-headers +- name: "Linux-lts kernel" + description: "Installs the linux-lts kernel" + critical: false + hidden: false + selected: false + packages: + - linux-lts + - linux-lts-headers +- name: "Linux-hardened kernel" + description: "Installs the linux-hardened kernel" + critical: false + hidden: false + selected: false + packages: + - linux-hardened + - linux-hardened-headers +- name: "Linux-zen kernel" + description: "Installs the linux-zen kernel" + critical: false + hidden: false + selected: false + packages: + - linux-zen + - linux-zen-headers +- name: "Intel-ucode" + description: "Installs intel-ucode" + critical: false + hidden: false + selected: false + packages: + - intel-ucode +- name: "Amd-ucode" + description: "Installs amd-ucode" + critical: false + hidden: false + selected: false + packages: + - amd-ucode diff --git a/calamares/modules/netinstall-login.conf b/calamares/modules/netinstall-login.conf new file mode 100644 index 0000000..e36cfcb --- /dev/null +++ b/calamares/modules/netinstall-login.conf @@ -0,0 +1,13 @@ +groupsUrl: + - https://raw.githubusercontent.com/arcolinux/arco-calamares-config-xs-zen/master/calamares/modules/netinstall-login.yaml + - file:///etc/calamares/modules/netinstall-login.yaml + +required: false + +label: + sidebar: "Login" + sidebar[nl]: "Login" + sidebar[jp]: "ログイン" + title: "Login" + title[nl]: "Login" + title[jp]: "ログイン" diff --git a/calamares/modules/netinstall-login.yaml b/calamares/modules/netinstall-login.yaml new file mode 100644 index 0000000..ed12c49 --- /dev/null +++ b/calamares/modules/netinstall-login.yaml @@ -0,0 +1,50 @@ +- name: "Login Manager: Sddm" + description: "Installs sddm" + critical: false + hidden: false + selected: false + packages: + - sddm + - arcolinux-sddm-futuristic-git + - arcolinux-sddm-materia-git + - arcolinux-sddm-simplicity-git + - arcolinux-sddm-slice-git + - arcolinux-sddm-sugar-candy-git + - arcolinux-sddm-urbanlifestyle-git +- name: "Login Manager: Lightdm" + description: "Installs lightdm" + critical: false + hidden: false + selected: false + packages: + - lightdm + - lightdm-gtk-greeter + - lightdm-gtk-greeter-settings + - lightdm-webkit-theme-aether + - lightdm-webkit2-theme-reactive + - arcolinux-wallpapers-git + - lightdm-slick-greeter +- name: "Login Manager: Gdm" + description: "Installs gdm" + critical: false + hidden: false + selected: false + packages: + - gdm + - arcolinux-wallpapers-git +- name: "Login Manager: Lxdm" + description: "Installs lxdm" + critical: false + hidden: false + selected: false + packages: + - lxdm + - arcolinux-wallpapers-git +- name: "Login Manager: Ly" + description: "Installs ly" + critical: false + hidden: false + selected: false + packages: + - ly + - arcolinux-wallpapers-git diff --git a/calamares/modules/netinstall-multimedia.conf b/calamares/modules/netinstall-multimedia.conf new file mode 100644 index 0000000..3fc81f6 --- /dev/null +++ b/calamares/modules/netinstall-multimedia.conf @@ -0,0 +1,13 @@ +groupsUrl: + - https://raw.githubusercontent.com/arcolinux/arco-calamares-config-xs-zen/master/calamares/modules/netinstall-multimedia.yaml + - file:///etc/calamares/modules/netinstall-multimedia.yaml + +required: false + +label: + sidebar: "Multimedia" + sidebar[nl]: "Multimedia" + sidebar[ja]: "マルチメディア" + title: "Multimedia" + title[nl]: "Multimedia" + title[ja]: "マルチメディア" diff --git a/calamares/modules/netinstall-multimedia.yaml b/calamares/modules/netinstall-multimedia.yaml new file mode 100644 index 0000000..675c96c --- /dev/null +++ b/calamares/modules/netinstall-multimedia.yaml @@ -0,0 +1,77 @@ +- name: "Audio Software" + description: "Primarily Audio software" + critical: false + hidden: false + selected: false + expanded: true + packages: + - amberol + - ardour + - audacious + - audacious-plugins + - audacity + - byte + - cava + - clementine + - curseradio-git + - deadbeef + - deezer + - elisa + - gmusicbrowser + - g4music + - juk + - kwave + - lollypop + - lxmusic + - lmms + - ncmpcpp + - olivia + - pragha + - radiotray + - rhythmbox + - sayonara-player + - shortwave + - soundconverter + - spotify + - spotifywm-git + - spotify-adblock-git + - tauon-music-box +- name: "Video Software" + description: "Primarily Video software" + critical: false + hidden: false + selected: false + expanded: true + packages: + - celluloid + - clapper + - freetube-bin + - guvcview + - handbrake + - hypnotix + - juk + - kazam + - kdenlive + - kodi-x11 + - kodi + - kodi-addons + - losslesscut-bin + - obs-studio + - openshot + - makemkv + - mkvtoolnix-gui + - mpc + - mpd + - mpv + - peek + - pitivi + - plex-media-player + - plex-media-server + - qtwebflix-git + - simplescreenrecorder + - simplescreenrecorder-git + - smplayer + - vlc + - youtube-dl + - youtube-dl-gui-git + - yt-dlp diff --git a/calamares/modules/netinstall-nvidia.conf b/calamares/modules/netinstall-nvidia.conf new file mode 100644 index 0000000..b75c0fe --- /dev/null +++ b/calamares/modules/netinstall-nvidia.conf @@ -0,0 +1,11 @@ +groupsUrl: + - https://raw.githubusercontent.com/arcolinux/arco-calamares-config-xs-zen/master/calamares/modules/netinstall-nvidia.yaml + - file:///etc/calamares/modules/netinstall-nvidia.yaml + +required: false + +label: + sidebar: "Drivers Nv" + sidebar[nl]: "Drivers Nv" + title: "Drivers Nvidia" + title[nl]: "Drivers Nvidia" diff --git a/calamares/modules/netinstall-nvidia.yaml b/calamares/modules/netinstall-nvidia.yaml new file mode 100644 index 0000000..4a2fa6f --- /dev/null +++ b/calamares/modules/netinstall-nvidia.yaml @@ -0,0 +1,74 @@ +- name: "Nvidia-dkms for linux kernel - installed by default" + description: "Installs nvidia-dkms for linux kernel" + critical: false + hidden: false + selected: false + immutable: false + expanded: false + packages: + - linux + - linux-headers + - nvidia-dkms + - nvidia-settings + - nvidia-utils +- name: "Nvidia-dkms for linux-lts kernel" + description: "Installs nvidia-dkms for linux-lts kernel" + critical: false + hidden: false + selected: false + immutable: false + expanded: false + packages: + - linux-lts + - linux-lts-headers + - nvidia-dkms + - nvidia-settings + - nvidia-utils +- name: "Nvidia-dkms for linux-hardened kernel" + description: "Installs nvidia-dkms for linux-hardened kernel" + critical: false + hidden: false + selected: false + immutable: false + expanded: false + packages: + - linux-hardened + - linux-hardened-headers + - nvidia-dkms + - nvidia-settings + - nvidia-utils +- name: "Nvidia-dkms for linux-zen kernel" + description: "Installs nvidia-dkms for linux-zen kernel" + critical: false + hidden: false + selected: false + immutable: false + expanded: false + packages: + - linux-zen + - linux-zen-headers + - nvidia-dkms + - nvidia-settings + - nvidia-utils +- name: "Nvidia Related" + description: "Nvidia related applications" + critical: false + hidden: false + selected: false + immutable: false + expanded: false + packages: + - bumblebee + - bumblebee-status + - bumblebee-status-git + - cuda + - envycontrol + - gwe + - nvflash + - nvidia + - nvidia-lts + - nvidia-prime + - nvidia-xrun + - nvtop + - optimus-manager + - optimus-manager-qt diff --git a/calamares/modules/netinstall-office.conf b/calamares/modules/netinstall-office.conf new file mode 100644 index 0000000..4532aa6 --- /dev/null +++ b/calamares/modules/netinstall-office.conf @@ -0,0 +1,13 @@ +groupsUrl: + - https://raw.githubusercontent.com/arcolinux/arco-calamares-config-xs-zen/master/calamares/modules/netinstall-office.yaml + - file:///etc/calamares/modules/netinstall-office.yaml + +required: false + +label: + sidebar: "Office" + sidebar[nl]: "Office" + sidebar[ja]: "オフィスソフトウェア" + title: "Office" + title[nl]: "Office" + title[ja]: "オフィスソフトウェア" diff --git a/calamares/modules/netinstall-office.yaml b/calamares/modules/netinstall-office.yaml new file mode 100644 index 0000000..f3411f5 --- /dev/null +++ b/calamares/modules/netinstall-office.yaml @@ -0,0 +1,123 @@ +- name: "Abiword" + description: "Abiword" + critical: false + hidden: false + selected: false + packages: + - abiword +- name: "Calligra" + description: "Office Suite" + critical: false + hidden: false + selected: false + packages: + - calligra + - calligra-plan +- name: "Epub" + description: "Epub" + critical: false + hidden: false + selected: false + packages: + - calibre + - sigil +- name: "Freeoffice" + description: "Freeoffice" + critical: false + hidden: false + selected: false + packages: + - freeoffice +- name: "Focuswriter" + description: "Focuswriter" + critical: false + hidden: false + selected: false + packages: + - focuswriter +- name: "Ghostwriter" + description: "Ghostwriter" + critical: false + hidden: false + selected: false + packages: + - ghostwriter +- name: "Gnumeric" + description: "Gnumeric" + critical: false + hidden: false + selected: false + packages: + - gnumeric +- name: "Libre Office Fresh" + description: "Installs libre office fresh - feature branch - conflicts with still" + critical: false + hidden: false + selected: false + packages: + - libreoffice-fresh + - hunspell +- name: "Libre Office Still" + description: "Installs libre office still - stable branch - conflicts with fresh" + critical: false + hidden: false + selected: false + packages: + - libreoffice-still + - hunspell +- name: "Ms Office Online" + description: "Microsoft Office Suite Online as a native application" + critical: false + hidden: false + selected: false + packages: + - ms-office-online +- name: "Moneydance" + description: "Moneydance" + critical: false + hidden: false + selected: false + packages: + - moneydance +- name: "Onlyoffice" + description: "Onlyoffice" + critical: false + hidden: false + selected: false + packages: + - onlyoffice-bin +- name: "Openoffice" + description: "Openoffice" + critical: false + hidden: false + selected: false + packages: + - openoffice-bin +- name: "PDF applications" + description: "PDF applications" + critical: false + hidden: false + selected: false + packages: + - atril + - evince + - okular + - pdfarranger + - xpdf + - xreader +- name: "Scribus" + description: "Scribus" + critical: false + hidden: false + selected: false + packages: + - scribus +- name: "WPS Office" + description: "Installs wps office" + critical: false + hidden: false + selected: false + packages: + - wps-office + - wps-office-mime + - ttf-wps-fonts diff --git a/calamares/modules/netinstall-terminals.conf b/calamares/modules/netinstall-terminals.conf new file mode 100644 index 0000000..c968373 --- /dev/null +++ b/calamares/modules/netinstall-terminals.conf @@ -0,0 +1,13 @@ +groupsUrl: + - https://raw.githubusercontent.com/arcolinux/arco-calamares-config-xs-zen/master/calamares/modules/netinstall-terminals.yaml + - file:///etc/calamares/modules/netinstall-terminals.yaml + +required: false + +label: + sidebar: "Terminals" + sidebar[nl]: "Terminals" + sidebar[ja]: "ターミナル" + title: "Terminals" + title[nl]: "Terminals" + title[ja]: "ターミナル" diff --git a/calamares/modules/netinstall-terminals.yaml b/calamares/modules/netinstall-terminals.yaml new file mode 100644 index 0000000..28c8ae2 --- /dev/null +++ b/calamares/modules/netinstall-terminals.yaml @@ -0,0 +1,101 @@ +- name: "Terminals" + description: "Terminals" + critical: false + hidden: false + selected: false + expanded: true + packages: + - alacritty + - alacritty-themes + - base16-alacritty-git + - gnome-terminal + - gnome-terminal-transparency + - guake + - kitty + - konsole + - lxterminal + - nautilus-open-any-terminal + - oh-my-zsh-powerline-theme-git + - prot16-xfce4-terminal + - rxvt-unicode + - sakura + - tabby-bin + - tempus-themes-xfce4-terminal-git + - terminator + - termite + - tilix + - tilda + - tmux + - urxvt-fullscreen + - urxvt-perls + - urxvt-resize-font-git + - xfce4-terminal + - xfce4-terminal-base16-colors-git +- name: "Terminal Tools To Search" + description: "Terminal tools to search" + critical: false + hidden: false + selected: false + expanded: true + packages: + - ripgrep + - ripgrep-all + - the_platinum_searcher-bin + - the_silver_searcher +- name: "Terminal Fun" + description: "Terminal fun" + critical: false + hidden: false + selected: false + expanded: true + packages: + - asciiquarium + - bash-pipes + - boxes + - bpytop + - cava + - c-lolcat + - cool-retro-term + - cowfortune + - cmatrix-git + - cpufetch-git + - curseradio-git + - cxxmatrix-git + - figlet + - gotop-bin + - inetutils + - lolcat + - mc + - nixieclock + - pipes.sh + - pfetch + - python-pywal + - ranger + - sl + - slurm + - sparklines-git + - toilet + - tty-clock + - tty-clock-git + - ufetch-git + - ufetch-arco-git + - unimatrix-git + - wttr +- name: "Zsh" + description: "Zsh" + critical: false + hidden: false + selected: false + expanded: true + packages: + - zsh + - zsh-autosuggestions-git + - zsh-completions + - zsh-fast-syntax-highlighting + - zsh-history-substring-search-git + - zsh-syntax-highlighting + - zsh-syntax-highlighting-git + - zsh-theme-powerlevel10k-git + - arcolinux-zsh-git + - oh-my-zsh-git + - oh-my-zsh-powerline-theme-git diff --git a/calamares/modules/netinstall-theming.conf b/calamares/modules/netinstall-theming.conf new file mode 100644 index 0000000..732c2fc --- /dev/null +++ b/calamares/modules/netinstall-theming.conf @@ -0,0 +1,13 @@ +groupsUrl: + - https://raw.githubusercontent.com/arcolinux/arco-calamares-config-xs-zen/master/calamares/modules/netinstall-theming.yaml + - file:///etc/calamares/modules/netinstall-theming.yaml + +required: false + +label: + sidebar: "Theming" + sidebar[nl]: "Theming" + sidebar[ja]: "テーマ" + title: "Theming" + title[nl]: "Theming" + title[ja]: "テーマ" diff --git a/calamares/modules/netinstall-theming.yaml b/calamares/modules/netinstall-theming.yaml new file mode 100644 index 0000000..b22820d --- /dev/null +++ b/calamares/modules/netinstall-theming.yaml @@ -0,0 +1,150 @@ +- name: "Themes" + description: "Themes" + critical: false + hidden: false + selected: false + expanded: true + packages: + - adapta-gtk-theme + - arc-darkest-theme-git + - arcolinux-arc-kde + - arcolinux-sweet-mars-git + - ayu-theme + - breeze + - dracula-gtk-theme + - fluent-gtk-theme + - fluent-kde-theme-git + - graphite-gtk-theme-git + - kripton-theme-git + - layan-gtk-theme-git + - layan-kde-git + - materia-gtk-theme + - materia-kde + - nordic-kde-git + - numix-gtk-theme-git + - openbox-themes-pambudi-git + - orchis-kde-theme-git + - orchis-theme-git + - plata-theme + - qogir-gtk-theme-git + - sweet-theme-git + - sweet-gtk-theme-dark +- name: "Icons" + description: "Icons" + critical: false + hidden: false + selected: false + expanded: true + packages: + - a-candy-beauty-icon-theme-git + - arc-icon-theme + - arc-x-icons-theme + - breeze-icons + - dracula-icons-git + - faba-icon-theme-git + - faba-mono-icons-git + - flat-remix-git + - fluent-icon-theme-git + - halo-icons-git + - la-capitaine-icon-theme-git + - luna-icon-theme-git + - moka-icon-theme-git + - nordzy-icon-theme-git + - numix-circle-arc-icons-git + - numix-circle-icon-theme-git + - numix-icon-theme-git + - numix-kde-theme-git + - obsidian-icon-theme + - oranchelo-icon-theme-git + - paper-icon-theme + - papirus-folders-git + - papirus-folders-gui-bin + - papirus-folders-nordic + - papirus-icon-theme + - papirus-linux-universe + - papirus-nord + - qogir-icon-theme + - sardi-icons + - sardi-colora-variations-icons-git + - sardi-flat-colora-variations-icons-git + - sardi-flat-mint-y-icons-git + - sardi-flat-mixing-icons-git + - sardi-flexible-colora-variations-icons-git + - sardi-flexible-luv-colora-variations-icons-git + - sardi-flexible-mint-y-icons-git + - sardi-flexible-mixing-icons-git + - sardi-flexible-variations-icons-git + - sardi-ghost-flexible-colora-variations-icons-git + - sardi-ghost-flexible-mint-y-icons-git + - sardi-ghost-flexible-mixing-icons-git + - sardi-ghost-flexible-variations-icons-git + - sardi-mint-y-icons-git + - sardi-mixing-icons-git + - sardi-mono-colora-variations-icons-git + - sardi-mono-mint-y-icons-git + - sardi-mono-mixing-icons-git + - sardi-mono-numix-colora-variations-icons-git + - sardi-mono-papirus-colora-variations-icons-git + - sardi-orb-colora-mint-y-icons-git + - sardi-orb-colora-mixing-icons-git + - sardi-orb-colora-variations-icons-git + - surfn-icons-git + - surfn-arc-breeze-icons-git + - surfn-mint-y-icons-git + - surfn-plasma-dark-icons-git + - surfn-plasma-light-icons-git + - tela-circle-icon-theme-git + - vimix-icon-theme-git + - we10x-icon-theme-git + - whitesur-icon-theme-git + - zafiro-icon-theme +- name: "Cursors" + description: "Cursors" + critical: false + hidden: false + selected: false + expanded: true + packages: + - bibata-cursor-theme-bin + - bibata-cursor-translucent + - bibata-extra-cursor-theme + - bibata-rainbow-cursor-theme + - capitaine-cursors + - catppuccin-cursors-git + - dracula-cursors-git + - layan-cursor-theme-git + - oxy-neon + - phinger-cursors + - sweet-cursor-theme-git + - vimix-cursors + - xcursor-arch-cursor-complete + - xcursor-breeze + - xcursor-comix + - xcursor-flatbed + - xcursor-neutral + - xcursor-premium + - xcursor-simpleandsoft +- name: "Changing the look" + description: "Changing the look" + critical: false + hidden: false + selected: false + expanded: true + packages: + - kvantum-qt5-git + - kvantum-qt6-git + - kvantum-theme-materia + - kvantum-theme-qogir-git + - picom + - picom-jonaburg-git + - picom-ibhagwan-git + - picom-git +- name: "Packages that will install plasma as a dependency" + description: "Plasma related" + critical: false + hidden: false + selected: false + expanded: true + packages: + - qogir-kde-theme-git + - sweet-kde-theme-mars-git diff --git a/calamares/modules/netinstall-usb.conf b/calamares/modules/netinstall-usb.conf new file mode 100644 index 0000000..fa3bc49 --- /dev/null +++ b/calamares/modules/netinstall-usb.conf @@ -0,0 +1,13 @@ +groupsUrl: + - https://raw.githubusercontent.com/arcolinux/arco-calamares-config-xs-zen/master/calamares/modules/netinstall-usb.yaml + - file:///etc/calamares/modules/netinstall-usb.yaml + +required: false + +label: + sidebar: "Usb Utilities" + sidebar[nl]: " Usb Utilities" + sidebar[ja]: "ユーティリティ" + title: "Utilities" + title[nl]: "Utilities" + title[ja]: "ユーティリティ" diff --git a/calamares/modules/netinstall-usb.yaml b/calamares/modules/netinstall-usb.yaml new file mode 100644 index 0000000..1d39bc2 --- /dev/null +++ b/calamares/modules/netinstall-usb.yaml @@ -0,0 +1,36 @@ +- name: "Usb/Disk Utilities" + description: "Utility software" + critical: false + hidden: false + selected: false + expanded: true + packages: + - baobab + - brasero + - etcher-bin + - imagewriter + - mintstick-git + - ventoy-bin + - woeusb + - xfburn +- name: "Printing Utilities" + description: "Printing software" + critical: false + hidden: false + selected: false + expanded: true + packages: + - hplip +- name: "Accessibility Utilities" + description: "Accessibility Utility software" + critical: false + hidden: false + selected: false + expanded: true + packages: + - brltty + - espeak-ng + - florence + - mousetweaks + - onboard + - orca diff --git a/calamares/modules/netinstall-utilities.conf b/calamares/modules/netinstall-utilities.conf new file mode 100644 index 0000000..dbf56fe --- /dev/null +++ b/calamares/modules/netinstall-utilities.conf @@ -0,0 +1,13 @@ +groupsUrl: + - https://raw.githubusercontent.com/arcolinux/arco-calamares-config-xs-zen/master/calamares/modules/netinstall-utilities.yaml + - file:///etc/calamares/modules/netinstall-utilities.yaml + +required: false + +label: + sidebar: "Utilities" + sidebar[nl]: "Utilities" + sidebar[ja]: "ユーティリティ" + title: "Utilities" + title[nl]: "Utilities" + title[ja]: "ユーティリティ" diff --git a/calamares/modules/netinstall-utilities.yaml b/calamares/modules/netinstall-utilities.yaml new file mode 100644 index 0000000..da71928 --- /dev/null +++ b/calamares/modules/netinstall-utilities.yaml @@ -0,0 +1,222 @@ +- name: "Utilities for Timeshift and Btrfs" + description: "Utility software" + critical: false + hidden: false + selected: false + expanded: true + packages: + - grub-btrfs + - timeshift + - timeshift-autosnap +- name: "Utilities for Snapper and Btrfs" + description: "Utility software" + critical: false + hidden: false + selected: false + expanded: true + packages: + - btrfs-assistant + - btrfsmaintenance + - grub-btrfs + - snap-pac + - snapper + - snapper-support + - snapper-tools +- name: "Utilities for Android" + description: "Utility software android" + critical: false + hidden: false + selected: false + expanded: true + packages: + - airdroid-nativefier + - android-tools + - android-file-transfer + - android-sdk-platform-tools + - droidcam + - qtscrcpy + - scrcpy + - waydroid +- name: "Utilities for IOS" + description: "Utility software ios" + critical: false + hidden: false + selected: false + expanded: true + packages: + - ifuse + - shairport-sync +- name: "Utilities for benchmarking" + description: "Utility software benchmarking" + critical: false + hidden: false + selected: false + expanded: true + packages: + - blender-benchmark + - geekbench + - gputest + - phoronix-test-suite +- name: "Application installers or launchers" + description: "Application installers or launchers" + critical: false + hidden: false + selected: false + expanded: true + packages: + - albert + - appimagelauncher + - aura-bin + - bauh + - flatpak + - gnome-software + - octopi + - octopi-notifier-qt5 + - pace + - pace-git + - pacui + - pacui-git + - pacseek-bin + - paru + - paru-bin + - paru-git + - pikaur-git + - rate-mirrors + - rate-mirrors-bin + - skippy-xd-git + - snapd + - synapse + - topgrade + - topgrade-bin + - topgrade-git + - trizen + - ulauncher + - xlunch-git + - yay + - yay-bin + - yay-git +- name: "Power Management" + description: "Power Management" + critical: false + hidden: false + selected: false + expanded: true + packages: + - upower + - system76-power +- name: "Backlight" + description: "Backlight" + critical: false + hidden: false + selected: false + expanded: true + packages: + - acpilight + - brightnessctl + - brillo + - gummy + - light +- name: "Utilities for hardware discovery" + description: "Utility software for hardware discovery" + critical: false + hidden: false + selected: false + expanded: true + packages: + - alsi + - archey3 + - bottom + - btop + - cpufetch-git + - cpuid + - cpu-x + - dmidecode + - duf + - edid-decode-git + - fastfetch + - fastfetch-git + - glances + - gnome-disk-utility + - gotop-bin + - gsmartcontrol + - gtop + - hddtemp + - htop + - hw-probe + - inxi + - lm_sensors + - lshw + - neofetch + - nvtop + - nvtop-git + - ookla-speedtest-bin + - pfetch + - powertop + - screenfetch + - slurm + - speedtest-cli-git + - s-tui + - sysprof +- name: "Utilities Kernels" + description: "Utility software kernels" + critical: false + hidden: false + selected: false + expanded: true + packages: + - mkinitcpio-firmware +- name: "Utilities" + description: "Utility software" + critical: false + hidden: false + selected: false + expanded: true + packages: + - auto-cpufreq + - betterlockscreen + - betterlockscreen-git + - bleachbit + - btrbk + - caffeine + - caffeine-ng + - catfish + - ckb-next-git + - debtap + - deja-dup + - downgrade + - fancontrol-gui-git + - find-the-command-git + - fingerprint-gui + - flavours + - hardcode-fixer-git + - galculator + - gammy + - google-earth-pro + - grsync + - grub-customizer + - gufw + - hardinfo-gtk3 + - kbackup + - konsave + - linux-wifi-hotspot + - pacback + - parcellite + - piper + - power-profiles-daemon + - powerpill + - putty + - redshift + - simple-scan + - slimbookbattery + - solaar + - stacer + - stacer-bin + - systemd-manager-git + - tlp + - tuxboot + - tuxboot-git + - vnstat + - wacom-settings-git + - wireshark-qt + - workrave + - yin-yang-git diff --git a/calamares/modules/packages-no-system-update.conf b/calamares/modules/packages-no-system-update.conf new file mode 100644 index 0000000..9c1346d --- /dev/null +++ b/calamares/modules/packages-no-system-update.conf @@ -0,0 +1,28 @@ +backend: pacman + +skip_if_no_internet: false +update_db: false +update_system: false + +pacman: + num_retries: 1 + disable_download_timeout: true + needed_only: true + +operations: + - try_remove: + - arco-calamares + - arco-calamares-config-xs-zen-git + - plasma-framework5 + - kpmcore + - mkinitcpio-archiso + - boost-libs + - ckbcomp + - kservice5 + - ki18n5 + - kconfig5 + - kwidgetsaddons5 + - kcoreaddons5 + - intel-ucode + - amd-ucode + - qt5-xmlpatterns diff --git a/calamares/modules/packages-system-update.conf b/calamares/modules/packages-system-update.conf new file mode 100644 index 0000000..8f4d527 --- /dev/null +++ b/calamares/modules/packages-system-update.conf @@ -0,0 +1,28 @@ +backend: pacman + +skip_if_no_internet: false +update_db: true +update_system: true + +pacman: + num_retries: 1 + disable_download_timeout: true + needed_only: true + +operations: + - try_remove: + - arco-calamares + - arco-calamares-config-xs-zen-git + - plasma-framework5 + - kpmcore + - mkinitcpio-archiso + - boost-libs + - ckbcomp + - kservice5 + - ki18n5 + - kconfig5 + - kwidgetsaddons5 + - kcoreaddons5 + - intel-ucode + - amd-ucode + - qt5-xmlpatterns diff --git a/calamares/modules/packages.conf b/calamares/modules/packages.conf new file mode 100644 index 0000000..d816e1e --- /dev/null +++ b/calamares/modules/packages.conf @@ -0,0 +1,28 @@ +backend: pacman + +skip_if_no_internet: false +update_db: true +update_system: false + +pacman: + num_retries: 1 + disable_download_timeout: true + needed_only: true + +operations: + - try_remove: + - arco-calamares + - arco-calamares-config-xs-zen-git + - plasma-framework5 + - kpmcore + - mkinitcpio-archiso + - boost-libs + - ckbcomp + - kservice5 + - ki18n5 + - kconfig5 + - kwidgetsaddons5 + - kcoreaddons5 + - intel-ucode + - amd-ucode + - qt5-xmlpatterns diff --git a/calamares/modules/partition.conf b/calamares/modules/partition.conf new file mode 100644 index 0000000..861a99b --- /dev/null +++ b/calamares/modules/partition.conf @@ -0,0 +1,25 @@ +efi: + mountPoint: "/boot/efi" + recommendedSize: 1000MiB + minimumSize: 32MiB + label: "EFI" + +userSwapChoices: + - none # Create no swap, use no swap + - small # Up to 4GB + - suspend # At least main memory size + - file # To swap file instead of partition + +luksGeneration: luks1 + +drawNestedPartitions: false + +alwaysShowPartitionLabels: true + +initialPartitioningChoice: none + +initialSwapChoice: none + +defaultFileSystemType: "ext4" + +availableFileSystemTypes: ["ext4","btrfs","jfs","reiser","f2fs","xfs"] diff --git a/calamares/modules/preservefiles.conf b/calamares/modules/preservefiles.conf new file mode 100644 index 0000000..5b74588 --- /dev/null +++ b/calamares/modules/preservefiles.conf @@ -0,0 +1,7 @@ +files: + - from: log + dest: /var/log/Calamares.log + perm: root:root:644 + - from: config + dest: /var/log/Calamares-install.json + perm: root:root:644 diff --git a/calamares/modules/removeuser.conf b/calamares/modules/removeuser.conf new file mode 100644 index 0000000..48defe5 --- /dev/null +++ b/calamares/modules/removeuser.conf @@ -0,0 +1 @@ +username: liveuser diff --git a/calamares/modules/shellprocess-before.conf b/calamares/modules/shellprocess-before.conf new file mode 100644 index 0000000..2dfacf1 --- /dev/null +++ b/calamares/modules/shellprocess-before.conf @@ -0,0 +1,8 @@ +i18n: + name: "Preparing your system for ArcoLinux" + +dontChroot: false +timeout: 999 +script: + - command: "/usr/local/bin/arcolinux-before" + - command: "/usr/local/bin/arcolinux-graphical-target" diff --git a/calamares/modules/shellprocess-final.conf b/calamares/modules/shellprocess-final.conf new file mode 100644 index 0000000..8795c43 --- /dev/null +++ b/calamares/modules/shellprocess-final.conf @@ -0,0 +1,11 @@ +i18n: + name: "Preparing your system for ArcoLinux" + +dontChroot: false +timeout: 999 +script: + - command: "/usr/local/bin/arcolinux-all-cores" + - command: "/usr/local/bin/arcolinux-displaymanager-check" + - command: "/usr/local/bin/arcolinux-final" + - command: "/usr/bin/pacman -R --noconfirm arcolinux-system-installation-git" + - command: "/usr/local/bin/arcolinux-snapper" diff --git a/calamares/modules/ucode.conf b/calamares/modules/ucode.conf new file mode 100644 index 0000000..a74449a --- /dev/null +++ b/calamares/modules/ucode.conf @@ -0,0 +1,4 @@ +--- +keyrings: + - archlinux + - arcolinux diff --git a/calamares/modules/umount.conf b/calamares/modules/umount.conf new file mode 100644 index 0000000..16bde6f --- /dev/null +++ b/calamares/modules/umount.conf @@ -0,0 +1 @@ +emergency: true diff --git a/calamares/modules/unpackfs1.conf b/calamares/modules/unpackfs1.conf new file mode 100644 index 0000000..4eb2d40 --- /dev/null +++ b/calamares/modules/unpackfs1.conf @@ -0,0 +1,4 @@ +unpack: + - source: "/run/archiso/bootmnt/arch/x86_64/airootfs.sfs" + sourcefs: "squashfs" + destination: "" diff --git a/calamares/modules/unpackfs2.conf b/calamares/modules/unpackfs2.conf new file mode 100644 index 0000000..f068e9b --- /dev/null +++ b/calamares/modules/unpackfs2.conf @@ -0,0 +1,7 @@ +unpack: + - source: "/run/archiso/bootmnt/arch/boot/x86_64/vmlinuz-linux" + sourcefs: "file" + destination: "/boot/vmlinuz-linux" + - source: "/run/archiso/bootmnt/arch/boot/x86_64/vmlinuz-linux-zen" + sourcefs: "file" + destination: "/boot/vmlinuz-linux-zen" diff --git a/calamares/modules/users.conf b/calamares/modules/users.conf new file mode 100644 index 0000000..a7ef70a --- /dev/null +++ b/calamares/modules/users.conf @@ -0,0 +1,37 @@ +defaultGroups: + - name: users + must_exist: true + system: true + - lp + - power + - video + - network + - storage + - name: wheel + must_exist: false + system: true + - audio + - sys + - optical + - scanner + - rfkill + +autologinGroup: autologin + +doAutologin: false + +sudoersGroup: wheel + +sudoersConfigureWithGroup: true + +setRootPassword: true + +doReusePassword: false + +userShell: /bin/bash + +avatarFilePath: ~/.face + +hostname: + location: EtcFile + writeHostsFile: true diff --git a/calamares/modules/webview.conf b/calamares/modules/webview.conf new file mode 100644 index 0000000..966f38d --- /dev/null +++ b/calamares/modules/webview.conf @@ -0,0 +1,2 @@ +prettyName: "Release Notes" +url: "https://arcolinux.info/getting-to-know-arcolinux-d-b/" diff --git a/calamares/modules/welcome.conf b/calamares/modules/welcome.conf new file mode 100644 index 0000000..343cea7 --- /dev/null +++ b/calamares/modules/welcome.conf @@ -0,0 +1,31 @@ +showSupportUrl: false +showKnownIssuesUrl: false +showReleaseNotesUrl: false + +requirements: + requiredStorage: 15 + + requiredRam: 1.0 + + internetCheckUrl: + - http://google.com + - http://erikdubois.be + - http://www.kde.org + - http://www.freebsd.org + + check: + - storage + - ram + - power + - internet + - root + + required: + - ram + - storage + - root + +geoip: + style: "json" + url: "https://geoip.kde.org/v1/calamares" + selector: "" diff --git a/calamares/settings-advanced-no-nivida.conf b/calamares/settings-advanced-no-nivida.conf new file mode 100644 index 0000000..d2ab706 --- /dev/null +++ b/calamares/settings-advanced-no-nivida.conf @@ -0,0 +1,176 @@ +modules-search: [ local ] + +instances: +- id: kernel + module: netinstall + config: netinstall-kernel.conf +- id: drivers + module: netinstall + config: netinstall-drivers.conf +- id: nvidia + module: netinstall + config: netinstall-nvidia.conf +- id: services + module: netinstall + config: netinstall-services.conf +- id: login + module: netinstall + config: netinstall-login.conf +- id: desktop + module: netinstall + config: netinstall-desktop.conf +- id: desktop-wayland + module: netinstall + config: netinstall-desktop-wayland.conf +- id: arcolinux + module: netinstall + config: netinstall-arcolinux.conf +- id: communication + module: netinstall + config: netinstall-communication.conf +- id: development + module: netinstall + config: netinstall-development.conf +- id: office + module: netinstall + config: netinstall-office.conf +- id: fonts + module: netinstall + config: netinstall-fonts.conf +- id: multimedia + module: netinstall + config: netinstall-multimedia.conf +- id: internet + module: netinstall + config: netinstall-internet.conf +- id: theming + module: netinstall + config: netinstall-theming.conf +- id: graphics + module: netinstall + config: netinstall-graphics.conf +- id: gaming + module: netinstall + config: netinstall-gaming.conf +- id: terminals + module: netinstall + config: netinstall-terminals.conf +- id: filemanagers + module: netinstall + config: netinstall-filemanagers.conf +- id: utilitiesusb + module: netinstall + config: netinstall-usb.conf +- id: utilities + module: netinstall + config: netinstall-utilities.conf +- id: applications + module: netinstall + config: netinstall-applications.conf +- id: arcolinuxdev + module: netinstall + config: netinstall-arcolinuxdev.conf +- id: rootfs + module: unpackfs + config: unpackfs1.conf + weight: 50 +- id: vmlinuz + module: unpackfs + config: unpackfs2.conf + weight: 1 +- id: choice + module: packages + config: packages.conf + weight: 20 +- id: before + module: shellprocess + config: shellprocess-before.conf +- id: final + module: shellprocess + config: shellprocess-final.conf +- id: linux + module: initcpio + config: initcpio-linux.conf +- id: linux-zen + module: initcpio + config: initcpio-linux-zen.conf + +sequence: +- show: + - welcome + - netinstall@kernel + - netinstall@drivers +# - netinstall@nvidia +# - netinstall@services + - netinstall@login + - netinstall@desktop +# - netinstall@desktop-wayland + - netinstall@arcolinux + - netinstall@communication + - netinstall@development + - netinstall@office + - netinstall@fonts + - netinstall@multimedia + - netinstall@internet + - netinstall@theming + - netinstall@graphics + - netinstall@gaming + - netinstall@terminals + - netinstall@filemanagers + - netinstall@utilitiesusb + - netinstall@utilities + - netinstall@applications + - netinstall@arcolinuxdev + - locale + - keyboard + - partition + - users +# - tracking + - summary +- exec: + - partition + - mount + - unpackfs@rootfs + - unpackfs@vmlinuz + - machineid + - fstab + - locale + - keyboard + - localecfg + - luksbootkeyfile + - luksopenswaphookcfg + - initcpiocfg + - initcpio@linux + - initcpio@linux-zen + - networkcfg + - hwclock + - services-systemd + - shellprocess@before + - packages@choice + - removeuser + - users + - displaymanager + - ucode + - grubcfg + - bootloader + - shellprocess@final + - preservefiles + - umount +- show: + - finished + +branding: arcolinuxnew + +prompt-install: true + +dont-chroot: false + +oem-setup: false + +disable-cancel: false + +disable-cancel-during-exec: false + +hide-back-and-next-during-exec: false + +quit-at-end: false diff --git a/calamares/settings-advanced.conf b/calamares/settings-advanced.conf new file mode 100644 index 0000000..c09a810 --- /dev/null +++ b/calamares/settings-advanced.conf @@ -0,0 +1,172 @@ +modules-search: [ local ] + +instances: +- id: kernel + module: netinstall + config: netinstall-kernel.conf +- id: drivers + module: netinstall + config: netinstall-drivers.conf +- id: nvidia + module: netinstall + config: netinstall-nvidia.conf +- id: services + module: netinstall + config: netinstall-services.conf +- id: login + module: netinstall + config: netinstall-login.conf +- id: desktop + module: netinstall + config: netinstall-desktop.conf +- id: arcolinux + module: netinstall + config: netinstall-arcolinux.conf +- id: communication + module: netinstall + config: netinstall-communication.conf +- id: development + module: netinstall + config: netinstall-development.conf +- id: office + module: netinstall + config: netinstall-office.conf +- id: fonts + module: netinstall + config: netinstall-fonts.conf +- id: multimedia + module: netinstall + config: netinstall-multimedia.conf +- id: internet + module: netinstall + config: netinstall-internet.conf +- id: theming + module: netinstall + config: netinstall-theming.conf +- id: graphics + module: netinstall + config: netinstall-graphics.conf +- id: gaming + module: netinstall + config: netinstall-gaming.conf +- id: terminals + module: netinstall + config: netinstall-terminals.conf +- id: filemanagers + module: netinstall + config: netinstall-filemanagers.conf +- id: utilitiesusb + module: netinstall + config: netinstall-usb.conf +- id: utilities + module: netinstall + config: netinstall-utilities.conf +- id: applications + module: netinstall + config: netinstall-applications.conf +- id: arcolinuxdev + module: netinstall + config: netinstall-arcolinuxdev.conf +- id: rootfs + module: unpackfs + config: unpackfs1.conf + weight: 50 +- id: vmlinuz + module: unpackfs + config: unpackfs2.conf + weight: 1 +- id: choice + module: packages + config: packages.conf + weight: 20 +- id: before + module: shellprocess + config: shellprocess-before.conf +- id: final + module: shellprocess + config: shellprocess-final.conf +- id: linux + module: initcpio + config: initcpio-linux.conf +- id: linux-zen + module: initcpio + config: initcpio-linux-zen.conf + +sequence: +- show: + - welcome + - netinstall@kernel + - netinstall@drivers + - netinstall@nvidia +# - netinstall@services + - netinstall@login + - netinstall@desktop + - netinstall@arcolinux + - netinstall@communication + - netinstall@development + - netinstall@office + - netinstall@fonts + - netinstall@multimedia + - netinstall@internet + - netinstall@theming + - netinstall@graphics + - netinstall@gaming + - netinstall@terminals + - netinstall@filemanagers + - netinstall@utilitiesusb + - netinstall@utilities + - netinstall@applications + - netinstall@arcolinuxdev + - locale + - keyboard + - partition + - users +# - tracking + - summary +- exec: + - partition + - mount + - unpackfs@rootfs + - unpackfs@vmlinuz + - machineid + - fstab + - locale + - keyboard + - localecfg + - luksbootkeyfile + - luksopenswaphookcfg + - initcpiocfg + - initcpio@linux + - initcpio@linux-zen + - networkcfg + - hwclock + - services-systemd + - shellprocess@before + - packages@choice + - removeuser + - users + - displaymanager + - ucode + - grubcfg + - bootloader + - shellprocess@final + - preservefiles + - umount +- show: + - finished + +branding: arcolinuxnew + +prompt-install: true + +dont-chroot: false + +oem-setup: false + +disable-cancel: false + +disable-cancel-during-exec: false + +hide-back-and-next-during-exec: false + +quit-at-end: false diff --git a/calamares/settings-beginner.conf b/calamares/settings-beginner.conf new file mode 100644 index 0000000..90a0ddc --- /dev/null +++ b/calamares/settings-beginner.conf @@ -0,0 +1,150 @@ +modules-search: [ local ] + +instances: +- id: kernel + module: netinstall + config: netinstall-kernel.conf +- id: drivers + module: netinstall + config: netinstall-drivers.conf +- id: nvidia + module: netinstall + config: netinstall-nvidia.conf +- id: services + module: netinstall + config: netinstall-services.conf +- id: login + module: netinstall + config: netinstall-login.conf +- id: desktop + module: netinstall + config: netinstall-desktop.conf +- id: arcolinux + module: netinstall + config: netinstall-arcolinux.conf +- id: communication + module: netinstall + config: netinstall-communication.conf +- id: development + module: netinstall + config: netinstall-development.conf +- id: office + module: netinstall + config: netinstall-office.conf +- id: fonts + module: netinstall + config: netinstall-fonts.conf +- id: multimedia + module: netinstall + config: netinstall-multimedia.conf +- id: internet + module: netinstall + config: netinstall-internet.conf +- id: theming + module: netinstall + config: netinstall-theming.conf +- id: graphics + module: netinstall + config: netinstall-graphics.conf +- id: gaming + module: netinstall + config: netinstall-gaming.conf +- id: terminals + module: netinstall + config: netinstall-terminals.conf +- id: filemanagers + module: netinstall + config: netinstall-filemanagers.conf +- id: utilitiesusb + module: netinstall + config: netinstall-usb.conf +- id: utilities + module: netinstall + config: netinstall-utilities.conf +- id: applications + module: netinstall + config: netinstall-applications.conf +- id: arcolinuxdev + module: netinstall + config: netinstall-arcolinuxdev.conf +- id: rootfs + module: unpackfs + config: unpackfs1.conf + weight: 50 +- id: vmlinuz + module: unpackfs + config: unpackfs2.conf + weight: 1 +- id: choice + module: packages + config: packages.conf + weight: 20 +- id: before + module: shellprocess + config: shellprocess-before.conf +- id: final + module: shellprocess + config: shellprocess-final.conf +- id: linux + module: initcpio + config: initcpio-linux.conf +- id: linux-zen + module: initcpio + config: initcpio-linux-zen.conf + +sequence: +- show: + - welcome + - locale + - keyboard + - partition + - users +# - tracking + - summary +- exec: + - partition + - mount + - unpackfs@rootfs + - unpackfs@vmlinuz + - machineid + - fstab + - locale + - keyboard + - localecfg + - luksbootkeyfile + - luksopenswaphookcfg + - initcpiocfg + - initcpio@linux + - initcpio@linux-zen + - networkcfg + - hwclock + - services-systemd + - shellprocess@before + - packages@choice + - removeuser + - users + - displaymanager + - ucode + - grubcfg + - bootloader + - shellprocess@final + - preservefiles + - umount +- show: + - finished + +branding: arcolinuxnew + +prompt-install: true + +dont-chroot: false + +oem-setup: false + +disable-cancel: false + +disable-cancel-during-exec: false + +hide-back-and-next-during-exec: false + +quit-at-end: false diff --git a/calamares/settings.conf b/calamares/settings.conf new file mode 100644 index 0000000..90a0ddc --- /dev/null +++ b/calamares/settings.conf @@ -0,0 +1,150 @@ +modules-search: [ local ] + +instances: +- id: kernel + module: netinstall + config: netinstall-kernel.conf +- id: drivers + module: netinstall + config: netinstall-drivers.conf +- id: nvidia + module: netinstall + config: netinstall-nvidia.conf +- id: services + module: netinstall + config: netinstall-services.conf +- id: login + module: netinstall + config: netinstall-login.conf +- id: desktop + module: netinstall + config: netinstall-desktop.conf +- id: arcolinux + module: netinstall + config: netinstall-arcolinux.conf +- id: communication + module: netinstall + config: netinstall-communication.conf +- id: development + module: netinstall + config: netinstall-development.conf +- id: office + module: netinstall + config: netinstall-office.conf +- id: fonts + module: netinstall + config: netinstall-fonts.conf +- id: multimedia + module: netinstall + config: netinstall-multimedia.conf +- id: internet + module: netinstall + config: netinstall-internet.conf +- id: theming + module: netinstall + config: netinstall-theming.conf +- id: graphics + module: netinstall + config: netinstall-graphics.conf +- id: gaming + module: netinstall + config: netinstall-gaming.conf +- id: terminals + module: netinstall + config: netinstall-terminals.conf +- id: filemanagers + module: netinstall + config: netinstall-filemanagers.conf +- id: utilitiesusb + module: netinstall + config: netinstall-usb.conf +- id: utilities + module: netinstall + config: netinstall-utilities.conf +- id: applications + module: netinstall + config: netinstall-applications.conf +- id: arcolinuxdev + module: netinstall + config: netinstall-arcolinuxdev.conf +- id: rootfs + module: unpackfs + config: unpackfs1.conf + weight: 50 +- id: vmlinuz + module: unpackfs + config: unpackfs2.conf + weight: 1 +- id: choice + module: packages + config: packages.conf + weight: 20 +- id: before + module: shellprocess + config: shellprocess-before.conf +- id: final + module: shellprocess + config: shellprocess-final.conf +- id: linux + module: initcpio + config: initcpio-linux.conf +- id: linux-zen + module: initcpio + config: initcpio-linux-zen.conf + +sequence: +- show: + - welcome + - locale + - keyboard + - partition + - users +# - tracking + - summary +- exec: + - partition + - mount + - unpackfs@rootfs + - unpackfs@vmlinuz + - machineid + - fstab + - locale + - keyboard + - localecfg + - luksbootkeyfile + - luksopenswaphookcfg + - initcpiocfg + - initcpio@linux + - initcpio@linux-zen + - networkcfg + - hwclock + - services-systemd + - shellprocess@before + - packages@choice + - removeuser + - users + - displaymanager + - ucode + - grubcfg + - bootloader + - shellprocess@final + - preservefiles + - umount +- show: + - finished + +branding: arcolinuxnew + +prompt-install: true + +dont-chroot: false + +oem-setup: false + +disable-cancel: false + +disable-cancel-during-exec: false + +hide-back-and-next-during-exec: false + +quit-at-end: false