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.
|
2015-04-02 12:27:40 +02:00
|
|
|
showSupportUrl: true
|
|
|
|
showKnownIssuesUrl: true
|
|
|
|
showReleaseNotesUrl: true
|
2015-05-14 18:01:34 +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
|
|
|
#
|
|
|
|
# To disable, either comment-out the entire section, or set
|
|
|
|
# the *style* key to an unsupported format (e.g. `none`, as is
|
|
|
|
# done here).
|
2019-05-09 21:15:03 +02:00
|
|
|
|
|
|
|
geoip:
|
2019-05-16 22:49:23 +02:00
|
|
|
style: "none"
|
2019-05-09 21:15:03 +02:00
|
|
|
url: "https://geoip.kde.org/v1/ubiquity" # extended XML format
|
|
|
|
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
|