mirror of
https://pagure.io/fedora-kickstarts.git
synced 2024-11-05 16:04:22 +00:00
4b316e74e6
This package will enable us to show installation instructions on the background of Live media. This package is used by the sway-config-fedora package.
33 lines
771 B
Plaintext
33 lines
771 B
Plaintext
# fedora-livecd-sway.ks
|
|
#
|
|
# Description:
|
|
# - Fedora Live Spin with the tiling window manager Sway
|
|
#
|
|
# Maintainer(s):
|
|
# - Aleksei Bavshin <alebastr89@gmail.com>
|
|
# - Jiří Konečný <jkonecny@redhat.com>
|
|
# - Anthony Rabbito <hello@anthonyrabbito.com>
|
|
# - Fabio Alessandro Locati <me@fale.io>
|
|
|
|
%include fedora-live-base.ks
|
|
%include fedora-live-minimization.ks
|
|
%include fedora-sway-common.ks
|
|
|
|
%packages
|
|
# To be able to show installation instructions on background
|
|
nwg-wrapper
|
|
%end
|
|
|
|
%post
|
|
# create /etc/sysconfig/desktop (needed for installation)
|
|
cat > /etc/sysconfig/desktop <<EOF
|
|
PREFERRED=/usr/bin/sway
|
|
DISPLAYMANAGER=/bin/sddm
|
|
EOF
|
|
|
|
# set livesys session type
|
|
sed -i 's/^livesys_session=.*/livesys_session="sway"/' /etc/sysconfig/livesys
|
|
|
|
%end
|
|
|