Warning, /plasma-bigscreen/calamares-bigscreen-branding/bigscreen/branding.desc is written in an unsupported language. File is not indexed.

0001 # SPDX-FileCopyrightText: no
0002 # SPDX-License-Identifier: CC0-1.0
0003 #
0004 # Product branding information. This influences some global
0005 # user-visible aspects of Calamares, such as the product
0006 # name, window behavior, and the slideshow during installation.
0007 #
0008 # Additional styling can be done using the stylesheet.qss
0009 # file, also in the branding directory.
0010 ---
0011 componentName:  bigscreen
0012 
0013 
0014 ### WELCOME / OVERALL WORDING
0015 #
0016 # These settings affect some overall phrasing and looks,
0017 # which are most visible in the welcome page.
0018 
0019 # This selects between different welcome texts. When false, uses
0020 # the traditional "Welcome to the %1 installer.", and when true,
0021 # uses "Welcome to the Calamares installer for %1." This allows
0022 # to distinguish this installer from other installers for the
0023 # same distribution.
0024 welcomeStyleCalamares:   false
0025 
0026 # Should the welcome image (productWelcome, below) be scaled
0027 # up beyond its natural size? If false, the image does not grow
0028 # with the window but remains the same size throughout (this
0029 # may have surprising effects on HiDPI monitors).
0030 welcomeExpandingLogo:   false
0031 
0032 ### WINDOW CONFIGURATION
0033 #
0034 # The settings here affect the placement of the Calamares
0035 # window through hints to the window manager and initial
0036 # sizing of the Calamares window.
0037 
0038 # Size and expansion policy for Calamares.
0039 #  - "normal" or unset, expand as needed, use *windowSize*
0040 #  - "fullscreen", start as large as possible, ignore *windowSize*
0041 #  - "noexpand", don't expand automatically, use *windowSize*
0042 windowExpanding:    fullscreen
0043 
0044 # Size of Calamares window, expressed as w,h. Both w and h
0045 # may be either pixels (suffix px) or font-units (suffix em).
0046 #   e.g.    "800px,600px"
0047 #           "60em,480px"
0048 # This setting is ignored if "fullscreen" is selected for
0049 # *windowExpanding*, above. If not set, use constants defined
0050 # in CalamaresUtilsGui, 800x520.
0051 windowSize: 800px,520px
0052 
0053 # Placement of Calamares window. Either "center" or "free".
0054 # Whether "center" actually works does depend on the window
0055 # manager in use (and only makes sense if you're not using
0056 # *windowExpanding* set to "fullscreen").
0057 windowPlacement: center
0058 
0059 ### PANELS CONFIGURATION
0060 #
0061 # Calamares has a main content area, and two panels (navigation
0062 # and progress / sidebar). The panels can be controlled individually,
0063 # or switched off. If both panels are switched off, the layout of
0064 # the main content area loses its margins, on the assumption that
0065 # you're doing something special.
0066 
0067 # Kind of sidebar (panel on the left, showing progress).
0068 #  - "widget" or unset, use traditional sidebar (logo, items)
0069 #  - "none", hide it entirely
0070 #  - "qml", use calamares-sidebar.qml from branding folder
0071 # In addition, you **may** specify a side, separated by a comma,
0072 # from the kind. Valid sides are:
0073 #  - "left" (if not specified, uses this)
0074 #  - "right"
0075 #  - "top"
0076 #  - "bottom"
0077 # For instance, "widget,right" is valid; so is "qml", which defaults
0078 # to putting the sidebar on the left. Also valid is "qml,top".
0079 # While "widget,top" is valid, the widgets code is **not** flexible
0080 # and results will be terrible.
0081 sidebar: none
0082 
0083 # Kind of navigation (button panel on the bottom).
0084 #  - "widget" or unset, use traditional navigation
0085 #  - "none", hide it entirely
0086 #  - "qml", use calamares-navigation.qml from branding folder
0087 # In addition, you **may** specify a side, separated by a comma,
0088 # from the kind. The same sides are valid as for *sidebar*,
0089 # except the default is *bottom*.
0090 navigation: qml
0091 
0092 
0093 ### STRINGS, IMAGES AND COLORS
0094 #
0095 # This section contains the "branding proper" of names
0096 # and images, rather than global-look settings.
0097 
0098 # These are strings shown to the user in the user interface.
0099 # There is no provision for translating them -- since they
0100 # are names, the string is included as-is.
0101 #
0102 # The four Url strings are the Urls used by the buttons in
0103 # the welcome screen, and are not shown to the user. Clicking
0104 # on the "Support" button, for instance, opens the link supportUrl.
0105 # If a Url is empty, the corresponding button is not shown.
0106 #
0107 # bootloaderEntryName is how this installation / distro is named
0108 # in the boot loader (e.g. in the GRUB menu).
0109 #
0110 # These strings support substitution from /etc/os-release
0111 # if KDE Frameworks 5.58 are available at build-time. When
0112 # enabled, @{var-name} is replaced by the equivalent value
0113 # from os-release. All the supported var-names are in all-caps,
0114 # and are listed on the FreeDesktop.org site,
0115 #       https://www.freedesktop.org/software/systemd/man/os-release.html
0116 # Note that ANSI_COLOR and CPE_NAME don't make sense here, and
0117 # are not supported (the rest are). Remember to quote the string
0118 # if it contains substitutions, or you'll get YAML exceptions.
0119 #
0120 # The *Url* entries are used on the welcome page, and they
0121 # are visible as buttons there if the corresponding *show* keys
0122 # are set to "true" (they can also be overridden).
0123 strings:
0124     productName:         "@{NAME}"
0125     shortProductName:    Generic
0126     version:             2020.2 LTS
0127     shortVersion:        2020.2
0128     versionedName:       Fancy GNU/Linux 2020.2 LTS "Turgid Tuba"
0129     shortVersionedName:  FancyGL 2020.2
0130     bootloaderEntryName: FancyGL
0131     productUrl:          https://calamares.io/
0132     supportUrl:          https://github.com/calamares/calamares/wiki
0133     knownIssuesUrl:      https://github.com/calamares/calamares/issues
0134     releaseNotesUrl:     https://calamares.io/news/
0135     donateUrl:           https://kde.org/community/donations/index.php
0136 
0137 # These images are loaded from the branding module directory.
0138 #
0139 # productBanner is an optional image, which if present, will be shown
0140 #       on the welcome page of the application, above the welcome text.
0141 #       It is intended to have a width much greater than height.
0142 #       It is displayed at 64px height (also on HiDPI).
0143 #       Recommended size is 64px tall, and up to 460px wide.
0144 # productIcon is used as the window icon, and will (usually) be used
0145 #       by the window manager to represent the application. This image
0146 #       should be square, and may be displayed by the window manager
0147 #       as small as 16x16 (but possibly larger).
0148 # productLogo is used as the logo at the top of the left-hand column
0149 #       which shows the steps to be taken. The image should be square,
0150 #       and is displayed at 80x80 pixels (also on HiDPI).
0151 # productWallpaper is an optional image, which if present, will replace
0152 #       the normal solid background on every page of the application.
0153 #       It can be any size and proportion,
0154 #       and will be tiled to fit the entire window.
0155 #       For a non-tiled wallpaper, the size should be the same as
0156 #       the overall window, see *windowSize* above (800x520).
0157 # productWelcome is shown on the welcome page of the application in
0158 #       the middle of the window, below the welcome text. It can be
0159 #       any size and proportion, and will be scaled to fit inside
0160 #       the window. Use `welcomeExpandingLogo` to make it non-scaled.
0161 #       Recommended size is 320x150.
0162 #
0163 # These filenames can also use substitutions from os-release (see above).
0164 images:
0165     # productBanner:       "banner.png"
0166     productIcon:         "squid.png"
0167     productLogo:         "squid.png"
0168     # productWallpaper:    "wallpaper.png"
0169     productWelcome:      "languages.png"
0170 
0171 # Colors for text and background components.
0172 #
0173 #  - sidebarBackground is the background of the sidebar
0174 #  - sidebarText is the (foreground) text color
0175 #  - sidebarTextHighlight sets the background of the selected (current) step.
0176 #    Optional, and defaults to the application palette.
0177 #  - sidebarSelect is the text color of the selected step.
0178 #
0179 # These colors can **also** be set through the stylesheet, if the
0180 # branding component also ships a stylesheet.qss. Then they are
0181 # the corresponding CSS attributes of #sidebarApp.
0182 style:
0183    sidebarBackground:    "#292F34"
0184    sidebarText:          "#FFFFFF"
0185    sidebarTextSelect:    "#292F34"
0186    sidebarTextHighlight: "#D35400"
0187 
0188 ### SLIDESHOW
0189 #
0190 # The slideshow is displayed during execution steps (e.g. when the
0191 # installer is actually writing to disk and doing other slow things).
0192 
0193 # The slideshow can be a QML file (recommended) which can display
0194 # arbitrary things -- text, images, animations, or even play a game --
0195 # during the execution step. The QML **is** abruptly stopped when the
0196 # execution step is done, though, so maybe a game isn't a great idea.
0197 #
0198 # The slideshow can also be a sequence of images (not recommended unless
0199 # you don't want QML at all in your Calamares). The images are displayed
0200 # at a rate of 1 every 2 seconds during the execution step.
0201 #
0202 # To configure a QML file, list a single filename:
0203 #   slideshow:               "show.qml"
0204 # To configure images, like the filenames (here, as an inline list):
0205 #   slideshow: [ "/etc/calamares/slideshow/0.png", "/etc/logo.png" ]
0206 slideshow:               "show.qml"
0207 
0208 # There are two available APIs for a QML slideshow:
0209 #  - 1 (the default) loads the entire slideshow when the installation-
0210 #      slideshow page is shown and starts the QML then. The QML
0211 #      is never stopped (after installation is done, times etc.
0212 #      continue to fire).
0213 #  - 2 loads the slideshow on startup and calls onActivate() and
0214 #      onLeave() in the root object. After the installation is done,
0215 #      the show is stopped (first by calling onLeave(), then destroying
0216 #      the QML components).
0217 #
0218 # An image slideshow does not need to have the API defined.
0219 slideshowAPI: 2
0220 
0221 
0222 # These options are to customize online uploading of logs to pastebins:
0223 #  - type      : Defines the kind of pastebin service to be used. Currently
0224 #                it accepts two values:
0225 #                - none    :    disables the pastebin functionality
0226 #                - fiche   :    use fiche pastebin server
0227 #  - url       : Defines the address of pastebin service to be used.
0228 #                Takes string as input. Important bits are the host and port,
0229 #                the scheme is not used.
0230 #  - sizeLimit : Defines maximum size limit (in KiB) of log file to be pasted.
0231 #                The option must be set, to have the log option work.
0232 #                Takes integer as input. If < 0, no limit will be forced,
0233 #                else only last (approximately) 'n' KiB of log file will be pasted.
0234 #                Please note that upload size may be slightly over the limit (due
0235 #                to last minute logging), so provide a suitable value.
0236 uploadServer :
0237     type :    "fiche"
0238     url :     "http://termbin.com:9999"
0239     sizeLimit : -1