Update
This commit is contained in:
parent
c98d15f6aa
commit
b8c17dc348
|
@ -0,0 +1,47 @@
|
|||
# SPDX-FileCopyrightText: no
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
#
|
||||
# Configuration for the "finished" page, which is usually shown only at
|
||||
# the end of the installation (successful or not).
|
||||
---
|
||||
# DEPRECATED
|
||||
#
|
||||
# The finished page can hold a "restart system now" checkbox.
|
||||
# If this is false, no checkbox is shown and the system is not restarted
|
||||
# when Calamares exits.
|
||||
# restartNowEnabled: true
|
||||
|
||||
# DEPRECATED
|
||||
#
|
||||
# Initial state of the checkbox "restart now". Only relevant when the
|
||||
# checkbox is shown by restartNowEnabled.
|
||||
# restartNowChecked: false
|
||||
|
||||
# Behavior of the "restart system now" button.
|
||||
#
|
||||
# There are four usable values:
|
||||
# - never
|
||||
# Does not show the button and does not restart.
|
||||
# This matches the old behavior with restartNowEnabled=false.
|
||||
# - user-unchecked
|
||||
# Shows the button, defaults to unchecked, restarts if it is checked.
|
||||
# This matches the old behavior with restartNowEnabled=true and restartNowChecked=false.
|
||||
# - user-checked
|
||||
# Shows the button, defaults to checked, restarts if it is checked.
|
||||
# This matches the old behavior with restartNowEnabled=true and restartNowChecked=true.
|
||||
# - always
|
||||
# Shows the button, checked, but the user cannot change it.
|
||||
# This is new behavior.
|
||||
#
|
||||
# The three combinations of legacy values are still supported.
|
||||
restartNowMode: user-checked
|
||||
|
||||
# If the checkbox is shown, and the checkbox is checked, then when
|
||||
# Calamares exits from the finished-page it will run this command.
|
||||
# If not set, falls back to "shutdown -r now".
|
||||
restartNowCommand: "systemctl -i reboot"
|
||||
|
||||
# When the last page is (successfully) reached, send a DBus notification
|
||||
# to the desktop that the installation is done. This works only if the
|
||||
# user as whom Calamares is run, can reach the regular desktop session bus.
|
||||
notifyOnFinished: false
|
|
@ -0,0 +1,36 @@
|
|||
# SPDX-FileCopyrightText: no
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
#
|
||||
# Configuration for the "finishedq" page, which is usually shown only at
|
||||
# the end of the installation (successful or not).
|
||||
#
|
||||
# See the documentation for the "finished" module for a full explanation
|
||||
# of the configuration options; the description here applies primarily
|
||||
# to the use that the QML makes of them.
|
||||
---
|
||||
# Behavior of the "restart system now" button.
|
||||
#
|
||||
# The example QML for this module offers a "Restart Now" button,
|
||||
# which the user can click on. It calls directly to the restart
|
||||
# function. If the user closes the installer in some other way,
|
||||
# (the "Done" button or close-window) a restart **might** happen:
|
||||
#
|
||||
# - never
|
||||
# Do not restart (this will also block the "Restart Now" button,
|
||||
# so it is not very useful)
|
||||
# - user-unchecked
|
||||
# Do not restart on other ways of closing the window. No checkbox
|
||||
# is shown in the example QML, so there is no way for the user to
|
||||
# express a choice -- except by clicking the "Restart Now" button.
|
||||
# - user-checked
|
||||
# Do restart on other ways of closing the window. This makes close
|
||||
# and "Restart Now" do the same thing. No checkbox is shown by the QML,
|
||||
# so the machine will **always** restart.
|
||||
# - always
|
||||
# Same as above.
|
||||
#
|
||||
# For the **specific** example QML included with this module, only
|
||||
# *user-unchecked* really makes sense.
|
||||
restartNowMode: user-checked
|
||||
restartNowCommand: "systemctl -i reboot"
|
||||
notifyOnFinished: false
|
|
@ -0,0 +1 @@
|
|||
<svg aria-hidden="true" focusable="false" data-icon="seedling" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z"></path></svg>
|
After Width: | Height: | Size: 384 B |
|
@ -51,7 +51,7 @@ sourcefs: "squashfs"
|
|||
destination: ""
|
||||
# condition: true
|
||||
|
||||
source: "/run/archiso/bootmnt/arch/boot/x86_64/vmlinuz-linux-cachyos"
|
||||
sourcefs: "file"
|
||||
destination: "/boot/vmlinuz-linux-cachyos"
|
||||
# source: "/run/archiso/bootmnt/arch/boot/x86_64/vmlinuz-linux-cachyos"
|
||||
# sourcefs: "file"
|
||||
# destination: "/boot/vmlinuz-linux-cachyos"
|
||||
# condition: true
|
||||
|
|
Loading…
Reference in New Issue