2020-08-21 19:54:36 +02:00
|
|
|
# SPDX-FileCopyrightText: no
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
#
|
2017-11-29 15:46:15 +01:00
|
|
|
# Configuration for the welcome module. The welcome page
|
|
|
|
# displays some information from the branding file.
|
|
|
|
# Which parts it displays can be configured through
|
|
|
|
# the show* variables.
|
|
|
|
#
|
|
|
|
# In addition to displaying the welcome page, this module
|
|
|
|
# can check requirements for installation.
|
2015-04-02 12:27:40 +02:00
|
|
|
---
|
2017-11-29 15:46:15 +01:00
|
|
|
# Display settings for various buttons on the welcome page.
|
2019-08-13 23:07:21 +02:00
|
|
|
# The URLs themselves come from branding.desc is the setting
|
|
|
|
# here is "true". If the setting is false, the button is hidden.
|
|
|
|
# The setting can also be a full URL which will then be used
|
|
|
|
# instead of the one from the branding file, or empty or not-set
|
|
|
|
# which will hide the button.
|
2015-04-02 12:27:40 +02:00
|
|
|
showSupportUrl: true
|
|
|
|
showKnownIssuesUrl: true
|
2020-05-06 14:37:59 +02:00
|
|
|
showReleaseNotesUrl: false
|
|
|
|
showDonateUrl: https://kde.org/community/donations/
|
2019-08-13 22:29:01 +02:00
|
|
|
|
2017-11-29 15:46:15 +01:00
|
|
|
# Requirements checking. These are general, generic, things
|
|
|
|
# that are checked. They may not match with the actual requirements
|
|
|
|
# imposed by other modules in the system.
|
2015-05-14 18:01:34 +02:00
|
|
|
requirements:
|
2019-05-06 16:31:23 +02:00
|
|
|
# Amount of available disk, in GiB. Floating-point is allowed here.
|
2017-11-29 15:46:15 +01:00
|
|
|
# Note that this does not account for *usable* disk, so it is possible
|
|
|
|
# to pass this requirement, yet have no space to install to.
|
2015-05-14 18:01:34 +02:00
|
|
|
requiredStorage: 5.5
|
2017-11-29 15:46:15 +01:00
|
|
|
|
2019-05-06 16:31:23 +02:00
|
|
|
# Amount of available RAM, in GiB. Floating-point is allowed here.
|
2015-05-14 18:01:34 +02:00
|
|
|
requiredRam: 1.0
|
2017-11-29 15:46:15 +01:00
|
|
|
|
|
|
|
# To check for internet connectivity, Calamares does a HTTP GET
|
|
|
|
# on this URL; on success (e.g. HTTP code 200) internet is OK.
|
2017-02-03 15:17:11 +01:00
|
|
|
internetCheckUrl: http://google.com
|
2017-06-21 12:51:18 +02:00
|
|
|
|
|
|
|
# List conditions to check. Each listed condition will be
|
|
|
|
# probed in some way, and yields true or false according to
|
|
|
|
# the host system satisfying the condition.
|
|
|
|
#
|
2017-11-29 15:46:15 +01:00
|
|
|
# This sample file lists all the conditions that are known.
|
2015-05-14 18:01:34 +02:00
|
|
|
check:
|
|
|
|
- storage
|
|
|
|
- ram
|
|
|
|
- power
|
|
|
|
- internet
|
2015-06-09 02:13:22 +02:00
|
|
|
- root
|
2017-06-21 12:51:18 +02:00
|
|
|
- screen
|
2017-11-29 15:46:15 +01:00
|
|
|
# List conditions that **must** be satisfied (from the list
|
2017-06-21 12:51:18 +02:00
|
|
|
# of conditions, above) for installation to proceed.
|
|
|
|
# If any of these conditions are not met, the user cannot
|
|
|
|
# continue past the welcome page.
|
2015-05-14 18:01:34 +02:00
|
|
|
required:
|
2018-04-03 14:19:45 +02:00
|
|
|
# - storage
|
2015-05-14 18:01:34 +02:00
|
|
|
- ram
|
2018-04-03 14:19:45 +02:00
|
|
|
# - root
|
2019-05-09 21:15:03 +02:00
|
|
|
|
|
|
|
# GeoIP checking
|
|
|
|
#
|
|
|
|
# This can be used to pre-select a language based on the country
|
|
|
|
# the user is currently in. It *assumes* that there's internet
|
|
|
|
# connectivity, though. Configuration is like in the locale module,
|
|
|
|
# but remember to use a URL that returns full data **and** to
|
|
|
|
# use a selector that will pick the country, not the timezone.
|
2019-05-16 22:49:23 +02:00
|
|
|
#
|
2019-08-28 13:38:49 +02:00
|
|
|
# To disable GeoIP checking, either comment-out the entire geoip section,
|
|
|
|
# or set the *style* key to an unsupported format (e.g. `none`).
|
2020-06-03 15:11:19 +02:00
|
|
|
# Also, note the analogous feature in `src/modules/locale/locale.conf`,
|
|
|
|
# which is where you will find complete documentation.
|
2019-08-28 13:38:49 +02:00
|
|
|
#
|
2020-06-08 13:06:03 +02:00
|
|
|
# For testing, the *style* may be set to `fixed`, any URL that
|
|
|
|
# returns data (e.g. `http://example.com`) and then *selector*
|
|
|
|
# sets the data that is actually returned (e.g. "DE" to simulate
|
|
|
|
# the machine being in Germany).
|
|
|
|
#
|
|
|
|
# NOTE: the *selector* must pick the country code from the GeoIP
|
|
|
|
# data. Timezone, city, or other data will not be recognized.
|
|
|
|
#
|
2019-05-09 21:15:03 +02:00
|
|
|
geoip:
|
2019-08-28 13:38:49 +02:00
|
|
|
style: "none"
|
|
|
|
url: "https://geoip.kde.org/v1/ubiquity" # extended XML format
|
2019-05-09 21:15:03 +02:00
|
|
|
selector: "CountryCode" # blank uses default, which is wrong
|
2019-05-31 16:59:38 +02:00
|
|
|
|
|
|
|
# User interface
|
|
|
|
#
|
|
|
|
# The "select language" icon is an international standard, but it
|
|
|
|
# might not theme very well with your desktop environment.
|
|
|
|
# Fill in an icon name (following FreeDesktop standards) to
|
|
|
|
# use that named icon instead of the usual one.
|
|
|
|
#
|
|
|
|
# Leave blank or unset to use the international standard.
|
|
|
|
#
|
|
|
|
# Known icons in this space are "set-language" and "config-language".
|
|
|
|
#
|
|
|
|
# languageIcon: set-language
|