@ -0,0 +1,23 @@
|
||||
---
|
||||
componentName: neon
|
||||
|
||||
strings:
|
||||
productName: KDE neon
|
||||
shortProductName: neon
|
||||
version: Developer Edition (Unstable Branches)
|
||||
shortVersion: devunstable
|
||||
versionedName: KDE neon
|
||||
shortVersionedName: KDE neon devunstable
|
||||
bootloaderEntryName: KDE neon Developer Edition (Unstable Branches)
|
||||
|
||||
images:
|
||||
productLogo: "kdeneon.png"
|
||||
productIcon: "kdeneon.png"
|
||||
productWelcome: "welcome.png"
|
||||
|
||||
slideshow: "show.qml"
|
||||
|
||||
style:
|
||||
sidebarBackground: "#0C0C0C"
|
||||
sidebarText: "#5A5A5A"
|
||||
sidebarTextSelect: "#FFFFFF"
|
After Width: | Height: | Size: 9.5 KiB |
Before Width: | Height: | Size: 234 KiB After Width: | Height: | Size: 234 KiB |
Before Width: | Height: | Size: 120 KiB After Width: | Height: | Size: 120 KiB |
Before Width: | Height: | Size: 123 KiB After Width: | Height: | Size: 123 KiB |
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 90 KiB |
Before Width: | Height: | Size: 159 KiB After Width: | Height: | Size: 159 KiB |
Before Width: | Height: | Size: 122 KiB After Width: | Height: | Size: 122 KiB |
After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 8.1 KiB |
Before Width: | Height: | Size: 93 KiB |
@ -1,5 +1,5 @@
|
||||
---
|
||||
unpack:
|
||||
- source: "/lib/live/mount/medium/live/filesystem.squashfs"
|
||||
- source: "/cdrom/casper/filesystem.squashfs"
|
||||
sourcefs: "squashfs"
|
||||
destination: ""
|
||||
|
@ -1,81 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
## live-config(7) - System Configuration Components
|
||||
## Copyright (C) 2014 Rohan Garg <rohan@kde.org>
|
||||
##
|
||||
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
|
||||
## This is free software, and you are welcome to redistribute it
|
||||
## under certain conditions; see COPYING for details.
|
||||
|
||||
|
||||
set -e
|
||||
|
||||
Cmdline ()
|
||||
{
|
||||
# Reading kernel command line
|
||||
for _PARAMETER in ${LIVE_CONFIG_CMDLINE}
|
||||
do
|
||||
case "${_PARAMETER}" in
|
||||
live-config.no_calamares=|no_calamares=)
|
||||
NO_CALAMARES="true"
|
||||
;;
|
||||
|
||||
live-config.username=*|username=*)
|
||||
LIVE_USERNAME="${_PARAMETER#*username=}"
|
||||
;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
Init ()
|
||||
{
|
||||
# Checking if package is installed or already configured
|
||||
if [ ! -e /usr/bin/calamares ]
|
||||
then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo -n " calamares"
|
||||
}
|
||||
|
||||
Config ()
|
||||
{
|
||||
if [ ! -e /usr/bin/calamares ]
|
||||
then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ "${NO_CALAMARES}" != "true" ]
|
||||
then
|
||||
if [ ! -e /home/${LIVE_USERNAME}/Desktop ]
|
||||
then
|
||||
mkdir -p "/home/${LIVE_USERNAME}/Desktop"
|
||||
fi
|
||||
|
||||
cat > "/home/${LIVE_USERNAME}/Desktop/calamares.desktop" << EOF
|
||||
#!/usr/bin/env xdg-open
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Version=1.0
|
||||
Name=Install Netrunner Core
|
||||
GenericName=Install Netrunner Core
|
||||
TryExec=calamares
|
||||
Exec=pkexec /usr/bin/calamares
|
||||
Comment=Calamares — System Installer
|
||||
Icon=calamares
|
||||
Terminal=false
|
||||
StartupNotify=true
|
||||
Categories=Qt;System;
|
||||
EOF
|
||||
|
||||
chmod a+x "/home/${LIVE_USERNAME}/Desktop/calamares.desktop"
|
||||
chown -R ${LIVE_USERNAME}:${LIVE_USERNAME} "/home/${LIVE_USERNAME}/Desktop"
|
||||
|
||||
fi
|
||||
# Creating state file
|
||||
touch /var/lib/live/config/calamares
|
||||
}
|
||||
|
||||
Cmdline
|
||||
Init
|
||||
Config
|
Before Width: | Height: | Size: 26 KiB |