rebrand!: Antergos NeXT -> Euri Linux
@@ -0,0 +1,440 @@
|
||||
import QtQuick 2.15
|
||||
|
||||
Rectangle {
|
||||
id: root
|
||||
|
||||
QtObject {
|
||||
id: maxSceneSize
|
||||
property int width: 6075
|
||||
property int height: 6950
|
||||
}
|
||||
|
||||
SystemPalette {
|
||||
id: systemPalette
|
||||
}
|
||||
|
||||
color: "#0f1923"
|
||||
|
||||
Image {
|
||||
id: comet
|
||||
source: "comet.svg"
|
||||
sourceSize {
|
||||
width: 50
|
||||
height: 50
|
||||
}
|
||||
opacity: 0
|
||||
|
||||
Timer {
|
||||
id: cometShowupTimeout
|
||||
running: true
|
||||
interval: 6000
|
||||
repeat: true
|
||||
onTriggered: {
|
||||
comet.x = Math.floor(Math.random() * root.width)
|
||||
comet.y = Math.floor(Math.random() * root.height)
|
||||
cometShowupAnimation.start()
|
||||
}
|
||||
}
|
||||
|
||||
ParallelAnimation {
|
||||
id: cometShowupAnimation
|
||||
loops: 1
|
||||
|
||||
SequentialAnimation {
|
||||
NumberAnimation {
|
||||
target: comet
|
||||
property: "opacity"
|
||||
duration: 200
|
||||
from: 0
|
||||
to: 1
|
||||
}
|
||||
NumberAnimation {
|
||||
target: comet
|
||||
property: "opacity"
|
||||
duration: 200
|
||||
from: 1
|
||||
to: 0
|
||||
}
|
||||
}
|
||||
NumberAnimation {
|
||||
target: comet
|
||||
properties: "x"
|
||||
duration: 700
|
||||
easing.type: Easing.OutQuad
|
||||
to: comet.x - 100
|
||||
}
|
||||
NumberAnimation {
|
||||
target: comet
|
||||
properties: "y"
|
||||
duration: 700
|
||||
easing.type: Easing.OutQuad
|
||||
to: comet.y + 100
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Column {
|
||||
id: starsClose
|
||||
|
||||
anchors {
|
||||
left: parent.left
|
||||
right: parent.right
|
||||
top: parent.top
|
||||
topMargin: -starsClose1.sourceSize.height
|
||||
}
|
||||
height: starsClose1.height + starsClose2.height
|
||||
|
||||
Image {
|
||||
id: starsClose1
|
||||
fillMode: Image.Tile
|
||||
source: 'starsClose.svg'
|
||||
|
||||
height: maxSceneSize.height
|
||||
width: maxSceneSize.width
|
||||
}
|
||||
Image {
|
||||
id: starsClose2
|
||||
fillMode: Image.Tile
|
||||
source: 'starsClose.svg'
|
||||
|
||||
height: maxSceneSize.height
|
||||
width: maxSceneSize.width
|
||||
}
|
||||
NumberAnimation {
|
||||
id: starsCloseMovingAnimation
|
||||
running: true
|
||||
loops: -1
|
||||
|
||||
duration: 100000
|
||||
target: starsClose
|
||||
property: "anchors.topMargin"
|
||||
from: -starsClose1.sourceSize.height
|
||||
to: 0
|
||||
}
|
||||
}
|
||||
|
||||
Column {
|
||||
id: starsFar
|
||||
|
||||
anchors {
|
||||
left: parent.left
|
||||
right: parent.right
|
||||
top: parent.top
|
||||
topMargin: -starsFar1.sourceSize.height
|
||||
}
|
||||
height: starsFar1.height + starsFar2.height
|
||||
|
||||
Image {
|
||||
id: starsFar1
|
||||
fillMode: Image.Tile
|
||||
source: 'starsFar.svg'
|
||||
|
||||
height: maxSceneSize.height
|
||||
width: maxSceneSize.width
|
||||
}
|
||||
Image {
|
||||
id: starsFar2
|
||||
fillMode: Image.Tile
|
||||
source: 'starsFar.svg'
|
||||
|
||||
height: maxSceneSize.height
|
||||
width: maxSceneSize.width
|
||||
}
|
||||
|
||||
NumberAnimation {
|
||||
id: starsFarMovingAnimation
|
||||
running: true
|
||||
loops: -1
|
||||
duration: 200000
|
||||
target: starsFar
|
||||
property: "anchors.topMargin"
|
||||
from: -starsFar1.sourceSize.height
|
||||
to: 0
|
||||
}
|
||||
}
|
||||
|
||||
Image {
|
||||
id: moon
|
||||
source: "moon.svg"
|
||||
sourceSize.height: height
|
||||
sourceSize.width: width
|
||||
x: -height
|
||||
height: 70
|
||||
width: height
|
||||
|
||||
Timer {
|
||||
id: moonShowupTimeout
|
||||
running: true
|
||||
interval: 25000
|
||||
repeat: true
|
||||
onTriggered: {
|
||||
moon.height = Math.floor(Math.random() * (45 - 200) + 200)
|
||||
moon.x = Math.floor(Math.random() * root.width)
|
||||
moonShowupAnimation.start()
|
||||
}
|
||||
}
|
||||
NumberAnimation {
|
||||
id: moonShowupAnimation
|
||||
target: moon
|
||||
properties: "y"
|
||||
duration: 25000
|
||||
from: -moon.height
|
||||
to: maxSceneSize.height + moon.height
|
||||
}
|
||||
}
|
||||
|
||||
Image {
|
||||
id: background
|
||||
anchors.fill: parent
|
||||
|
||||
mipmap: true
|
||||
source: systemPalette.window.hslLightness > 0.5 ? "background.svg" : "background_dark.svg"
|
||||
}
|
||||
|
||||
Item {
|
||||
id: smoke
|
||||
|
||||
anchors {
|
||||
bottom: parent.bottom
|
||||
right: parent.right
|
||||
left: parent.left
|
||||
}
|
||||
height: smokeAsset.paintedHeight
|
||||
|
||||
Rectangle {
|
||||
anchors {
|
||||
bottom: parent.bottom
|
||||
right: parent.right
|
||||
left: parent.left
|
||||
}
|
||||
height: 57
|
||||
|
||||
color: "#20252B"
|
||||
}
|
||||
Image {
|
||||
id: smokeAsset
|
||||
anchors {
|
||||
bottom: parent.bottom
|
||||
horizontalCenter: parent.horizontalCenter
|
||||
}
|
||||
source: "smoke.svg"
|
||||
width: parent.width
|
||||
fillMode: Image.Stretch
|
||||
}
|
||||
}
|
||||
|
||||
Rocket {
|
||||
id: rocket
|
||||
property int lift: 0
|
||||
|
||||
anchors {
|
||||
bottom: parent.bottom
|
||||
bottomMargin: -(height - lift)
|
||||
horizontalCenter: parent.horizontalCenter
|
||||
horizontalCenterOffset: -235
|
||||
}
|
||||
width: 100
|
||||
showSmoke: true
|
||||
}
|
||||
|
||||
state: "onGround"
|
||||
|
||||
states: [
|
||||
State {
|
||||
name: "onGround"
|
||||
PropertyChanges {
|
||||
target: rocket
|
||||
lift: 180
|
||||
}
|
||||
PropertyChanges {
|
||||
target: background
|
||||
anchors.topMargin: -root.height
|
||||
anchors.bottomMargin: 20
|
||||
opacity: 1
|
||||
}
|
||||
PropertyChanges {
|
||||
target: starsCloseMovingAnimation
|
||||
running: false
|
||||
}
|
||||
PropertyChanges {
|
||||
target: starsFarMovingAnimation
|
||||
running: false
|
||||
}
|
||||
PropertyChanges {
|
||||
target: moonShowupTimeout
|
||||
running: false
|
||||
}
|
||||
PropertyChanges {
|
||||
target: cometShowupTimeout
|
||||
running: false
|
||||
}
|
||||
},
|
||||
State {
|
||||
extend: "onGround"
|
||||
name: "nearGround"
|
||||
PropertyChanges {
|
||||
target: rocket
|
||||
lift: root.height / 2 + 150
|
||||
}
|
||||
PropertyChanges {
|
||||
target: smoke
|
||||
anchors.bottomMargin: -smoke.height / 2 + 100
|
||||
}
|
||||
|
||||
PropertyChanges {
|
||||
target: background
|
||||
anchors.bottomMargin: -(root.height * 0.2)
|
||||
anchors.topMargin: -root.height + root.height * 0.2
|
||||
}
|
||||
},
|
||||
State {
|
||||
extend: "nearGround"
|
||||
name: "inAtmosphere"
|
||||
PropertyChanges {
|
||||
target: rocket
|
||||
showSmoke: false
|
||||
}
|
||||
PropertyChanges {
|
||||
target: rocket
|
||||
lift: root.height / 2 + 100
|
||||
}
|
||||
PropertyChanges {
|
||||
target: background
|
||||
anchors.bottomMargin: -root.height * 0.9
|
||||
anchors.topMargin: 0
|
||||
}
|
||||
},
|
||||
State {
|
||||
extend: "inAtmosphere"
|
||||
name: "inSpace"
|
||||
PropertyChanges {
|
||||
target: background
|
||||
anchors.bottomMargin: -(root.height * 2)
|
||||
anchors.topMargin: root.height
|
||||
}
|
||||
PropertyChanges {
|
||||
target: starsCloseMovingAnimation
|
||||
running: true
|
||||
}
|
||||
PropertyChanges {
|
||||
target: starsFarMovingAnimation
|
||||
running: true
|
||||
}
|
||||
PropertyChanges {
|
||||
target: moonShowupTimeout
|
||||
running: true
|
||||
}
|
||||
PropertyChanges {
|
||||
target: cometShowupTimeout
|
||||
running: true
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
transitions: [
|
||||
Transition {
|
||||
id: transition1
|
||||
from: "onGround"
|
||||
to: "nearGround"
|
||||
SequentialAnimation {
|
||||
NumberAnimation {
|
||||
target: rocket
|
||||
property: "lift"
|
||||
duration: 10000
|
||||
easing.type: Easing.InQuad
|
||||
}
|
||||
ScriptAction {
|
||||
script: root.state = "inAtmosphere"
|
||||
}
|
||||
}
|
||||
NumberAnimation {
|
||||
target: smoke
|
||||
property: "bottomMargin"
|
||||
duration: 10000
|
||||
easing.type: Easing.InQuad
|
||||
}
|
||||
NumberAnimation {
|
||||
target: background
|
||||
properties: "anchors.topMargin,anchors.bottomMargin"
|
||||
duration: 10000
|
||||
easing.type: Easing.InQuad
|
||||
}
|
||||
},
|
||||
Transition {
|
||||
id: transition2
|
||||
from: "nearGround"
|
||||
to: "inAtmosphere"
|
||||
NumberAnimation {
|
||||
target: rocket
|
||||
property: "lift"
|
||||
duration: 5000
|
||||
easing.type: Easing.OutQuad
|
||||
}
|
||||
SequentialAnimation {
|
||||
NumberAnimation {
|
||||
target: background
|
||||
properties: "anchors.topMargin,anchors.bottomMargin"
|
||||
duration: 5000
|
||||
}
|
||||
ScriptAction {
|
||||
script: root.state = "inSpace"
|
||||
}
|
||||
}
|
||||
},
|
||||
Transition {
|
||||
id: transition3
|
||||
from: "inAtmosphere"
|
||||
to: "inSpace"
|
||||
NumberAnimation {
|
||||
target: rocket
|
||||
property: "lift"
|
||||
duration: 3000
|
||||
easing.type: Easing.OutQuad
|
||||
}
|
||||
|
||||
NumberAnimation {
|
||||
target: background
|
||||
properties: "anchors.bottomMargin"
|
||||
duration: 15000
|
||||
from: -root.height
|
||||
}
|
||||
NumberAnimation {
|
||||
target: background
|
||||
properties: "anchors.topMargin"
|
||||
duration: 15000
|
||||
from: 0
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
Timer {
|
||||
id: sizeChangeTimeout
|
||||
interval: 1
|
||||
|
||||
onTriggered: {
|
||||
switch (state) {
|
||||
case "nearGround":
|
||||
if (!transition1.running)
|
||||
return
|
||||
state = "onGround"
|
||||
state = "nearGround"
|
||||
break
|
||||
case "inAtmosphere":
|
||||
if (!transition2.running)
|
||||
return
|
||||
state = "nearGround"
|
||||
state = "inAtmosphere"
|
||||
break
|
||||
case "inSpace":
|
||||
if (!transition3.running)
|
||||
return
|
||||
state = "inAtmosphere"
|
||||
state = "inSpace"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
onHeightChanged: {
|
||||
sizeChangeTimeout.restart()
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import QtQuick 2.15
|
||||
|
||||
Item {
|
||||
property string title
|
||||
property string body
|
||||
property string footer
|
||||
property url image
|
||||
}
|
||||
@@ -0,0 +1,209 @@
|
||||
# Maintainer: Michał <ash8820@proton.me>
|
||||
|
||||
pkgname=calamares-branding-euri
|
||||
pkgver=2.0
|
||||
pkgrel=5
|
||||
pkgdesc="Calamares branding for Euri Linux online installer"
|
||||
arch=('any')
|
||||
url="https://github.com/Euri-Linux"
|
||||
license=('GPL3')
|
||||
depends=('calamares' 'yad')
|
||||
optdepends=('zenity: fallback for graphical mode chooser dialog')
|
||||
source=("branding.desc"
|
||||
"stylesheet.qss"
|
||||
"show.qml"
|
||||
"Dia.qml"
|
||||
"Slide.qml"
|
||||
"Slider.qml"
|
||||
"Artwork.qml"
|
||||
"Rocket.qml"
|
||||
"calamares-sidebar.qml"
|
||||
"calamares-navigation.qml"
|
||||
"background.jpg"
|
||||
"background.svg"
|
||||
"background_dark.svg"
|
||||
"comet.svg"
|
||||
"draw-rectangle.svg"
|
||||
"moon.svg"
|
||||
"pan-end-symbolic.svg"
|
||||
"pan-start-symbolic.svg"
|
||||
"pan-up-symbolic.svg"
|
||||
"rocket_a.svg"
|
||||
"rocket_b.svg"
|
||||
"rocket_smoke.svg"
|
||||
"smoke.svg"
|
||||
"space.svg"
|
||||
"starsClose.svg"
|
||||
"starsFar.svg"
|
||||
"euri-logo.png"
|
||||
"euri-icon.png"
|
||||
"unpackfs.conf"
|
||||
"initcpiocfg.conf"
|
||||
"initcpio.conf"
|
||||
"netinstall.yaml"
|
||||
"netinstall.conf"
|
||||
"packagechooser_de.conf"
|
||||
"packagechooser_dm.conf"
|
||||
"services-artix.conf"
|
||||
"welcome.conf"
|
||||
"settings_offline.conf"
|
||||
"settings_online.conf"
|
||||
"calamares-next.sh"
|
||||
"sddm-screenshot.png"
|
||||
"lightdm-screenshot.png"
|
||||
"lxdm-screenshot.png"
|
||||
"greetd-screenshot.png"
|
||||
"ly-screenshot.png")
|
||||
sha256sums=('SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP')
|
||||
|
||||
package() {
|
||||
# Branding data (shared between offline/online)
|
||||
local _brand="/usr/share/calamares/branding/euri"
|
||||
install -dm755 "${pkgdir}${_brand}"
|
||||
cp "branding.desc" "${pkgdir}${_brand}/"
|
||||
cp "stylesheet.qss" "${pkgdir}${_brand}/"
|
||||
cp "show.qml" "${pkgdir}${_brand}/"
|
||||
cp "Dia.qml" "${pkgdir}${_brand}/"
|
||||
cp "Slide.qml" "${pkgdir}${_brand}/"
|
||||
cp "Slider.qml" "${pkgdir}${_brand}/"
|
||||
cp "Artwork.qml" "${pkgdir}${_brand}/"
|
||||
cp "Rocket.qml" "${pkgdir}${_brand}/"
|
||||
cp "calamares-sidebar.qml" "${pkgdir}${_brand}/"
|
||||
cp "calamares-navigation.qml" "${pkgdir}${_brand}/"
|
||||
cp "background.jpg" "${pkgdir}${_brand}/"
|
||||
cp "background.svg" "${pkgdir}${_brand}/"
|
||||
cp "background_dark.svg" "${pkgdir}${_brand}/"
|
||||
cp "comet.svg" "${pkgdir}${_brand}/"
|
||||
cp "draw-rectangle.svg" "${pkgdir}${_brand}/"
|
||||
cp "moon.svg" "${pkgdir}${_brand}/"
|
||||
cp "pan-end-symbolic.svg" "${pkgdir}${_brand}/"
|
||||
cp "pan-start-symbolic.svg" "${pkgdir}${_brand}/"
|
||||
cp "pan-up-symbolic.svg" "${pkgdir}${_brand}/"
|
||||
cp "rocket_a.svg" "${pkgdir}${_brand}/"
|
||||
cp "rocket_b.svg" "${pkgdir}${_brand}/"
|
||||
cp "rocket_smoke.svg" "${pkgdir}${_brand}/"
|
||||
cp "smoke.svg" "${pkgdir}${_brand}/"
|
||||
cp "space.svg" "${pkgdir}${_brand}/"
|
||||
cp "starsClose.svg" "${pkgdir}${_brand}/"
|
||||
cp "starsFar.svg" "${pkgdir}${_brand}/"
|
||||
cp "euri-logo.png" "${pkgdir}${_brand}/"
|
||||
cp "euri-icon.png" "${pkgdir}${_brand}/"
|
||||
cp "sddm-screenshot.png" "${pkgdir}${_brand}/"
|
||||
cp "lightdm-screenshot.png" "${pkgdir}${_brand}/"
|
||||
cp "lxdm-screenshot.png" "${pkgdir}${_brand}/"
|
||||
cp "greetd-screenshot.png" "${pkgdir}${_brand}/"
|
||||
cp "ly-screenshot.png" "${pkgdir}${_brand}/"
|
||||
|
||||
# Also overwrite default branding so Artix calamares package can't sneak in
|
||||
local _defbrand="/usr/share/calamares/branding/default"
|
||||
install -dm755 "${pkgdir}${_defbrand}"
|
||||
cp "branding.desc" "${pkgdir}${_defbrand}/"
|
||||
cp "show.qml" "${pkgdir}${_defbrand}/"
|
||||
cp "Dia.qml" "${pkgdir}${_defbrand}/"
|
||||
cp "Slide.qml" "${pkgdir}${_defbrand}/"
|
||||
cp "Slider.qml" "${pkgdir}${_defbrand}/"
|
||||
cp "Artwork.qml" "${pkgdir}${_defbrand}/"
|
||||
cp "Rocket.qml" "${pkgdir}${_defbrand}/"
|
||||
cp "calamares-sidebar.qml" "${pkgdir}${_defbrand}/"
|
||||
cp "calamares-navigation.qml" "${pkgdir}${_defbrand}/"
|
||||
cp "background.jpg" "${pkgdir}${_defbrand}/"
|
||||
cp "background.svg" "${pkgdir}${_defbrand}/"
|
||||
cp "background_dark.svg" "${pkgdir}${_defbrand}/"
|
||||
cp "comet.svg" "${pkgdir}${_defbrand}/"
|
||||
cp "draw-rectangle.svg" "${pkgdir}${_defbrand}/"
|
||||
cp "moon.svg" "${pkgdir}${_defbrand}/"
|
||||
cp "pan-end-symbolic.svg" "${pkgdir}${_defbrand}/"
|
||||
cp "pan-start-symbolic.svg" "${pkgdir}${_defbrand}/"
|
||||
cp "pan-up-symbolic.svg" "${pkgdir}${_defbrand}/"
|
||||
cp "rocket_a.svg" "${pkgdir}${_defbrand}/"
|
||||
cp "rocket_b.svg" "${pkgdir}${_defbrand}/"
|
||||
cp "rocket_smoke.svg" "${pkgdir}${_defbrand}/"
|
||||
cp "smoke.svg" "${pkgdir}${_defbrand}/"
|
||||
cp "space.svg" "${pkgdir}${_defbrand}/"
|
||||
cp "starsClose.svg" "${pkgdir}${_defbrand}/"
|
||||
cp "starsFar.svg" "${pkgdir}${_defbrand}/"
|
||||
cp "euri-logo.png" "${pkgdir}${_defbrand}/"
|
||||
cp "euri-icon.png" "${pkgdir}${_defbrand}/"
|
||||
cp "sddm-screenshot.png" "${pkgdir}${_defbrand}/"
|
||||
cp "lightdm-screenshot.png" "${pkgdir}${_defbrand}/"
|
||||
cp "lxdm-screenshot.png" "${pkgdir}${_defbrand}/"
|
||||
cp "greetd-screenshot.png" "${pkgdir}${_defbrand}/"
|
||||
cp "ly-screenshot.png" "${pkgdir}${_defbrand}/"
|
||||
|
||||
# Shared Calamares modules
|
||||
install -dm755 "${pkgdir}/etc/calamares/modules"
|
||||
cp "unpackfs.conf" "${pkgdir}/etc/calamares/modules/"
|
||||
cp "initcpiocfg.conf" "${pkgdir}/etc/calamares/modules/"
|
||||
cp "initcpio.conf" "${pkgdir}/etc/calamares/modules/"
|
||||
cp "netinstall.conf" "${pkgdir}/etc/calamares/modules/"
|
||||
cp "netinstall.yaml" "${pkgdir}/etc/calamares/modules/"
|
||||
cp "packagechooser_de.conf" "${pkgdir}/etc/calamares/modules/"
|
||||
cp "packagechooser_dm.conf" "${pkgdir}/etc/calamares/modules/"
|
||||
cp "services-artix.conf" "${pkgdir}/etc/calamares/modules/"
|
||||
cp "welcome.conf" "${pkgdir}/etc/calamares/modules/"
|
||||
|
||||
# Offline config directory
|
||||
install -dm755 "${pkgdir}/etc/calamares-offline"
|
||||
cp "settings_offline.conf" "${pkgdir}/etc/calamares-offline/settings.conf"
|
||||
ln -sf "/usr/share/calamares/qml" "${pkgdir}/etc/calamares-offline/qml"
|
||||
ln -sf "/usr/share/calamares/branding" "${pkgdir}/etc/calamares-offline/branding"
|
||||
|
||||
# Online config directory
|
||||
install -dm755 "${pkgdir}/etc/calamares-online"
|
||||
cp "settings_online.conf" "${pkgdir}/etc/calamares-online/settings.conf"
|
||||
ln -sf "/usr/share/calamares/qml" "${pkgdir}/etc/calamares-online/qml"
|
||||
ln -sf "/usr/share/calamares/branding" "${pkgdir}/etc/calamares-online/branding"
|
||||
|
||||
# Default: offline mode (for direct calamares launch)
|
||||
install -dm755 "${pkgdir}/etc/calamares"
|
||||
ln -sf "../calamares-offline/settings.conf" "${pkgdir}/etc/calamares/settings.conf"
|
||||
ln -sf "/usr/share/calamares/branding" "${pkgdir}/etc/calamares/branding"
|
||||
|
||||
# Launcher script
|
||||
install -dm755 "${pkgdir}/usr/bin"
|
||||
install -m755 "calamares-next.sh" "${pkgdir}/usr/bin/calamares-next"
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
import QtQuick 2.15
|
||||
Item {
|
||||
|
||||
property bool showSmoke: false
|
||||
|
||||
Item {
|
||||
id: rocketNoSmoke
|
||||
property bool rocketFrame: false
|
||||
|
||||
Timer {
|
||||
interval: 200
|
||||
running: !showSmoke
|
||||
repeat: true
|
||||
onTriggered: rocketNoSmoke.rocketFrame = !rocketNoSmoke.rocketFrame
|
||||
}
|
||||
width: 250
|
||||
height: Math.min(rocket_a.paintedHeight, rocket_b.paintedHeight)
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
anchors.top: parent.top
|
||||
Image {
|
||||
opacity: rocketNoSmoke.rocketFrame?1:0
|
||||
width: parent.width
|
||||
id: rocket_a
|
||||
fillMode: Image.PreserveAspectFit
|
||||
|
||||
source: "rocket_a.svg"
|
||||
|
||||
}
|
||||
|
||||
Image {
|
||||
opacity: rocketNoSmoke.rocketFrame?0:1
|
||||
width: parent.width
|
||||
id: rocket_b
|
||||
fillMode: Image.PreserveAspectFit
|
||||
|
||||
source: "rocket_b.svg"
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Image {
|
||||
opacity: showSmoke?1:0
|
||||
width: 250
|
||||
anchors.top: parent.top
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
id: rocketSmoke
|
||||
fillMode: Image.PreserveAspectFit
|
||||
|
||||
source: "rocket_smoke.svg"
|
||||
|
||||
Behavior on opacity {
|
||||
NumberAnimation{}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import QtQuick 2.15
|
||||
|
||||
QtObject {
|
||||
required property string title
|
||||
property string secondaryTitle
|
||||
required property string body
|
||||
property string footer
|
||||
}
|
||||
@@ -0,0 +1,189 @@
|
||||
import QtQuick 2.15
|
||||
|
||||
Item {
|
||||
property list<Slide> slides
|
||||
|
||||
property int currentSlideIndex: 0
|
||||
property int _currentSlideIndex: 0
|
||||
property int slidesSize: slides.length
|
||||
property bool firstIteration: true
|
||||
|
||||
function reset() {
|
||||
currentSlideIndex = 0
|
||||
firstIteration = true
|
||||
}
|
||||
|
||||
onCurrentSlideIndexChanged: {
|
||||
if (currentSlideIndex >= slidesSize) {
|
||||
firstIteration = false
|
||||
currentSlideIndex = 0
|
||||
}
|
||||
|
||||
transitionAnimation.start()
|
||||
}
|
||||
|
||||
Column {
|
||||
anchors.fill: parent
|
||||
spacing: 8
|
||||
|
||||
Text {
|
||||
id: titleText
|
||||
font {
|
||||
family: "Roboto"
|
||||
weight: Font.Medium
|
||||
pixelSize: 22
|
||||
}
|
||||
color: "#E3E2E6"
|
||||
text: slides[_currentSlideIndex].title
|
||||
}
|
||||
Text {
|
||||
id: secondaryTitleText
|
||||
font {
|
||||
family: "Roboto"
|
||||
weight: Font.Normal
|
||||
pixelSize: 13
|
||||
}
|
||||
color: "#4A9EFF"
|
||||
text: slides[_currentSlideIndex].secondaryTitle ?? ""
|
||||
}
|
||||
Item { width: parent.width; height: 4 }
|
||||
Text {
|
||||
id: bodyText
|
||||
font {
|
||||
family: "Roboto"
|
||||
pixelSize: 13
|
||||
}
|
||||
width: 400
|
||||
color: "#C8D6E5"
|
||||
text: slides[_currentSlideIndex].body
|
||||
wrapMode: Text.Wrap
|
||||
lineHeight: 1.55
|
||||
}
|
||||
|
||||
Item { width: parent.width; height: 8 }
|
||||
|
||||
Text {
|
||||
id: footerText
|
||||
font {
|
||||
family: "Roboto"
|
||||
weight: Font.Normal
|
||||
pixelSize: 12
|
||||
}
|
||||
width: 400
|
||||
color: "#8E9099"
|
||||
text: slides[_currentSlideIndex].footer ?? ""
|
||||
wrapMode: Text.Wrap
|
||||
}
|
||||
}
|
||||
|
||||
SequentialAnimation {
|
||||
id: transitionAnimation
|
||||
property int duration: 700
|
||||
|
||||
ParallelAnimation {
|
||||
OpacityAnimator {
|
||||
target: titleText
|
||||
from: 1.0
|
||||
to: 0.0
|
||||
duration: transitionAnimation.duration
|
||||
}
|
||||
OpacityAnimator {
|
||||
target: secondaryTitleText
|
||||
from: 1.0
|
||||
to: 0.0
|
||||
duration: transitionAnimation.duration
|
||||
}
|
||||
OpacityAnimator {
|
||||
target: bodyText
|
||||
from: 1.0
|
||||
to: 0.0
|
||||
duration: transitionAnimation.duration
|
||||
}
|
||||
OpacityAnimator {
|
||||
target: footerText
|
||||
from: 1.0
|
||||
to: 0.0
|
||||
duration: transitionAnimation.duration
|
||||
}
|
||||
XAnimator {
|
||||
target: titleText
|
||||
from: 0
|
||||
to: -30
|
||||
duration: transitionAnimation.duration
|
||||
}
|
||||
XAnimator {
|
||||
target: secondaryTitleText
|
||||
from: 0
|
||||
to: -30
|
||||
duration: transitionAnimation.duration
|
||||
}
|
||||
XAnimator {
|
||||
target: bodyText
|
||||
from: 0
|
||||
to: -25
|
||||
duration: transitionAnimation.duration
|
||||
}
|
||||
XAnimator {
|
||||
target: footerText
|
||||
from: 0
|
||||
to: -25
|
||||
duration: transitionAnimation.duration
|
||||
}
|
||||
}
|
||||
|
||||
ScriptAction {
|
||||
script: _currentSlideIndex = currentSlideIndex
|
||||
}
|
||||
|
||||
ParallelAnimation {
|
||||
OpacityAnimator {
|
||||
target: titleText
|
||||
from: 0.0
|
||||
to: 1.0
|
||||
duration: transitionAnimation.duration
|
||||
}
|
||||
OpacityAnimator {
|
||||
target: secondaryTitleText
|
||||
from: 0.0
|
||||
to: 1.0
|
||||
duration: transitionAnimation.duration
|
||||
}
|
||||
OpacityAnimator {
|
||||
target: bodyText
|
||||
from: 0.0
|
||||
to: 1.0
|
||||
duration: transitionAnimation.duration
|
||||
}
|
||||
OpacityAnimator {
|
||||
target: footerText
|
||||
from: 0.0
|
||||
to: 1.0
|
||||
duration: transitionAnimation.duration
|
||||
}
|
||||
XAnimator {
|
||||
target: titleText
|
||||
from: 30
|
||||
to: 0
|
||||
duration: transitionAnimation.duration
|
||||
}
|
||||
XAnimator {
|
||||
target: secondaryTitleText
|
||||
from: 30
|
||||
to: 0
|
||||
duration: transitionAnimation.duration
|
||||
}
|
||||
XAnimator {
|
||||
target: bodyText
|
||||
from: 25
|
||||
to: 0
|
||||
duration: transitionAnimation.duration
|
||||
}
|
||||
XAnimator {
|
||||
target: footerText
|
||||
from: 25
|
||||
to: 0
|
||||
duration: transitionAnimation.duration
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 62 KiB |
@@ -0,0 +1,119 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="800.00085"
|
||||
height="880"
|
||||
viewBox="0 0 800.00094 880.00004"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
||||
sodipodi:docname="background.svg"
|
||||
xml:space="preserve"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
|
||||
id="defs2"><linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient895"><stop
|
||||
style="stop-color:#4A9EFF;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop891" /><stop
|
||||
style="stop-color:#4A9EFF;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop893" /></linearGradient><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath290923"><rect
|
||||
style="opacity:0.7;fill:#1a2a4a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.70918;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
|
||||
id="rect290925"
|
||||
width="309.65643"
|
||||
height="170.30928"
|
||||
x="-358.01489"
|
||||
y="775.27844" /></clipPath><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath292441"><rect
|
||||
style="opacity:0.7;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.18763;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
|
||||
id="rect292443"
|
||||
width="478.64374"
|
||||
height="263.22327"
|
||||
x="-510.89438"
|
||||
y="765.67975" /></clipPath><linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient895"
|
||||
id="linearGradient897"
|
||||
x1="13.87441"
|
||||
y1="170.36914"
|
||||
x2="13.87441"
|
||||
y2="781.91968"
|
||||
gradientUnits="userSpaceOnUse" /></defs><sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#525252"
|
||||
bordercolor="#404040"
|
||||
borderopacity="1"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.49497475"
|
||||
inkscape:cx="355.5737"
|
||||
inkscape:cy="307.08637"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1914"
|
||||
inkscape:window-height="1047"
|
||||
inkscape:window-x="3"
|
||||
inkscape:window-y="3"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
units="px"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:showpageshadow="0"
|
||||
inkscape:deskcolor="#525252" /><metadata
|
||||
id="metadata5"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-13.87441,-170.36914)"><rect
|
||||
style="display:inline;fill:url(#linearGradient897);fill-opacity:1;fill-rule:evenodd;stroke-width:0.58267"
|
||||
id="rect250371"
|
||||
width="800"
|
||||
height="880"
|
||||
x="13.87523"
|
||||
y="170.36914"
|
||||
inkscape:export-filename="/run/media/bogdan/WORK/Work2022/Manjaro2022/4Calamares/2022/slide5.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
id="path287238"
|
||||
style="opacity:1;fill:#4A9EFF;fill-opacity:1;stroke:none;stroke-width:0.442273px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 13.87523,730.29327 53.765199,-34.07878 64.588571,39.80441 259.69851,-14.76567 148.75299,-67.1822 129.87247,-4.50792 53.32883,11.68417 72.25841,48.3183 17.73503,-6.46425 V 1050.3691 H 13.87523 Z"
|
||||
sodipodi:nodetypes="cccccccccccc"
|
||||
inkscape:export-filename="/run/media/bogdan/WORK/Work2021/Manjaro2021/Wallpapers_renew/mountain.png"
|
||||
inkscape:export-xdpi="95.990692"
|
||||
inkscape:export-ydpi="95.990692" /><path
|
||||
id="path287240"
|
||||
style="opacity:1;fill:#3a7abd;fill-opacity:1;stroke:none;stroke-width:0.278593px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 318.15234,21.335938 -6.375,35.107421 33.32227,-27.544921 z m -33.61718,1.957031 -24.48243,51.285156 16.22071,0.0293 z M 247.70508,25.4375 223.89453,60.746094 246.9082,36.841797 Z m 105.75195,3.855469 2.95313,5.613281 0.0254,6.609375 4.00195,1.826172 20.45703,42.847656 21.73438,14.515627 -6.95703,-13.187502 -16.9336,-14.714844 -3.66797,-22.787109 1.08008,0.494141 -0.57227,0.0098 47.88477,42.738281 -19.80469,-30.201171 16.38672,7.474609 4.41992,7.376953 -5.55468,-2.492187 15.85546,25.253899 -0.34374,-6.144524 4.99023,8.328124 -12.11328,33.26757 15.24609,-28.03906 0.5332,-11.933587 18.375,3.630859 0.0117,-1.380859 -18.09179,-8.845704 0.008,-0.154296 8.73633,-5.046876 2.56054,-7.054687 -10.9375,4.042969 -72.25781,-48.31836 z m 49.17188,71.412111 6.95703,13.18554 14.77734,1.32813 z M 267.07422,40.679688 245.91211,54.544922 232.63867,76.619141 Z m 72.91797,3.222656 -13.32813,44.646484 24.69336,-7.742187 z m -624.75196,24.085937 7.6211,19.115235 -15.58203,-4.888672 -10.76368,26.503906 32.12696,-3.49414 -36.4375,49.88672 -0.92188,-0.16016 -22.82422,-1.66406 -6.98437,0.40625 v 268.44922 h 800 V 220.46094 l -62.03711,-22.61914 -64.5957,8.96484 -223.85157,-14.41797 -165.587886,-30.34961 -113.066404,-9.57422 -38.99805,-0.10351 -74.59375,7.36719 -25.00781,-4.34961 46.75781,-50.59571 39.33594,3.00977 z"
|
||||
transform="translate(352.3998,628.22633)" /><path
|
||||
id="path287242"
|
||||
style="opacity:1;fill:#1a2a4a;fill-opacity:1;stroke:none;stroke-width:0.349527px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 813.87524,967.12639 665.97943,942.26861 601.38381,967.12639 463.3455,957.90524 381.43491,916.17674 268.36838,913.1349 229.37092,919.38449 86.448992,950.60632 54.605504,944.26915 H 31.781024 L 13.87523,946.15991 V 1050.3691 H 813.87524 Z"
|
||||
sodipodi:nodetypes="cccccccccccccc"
|
||||
inkscape:export-filename="/run/media/bogdan/WORK/Work2021/Manjaro2021/Wallpapers_renew/mountain.png"
|
||||
inkscape:export-xdpi="95.990692"
|
||||
inkscape:export-ydpi="95.990692" /><path
|
||||
id="path287244"
|
||||
style="opacity:1;fill:#bbd8ff;fill-opacity:1;stroke:none;stroke-width:0.442273px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 573.63768,655.20388 -17.83295,12.99664 -1.02684,-7.45301 -14.09739,-6.67648 16.81831,-7.59808 113.05416,-4.87076 38.9932,10.00736 14.33563,9.63773 -18.02455,-3.72859 2.95337,5.61347 0.0257,6.61008 -11.33663,-12.61828 -26.94668,-7.56085 -33.61726,1.95663 -13.00846,5.92247 -0.48663,-5.137 -23.33635,1.35822 -11.6817,6.28436 0.29872,-5.62183 z"
|
||||
sodipodi:nodetypes="cccccccccccccccccccc"
|
||||
inkscape:export-filename="/run/media/bogdan/WORK/Work2021/Manjaro2021/Wallpapers_renew/mountain.png"
|
||||
inkscape:export-xdpi="95.990692"
|
||||
inkscape:export-ydpi="95.990692" /></g></svg>
|
||||
|
After Width: | Height: | Size: 7.2 KiB |
@@ -0,0 +1,119 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="800"
|
||||
height="879.99994"
|
||||
viewBox="0 0 800.00009 879.99998"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
||||
sodipodi:docname="background_dark.svg"
|
||||
xml:space="preserve"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
|
||||
id="defs2"><linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient883"><stop
|
||||
style="stop-color:#0f1923;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop879" /><stop
|
||||
style="stop-color:#0f1923;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop881" /></linearGradient><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath290923"><rect
|
||||
style="opacity:0.7;fill:#1a2a4a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.70918;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
|
||||
id="rect290925"
|
||||
width="309.65643"
|
||||
height="170.30928"
|
||||
x="-358.01489"
|
||||
y="775.27844" /></clipPath><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath292441"><rect
|
||||
style="opacity:0.7;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.18763;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
|
||||
id="rect292443"
|
||||
width="478.64374"
|
||||
height="263.22327"
|
||||
x="-510.89438"
|
||||
y="765.67975" /></clipPath><linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient883"
|
||||
id="linearGradient885"
|
||||
x1="20.85878"
|
||||
y1="781.51343"
|
||||
x2="20.85878"
|
||||
y2="170.36917"
|
||||
gradientUnits="userSpaceOnUse" /></defs><sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#525252"
|
||||
bordercolor="#404040"
|
||||
borderopacity="1"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.35"
|
||||
inkscape:cx="321.42857"
|
||||
inkscape:cy="37.142857"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="955"
|
||||
inkscape:window-height="1047"
|
||||
inkscape:window-x="2881"
|
||||
inkscape:window-y="3"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
units="px"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:showpageshadow="0"
|
||||
inkscape:deskcolor="#525252" /><metadata
|
||||
id="metadata5"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-13.875305,-170.36917)"><rect
|
||||
style="display:inline;fill:url(#linearGradient885);fill-opacity:1;fill-rule:evenodd;stroke-width:0.58267"
|
||||
id="rect75224"
|
||||
width="800"
|
||||
height="879.99994"
|
||||
x="13.875305"
|
||||
y="170.36917"
|
||||
inkscape:export-filename="/run/media/bogdan/WORK/Work2022/Manjaro2022/4Calamares/2022/slide1.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
id="path287238"
|
||||
style="opacity:1;fill:#2d5a8a;fill-opacity:1;stroke:none;stroke-width:0.442273px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 13.87523,730.29327 53.765199,-34.07878 64.588571,39.80441 259.69851,-14.76567 148.75299,-67.1822 129.87247,-4.50792 53.32883,11.68417 72.25841,48.3183 17.73503,-6.46425 V 1050.3691 H 13.87523 Z"
|
||||
sodipodi:nodetypes="cccccccccccc"
|
||||
inkscape:export-filename="/run/media/bogdan/WORK/Work2021/Manjaro2021/Wallpapers_renew/mountain.png"
|
||||
inkscape:export-xdpi="95.990692"
|
||||
inkscape:export-ydpi="95.990692" /><path
|
||||
id="path287240"
|
||||
style="opacity:1;fill:#1a3a5a;fill-opacity:1;stroke:none;stroke-width:0.278593px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 318.15234,21.335938 -6.375,35.107421 33.32227,-27.544921 z m -33.61718,1.957031 -24.48243,51.285156 16.22071,0.0293 z M 247.70508,25.4375 223.89453,60.746094 246.9082,36.841797 Z m 105.75195,3.855469 2.95313,5.613281 0.0254,6.609375 4.00195,1.826172 20.45703,42.847656 21.73438,14.515627 -6.95703,-13.187502 -16.9336,-14.714844 -3.66797,-22.787109 1.08008,0.494141 -0.57227,0.0098 47.88477,42.738281 -19.80469,-30.201171 16.38672,7.474609 4.41992,7.376953 -5.55468,-2.492187 15.85546,25.253899 -0.34374,-6.144524 4.99023,8.328124 -12.11328,33.26757 15.24609,-28.03906 0.5332,-11.933587 18.375,3.630859 0.0117,-1.380859 -18.09179,-8.845704 0.008,-0.154296 8.73633,-5.046876 2.56054,-7.054687 -10.9375,4.042969 -72.25781,-48.31836 z m 49.17188,71.412111 6.95703,13.18554 14.77734,1.32813 z M 267.07422,40.679688 245.91211,54.544922 232.63867,76.619141 Z m 72.91797,3.222656 -13.32813,44.646484 24.69336,-7.742187 z m -624.75196,24.085937 7.6211,19.115235 -15.58203,-4.888672 -10.76368,26.503906 32.12696,-3.49414 -36.4375,49.88672 -0.92188,-0.16016 -22.82422,-1.66406 -6.98437,0.40625 v 268.44922 h 800 V 220.46094 l -62.03711,-22.61914 -64.5957,8.96484 -223.85157,-14.41797 -165.587886,-30.34961 -113.066404,-9.57422 -38.99805,-0.10351 -74.59375,7.36719 -25.00781,-4.34961 46.75781,-50.59571 39.33594,3.00977 z"
|
||||
transform="translate(352.3998,628.22633)" /><path
|
||||
id="path287242"
|
||||
style="opacity:1;fill:#0f2030;fill-opacity:1;stroke:none;stroke-width:0.349527px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 813.87524,967.12639 665.97943,942.26861 601.38381,967.12639 463.3455,957.90524 381.43491,916.17674 268.36838,913.1349 229.37092,919.38449 86.448992,950.60632 54.605504,944.26915 H 31.781024 L 13.87523,946.15991 V 1050.3691 H 813.87524 Z"
|
||||
sodipodi:nodetypes="cccccccccccccc"
|
||||
inkscape:export-filename="/run/media/bogdan/WORK/Work2021/Manjaro2021/Wallpapers_renew/mountain.png"
|
||||
inkscape:export-xdpi="95.990692"
|
||||
inkscape:export-ydpi="95.990692" /><path
|
||||
id="path287244"
|
||||
style="opacity:1;fill:#4A9EFF;fill-opacity:1;stroke:none;stroke-width:0.442273px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 573.63768,655.20388 -17.83295,12.99664 -1.02684,-7.45301 -14.09739,-6.67648 16.81831,-7.59808 113.05416,-4.87076 38.9932,10.00736 14.33563,9.63773 -18.02455,-3.72859 2.95337,5.61347 0.0257,6.61008 -11.33663,-12.61828 -26.94668,-7.56085 -33.61726,1.95663 -13.00846,5.92247 -0.48663,-5.137 -23.33635,1.35822 -11.6817,6.28436 0.29872,-5.62183 z"
|
||||
sodipodi:nodetypes="cccccccccccccccccccc"
|
||||
inkscape:export-filename="/run/media/bogdan/WORK/Work2021/Manjaro2021/Wallpapers_renew/mountain.png"
|
||||
inkscape:export-xdpi="95.990692"
|
||||
inkscape:export-ydpi="95.990692" /></g></svg>
|
||||
|
After Width: | Height: | Size: 7.2 KiB |
@@ -0,0 +1,40 @@
|
||||
---
|
||||
componentName: euri
|
||||
|
||||
welcomeStyleCalamares: false
|
||||
welcomeExpandingLogo: true
|
||||
|
||||
windowExpanding: normal
|
||||
windowSize: 920px,630px
|
||||
windowPlacement: center
|
||||
|
||||
sidebar: qml,top
|
||||
navigation: qml,bottom
|
||||
|
||||
strings:
|
||||
productName: "Euri Linux"
|
||||
shortProductName: "Euri Linux"
|
||||
version: "2026.08.17 Arranxo"
|
||||
shortVersion: "2026.08.17"
|
||||
versionedName: "Euri Linux 2026.08.17 Arranxo"
|
||||
shortVersionedName: "Euri Linux 2026.08.17"
|
||||
bootloaderEntryName: "Euri Linux"
|
||||
productUrl: "https://github.com/Euri-Linux"
|
||||
supportUrl: "https://github.com/Euri-Linux"
|
||||
knownIssuesUrl: "https://github.com/Euri-Linux/euri-iso/issues"
|
||||
releaseNotesUrl: "https://github.com/Euri-Linux"
|
||||
donateUrl: ""
|
||||
|
||||
images:
|
||||
productIcon: "euri-icon.png"
|
||||
productLogo: "euri-icon.png"
|
||||
productWelcome: "euri-logo.png"
|
||||
|
||||
style:
|
||||
SidebarBackground: "#20252B"
|
||||
SidebarText: "#C8D6E5"
|
||||
SidebarTextCurrent: "#FFFFFF"
|
||||
SidebarBackgroundCurrent: "#4A9EFF"
|
||||
|
||||
slideshow: "show.qml"
|
||||
slideshowAPI: 2
|
||||
@@ -0,0 +1,123 @@
|
||||
import io.calamares.ui 1.0
|
||||
import io.calamares.core 1.0
|
||||
|
||||
import QtQuick 2.15
|
||||
import QtQuick.Layouts 1.15
|
||||
import QtQuick.Controls 2.15
|
||||
import Qt5Compat.GraphicalEffects
|
||||
|
||||
Rectangle {
|
||||
id: bottomBar
|
||||
color: "#20252B"
|
||||
height: 68
|
||||
width: parent ? parent.width : 1024
|
||||
|
||||
layer.enabled: true
|
||||
layer.effect: DropShadow {
|
||||
transparentBorder: true
|
||||
radius: 4
|
||||
samples: 8
|
||||
color: Qt.rgba(0, 0, 0, 0.4)
|
||||
}
|
||||
|
||||
RowLayout {
|
||||
anchors.fill: parent
|
||||
anchors.leftMargin: 12
|
||||
anchors.rightMargin: 20
|
||||
spacing: 8
|
||||
|
||||
Button {
|
||||
id: backButton
|
||||
text: qsTr("Back")
|
||||
flat: true
|
||||
enabled: ViewManager.backEnabled
|
||||
implicitHeight: 42
|
||||
font {
|
||||
family: "Roboto"
|
||||
weight: Font.Medium
|
||||
pixelSize: 14
|
||||
}
|
||||
contentItem: Text {
|
||||
text: "← " + parent.text
|
||||
font: parent.font
|
||||
color: parent.enabled ? "#E3E2E6" : Qt.rgba(0.89, 0.89, 0.90, 0.35)
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
leftPadding: 16
|
||||
rightPadding: 16
|
||||
}
|
||||
background: Rectangle {
|
||||
color: parent.hovered && parent.enabled
|
||||
? Qt.rgba(0.89, 0.89, 0.90, 0.06)
|
||||
: "transparent"
|
||||
radius: 21
|
||||
Behavior on color { ColorAnimation { duration: 120 } }
|
||||
}
|
||||
onClicked: ViewManager.back()
|
||||
}
|
||||
|
||||
Item { Layout.fillWidth: true }
|
||||
|
||||
Button {
|
||||
id: cancelButton
|
||||
text: qsTr("Cancel")
|
||||
flat: true
|
||||
enabled: ViewManager.quitEnabled
|
||||
implicitHeight: 42
|
||||
font {
|
||||
family: "Roboto"
|
||||
weight: Font.Medium
|
||||
pixelSize: 14
|
||||
}
|
||||
contentItem: Text {
|
||||
text: parent.text
|
||||
font: parent.font
|
||||
color: parent.enabled ? "#FFB4AB" : Qt.rgba(1.0, 0.71, 0.67, 0.35)
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
leftPadding: 14
|
||||
rightPadding: 14
|
||||
}
|
||||
background: Rectangle {
|
||||
color: parent.hovered && parent.enabled
|
||||
? Qt.rgba(1.0, 0.71, 0.67, 0.07)
|
||||
: "transparent"
|
||||
radius: 21
|
||||
Behavior on color { ColorAnimation { duration: 120 } }
|
||||
}
|
||||
onClicked: ViewManager.quit()
|
||||
}
|
||||
|
||||
Button {
|
||||
id: nextButton
|
||||
enabled: true
|
||||
implicitWidth: 120
|
||||
implicitHeight: 42
|
||||
font {
|
||||
family: "Roboto"
|
||||
weight: Font.Medium
|
||||
pixelSize: 14
|
||||
}
|
||||
text: qsTr(ViewManager.nextEnabled ? "Next" : "Done")
|
||||
contentItem: Text {
|
||||
text: parent.text + " →"
|
||||
font: parent.font
|
||||
color: "#FFFFFF"
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
}
|
||||
background: Rectangle {
|
||||
color: parent.hovered ? "#3B8BDE" : "#4A9EFF"
|
||||
radius: 21
|
||||
Behavior on color { ColorAnimation { duration: 120 } }
|
||||
}
|
||||
onClicked: {
|
||||
if (ViewManager.nextEnabled) {
|
||||
ViewManager.next()
|
||||
} else {
|
||||
ViewManager.quit()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,162 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Euri Linux Calamares Installer Launcher
|
||||
|
||||
GUIDIE() {
|
||||
echo "calamares-next: $1" | sed -e 's|<tt>||g' -e 's|</tt>||g'
|
||||
|
||||
local prog=yad
|
||||
command -v yad &>/dev/null || prog=zenity
|
||||
|
||||
local cmd=(
|
||||
"$prog" --form --title="Error detected"
|
||||
--text="<b>calamares-next:</b>\n$1\n"
|
||||
--image=dialog-error
|
||||
--button=yad-quit:1
|
||||
)
|
||||
"${cmd[@]}"
|
||||
exit 1
|
||||
}
|
||||
|
||||
FollowFile() {
|
||||
local tailfile="$1"
|
||||
local term_title="$2"
|
||||
local xpos="$3"
|
||||
local ypos="$4"
|
||||
|
||||
case "$CurrentDesktop" in
|
||||
xfce) xfce4-terminal -T "$term_title" --geometry="120x20+$xpos+$ypos" -x tail -f "$tailfile" & ;;
|
||||
kde) setsid konsole -e tail -f "$tailfile" &> /dev/null ;;
|
||||
esac
|
||||
}
|
||||
|
||||
CatchChrootedPacmanLog() {
|
||||
local pacmanlog=""
|
||||
local pacmanlog_copy="$HOME/pacman-install.log"
|
||||
|
||||
while true ; do
|
||||
sleep 2
|
||||
pacmanlog="$(/usr/bin/ls -1 /tmp/calamares-root-*/var/log/pacman.log 2>/dev/null | /usr/bin/tail -n 1)"
|
||||
if [ -n "$pacmanlog" ] ; then
|
||||
/usr/bin/cp "$pacmanlog" "$pacmanlog_copy"
|
||||
break
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
LogHeader() {
|
||||
local calamares_version date
|
||||
calamares_version="$(pacman -Q calamares 2>/dev/null | awk '{print $NF}')"
|
||||
date=$(date -u "+%x %X")
|
||||
|
||||
cat <<EOF > $log
|
||||
########## $log by calamares-next
|
||||
########## Started (UTC): $date
|
||||
########## Install mode: $mode
|
||||
########## Calamares version: $calamares_version
|
||||
EOF
|
||||
}
|
||||
|
||||
InstallLog_Start() {
|
||||
LogHeader
|
||||
|
||||
if [ "$ShowInstallLog" = "TRUE" ] ; then
|
||||
FollowFile "$log" "Install log" 20 20
|
||||
fi
|
||||
}
|
||||
|
||||
Calamares_Start() {
|
||||
if [ "$EUID" = 0 ]; then
|
||||
calamares -D8 >> $log &
|
||||
return
|
||||
fi
|
||||
|
||||
local kdesu=/usr/lib/kf6/kdesu
|
||||
[ -x $kdesu ] || kdesu=kdesu
|
||||
|
||||
case "$CurrentDesktop" in
|
||||
kde) $kdesu -t -c "calamares -D8" >> $log & ;;
|
||||
*) pkexec calamares -D8 >> $log & ;;
|
||||
esac
|
||||
}
|
||||
|
||||
AskMode() {
|
||||
local ICO="/usr/share/calamares/branding/euri/euri-icon.png"
|
||||
[ -f "$ICO" ] || ICO="system-software-install"
|
||||
|
||||
yad --info \
|
||||
--title="Notice" \
|
||||
--image=dialog-information \
|
||||
--borders=20 \
|
||||
--width=500 \
|
||||
--text="The so-called \"Offline Install\" has been removed.\n\nIt was never truly offline — all DE packages were\ndownloaded from the internet regardless. The rootfs\nonly contained live session essentials, so there was\nnothing meaningful to unpack.\n\nAll packages are now installed online via basestrap." \
|
||||
--button="Continue":0
|
||||
|
||||
yad --form \
|
||||
--title="Euri Linux Installer" \
|
||||
--image="$ICO" \
|
||||
--borders=20 \
|
||||
--height=200 --width=480 \
|
||||
--buttons-layout=spread \
|
||||
--field=" ":LBL "" \
|
||||
--field="<b>Online Install</b>":LBL "" \
|
||||
--field="Full desktop selection from the internet.":LBL "" \
|
||||
--field="Choose your desktop environment, customize packages,":LBL "" \
|
||||
--field="get the latest updates.":LBL "" \
|
||||
--field=" ":LBL "" \
|
||||
--button="Install":0
|
||||
}
|
||||
|
||||
InstallWithLogs() {
|
||||
InstallLog_Start
|
||||
Calamares_Start
|
||||
|
||||
if [ "$ShowPacmanLog" = "TRUE" ] ; then
|
||||
CatchChrootedPacmanLog
|
||||
else
|
||||
sleep 5
|
||||
fi
|
||||
}
|
||||
|
||||
SetConfig() {
|
||||
sudo rm -f "/etc/calamares/settings.conf"
|
||||
sudo cp "/etc/calamares-online/settings.conf" "/etc/calamares/settings.conf"
|
||||
PreLog "Using online settings"
|
||||
}
|
||||
|
||||
PreLog() {
|
||||
echo "==> $1" >> "$prelogfile"
|
||||
}
|
||||
|
||||
Main() {
|
||||
progname="${0##*/}"
|
||||
|
||||
[ -x /usr/bin/calamares ] || GUIDIE "<tt>/usr/bin/calamares</tt> is needed for installing Euri Linux"
|
||||
|
||||
local CurrentDesktop=""
|
||||
if [ "$XDG_CURRENT_DESKTOP" ]; then
|
||||
CurrentDesktop=$(echo "$XDG_CURRENT_DESKTOP" | tr '[:upper:]' '[:lower:]')
|
||||
elif [ "$DESKTOP_SESSION" ]; then
|
||||
CurrentDesktop=$(echo "$DESKTOP_SESSION" | tr '[:upper:]' '[:lower:]')
|
||||
fi
|
||||
|
||||
local ShowInstallLog="FALSE"
|
||||
local ShowPacmanLog="TRUE"
|
||||
local Home=/home/euri
|
||||
local log=$Home/euri-install.log
|
||||
local workdir=""
|
||||
local prelogfile=""
|
||||
|
||||
workdir="$Home/work.$progname.xyz"
|
||||
mkdir -p "$workdir"
|
||||
|
||||
prelogfile="$workdir/preliminary.log"
|
||||
rm -f "$prelogfile"
|
||||
|
||||
AskMode
|
||||
mode=online
|
||||
SetConfig
|
||||
InstallWithLogs
|
||||
}
|
||||
|
||||
Main "$@"
|
||||
@@ -0,0 +1,90 @@
|
||||
import io.calamares.ui 1.0
|
||||
import io.calamares.core 1.0
|
||||
|
||||
import QtQuick 2.15
|
||||
import QtQuick.Layouts 1.15
|
||||
import QtQuick.Controls 2.15
|
||||
import Qt5Compat.GraphicalEffects
|
||||
|
||||
Rectangle {
|
||||
id: topBar
|
||||
color: "#20252B"
|
||||
height: 64
|
||||
width: parent ? parent.width : 1024
|
||||
|
||||
layer.enabled: true
|
||||
layer.effect: DropShadow {
|
||||
transparentBorder: true
|
||||
radius: 4
|
||||
samples: 8
|
||||
color: Qt.rgba(0, 0, 0, 0.4)
|
||||
}
|
||||
|
||||
RowLayout {
|
||||
anchors.fill: parent
|
||||
anchors.leftMargin: 20
|
||||
anchors.rightMargin: 20
|
||||
spacing: 14
|
||||
|
||||
Image {
|
||||
id: logo
|
||||
sourceSize.width: 34
|
||||
sourceSize.height: 34
|
||||
fillMode: Image.PreserveAspectFit
|
||||
source: Branding.imagePath(Branding.ProductLogo)
|
||||
Layout.alignment: Qt.AlignVCenter
|
||||
}
|
||||
|
||||
Text {
|
||||
text: "Euri Linux"
|
||||
color: "#E3E2E6"
|
||||
font {
|
||||
family: "Roboto"
|
||||
weight: Font.Medium
|
||||
pixelSize: 17
|
||||
letterSpacing: 0.3
|
||||
}
|
||||
Layout.alignment: Qt.AlignVCenter
|
||||
}
|
||||
|
||||
Item { Layout.fillWidth: true }
|
||||
|
||||
Row {
|
||||
spacing: 8
|
||||
Layout.alignment: Qt.AlignVCenter
|
||||
|
||||
Repeater {
|
||||
id: dotRepeater
|
||||
model: ViewManager
|
||||
|
||||
Rectangle {
|
||||
width: index === ViewManager.currentStepIndex ? 10 : 7
|
||||
height: 7
|
||||
radius: 3.5
|
||||
color: index === ViewManager.currentStepIndex
|
||||
? "#4A9EFF" : "#8E9099"
|
||||
opacity: index === ViewManager.currentStepIndex ? 1 : 0.35
|
||||
Behavior on width { NumberAnimation { duration: 200 } }
|
||||
Behavior on color { ColorAnimation { duration: 200 } }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
anchors {
|
||||
bottom: parent.bottom
|
||||
left: parent.left
|
||||
right: parent.right
|
||||
}
|
||||
height: 3
|
||||
color: Qt.rgba(0.56, 0.57, 0.60, 0.2)
|
||||
|
||||
Rectangle {
|
||||
height: parent.height
|
||||
width: parent.width * ((ViewManager.currentStepIndex + 1) / Math.max(dotRepeater.count, 1))
|
||||
color: "#4A9EFF"
|
||||
Behavior on width { NumberAnimation { duration: 400; easing.type: Easing.OutCubic } }
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,200 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="331.13705"
|
||||
height="323.99829"
|
||||
viewBox="0 0 331.13706 323.9983"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
||||
sodipodi:docname="commet.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#8E9099"
|
||||
bordercolor="#6a6b72"
|
||||
borderopacity="1"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.49497475"
|
||||
inkscape:cx="364.66507"
|
||||
inkscape:cy="177.78685"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1295"
|
||||
inkscape:window-height="1047"
|
||||
inkscape:window-x="621"
|
||||
inkscape:window-y="3"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
units="px"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:showpageshadow="0"
|
||||
inkscape:deskcolor="#8E9099" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-431.57434,-620.85803)">
|
||||
<path
|
||||
d="m 628.10824,737.56939 a 14.553263,14.553263 0 1 1 -19.6346,-21.44806 l 17.4293,-15.07994 -1.3219,12.2555 27.2135,-16.78564 -16.2414,23.8439 8.8083,2.29153 z"
|
||||
id="path97219"
|
||||
style="display:inline;fill:#6db8ff;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="M 539.9357,788.1585 A 14.553263,14.553263 0 1 1 520.301,766.71082 l 17.4293,-15.07956 -1.3218,12.25512 25.8219,-14.16643 -14.8499,21.22469 8.8083,2.29153 z"
|
||||
id="path97221"
|
||||
style="display:inline;fill:#6db8ff;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 561.0519,870.18408 a 28.806974,28.806974 0 0 1 -39.5437,-41.9006 l 31.8363,-29.18476 -2.4443,12.22111 27.2629,-21.00889 -1.8803,14.61619 48.7985,-34.25688 -44.286,58.04258 18.0359,1.53487 z"
|
||||
id="path97223"
|
||||
style="display:inline;fill:#6db8ff;fill-opacity:1;stroke-width:0.327349" />
|
||||
<circle
|
||||
cx="541.28003"
|
||||
cy="849.23401"
|
||||
r="18.331522"
|
||||
id="circle97227"
|
||||
style="display:inline;fill:#4A9EFF;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 558.8718,854.40266 a 18.292567,18.292567 0 0 1 -4.7564,7.91849 5.2375775,5.2375775 0 1 1 4.7564,-7.91849 z"
|
||||
id="path97229"
|
||||
style="display:inline;fill:#4A9EFF;fill-opacity:1;stroke-width:0.327349" />
|
||||
<circle
|
||||
cx="536.04248"
|
||||
cy="851.85272"
|
||||
r="5.2375774"
|
||||
id="circle97231"
|
||||
style="display:inline;fill:#3a7abd;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 558.8718,854.40266 a 18.292567,18.292567 0 0 1 -4.7564,7.91849 5.2375775,5.2375775 0 1 1 4.7564,-7.91849 z"
|
||||
id="path97233"
|
||||
style="display:inline;fill:#3a7abd;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 538.6613,849.23378 a 2.6187887,2.6187887 0 0 1 -1.8518,-4.4708 l 5.2376,-5.2373 a 2.6188562,2.6188562 0 0 1 3.7036,3.70356 l -5.2376,5.23767 a 2.6102776,2.6102776 0 0 1 -1.8518,0.76687 z"
|
||||
id="path97235"
|
||||
style="display:inline;fill:#8ec8ff;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 556.9928,854.47145 a 2.6187887,2.6187887 0 0 1 -1.8518,-4.47081 l 15.7127,-15.71263 a 2.6188562,2.6188562 0 1 1 3.7036,3.70356 l -15.7127,15.71263 a 2.6102776,2.6102776 0 0 1 -1.8518,0.76725 z"
|
||||
id="path97237"
|
||||
style="display:inline;fill:#8ec8ff;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 541.2801,836.13998 a 2.6187887,2.6187887 0 0 1 -1.8518,-4.4708 l 15.7127,-15.71263 a 2.6188562,2.6188562 0 1 1 3.7036,3.70356 l -15.7127,15.71263 a 2.6102776,2.6102776 0 0 1 -1.8518,0.76724 z"
|
||||
id="path97239"
|
||||
style="display:inline;fill:#8ec8ff;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 599.7609,823.91359 a 2.6187887,2.6187887 0 0 1 -1.8849,-4.43603 l 16.7217,-17.34955 a 2.6187887,2.6187887 0 1 1 3.7707,3.63364 l -16.7216,17.34917 a 2.6102776,2.6102776 0 0 1 -1.8859,0.80277 z"
|
||||
id="path97241"
|
||||
style="display:inline;fill:#4A9EFF;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 587.3076,785.12619 a 2.6187887,2.6187887 0 0 1 -1.8165,-4.5052 l 9.5684,-9.21411 a 2.6189931,2.6189931 0 1 1 3.6336,3.77272 l -9.5687,9.21412 a 2.6096229,2.6096229 0 0 1 -1.8168,0.73247 z"
|
||||
id="path97243"
|
||||
style="display:inline;fill:#4A9EFF;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 563.0982,830.90231 a 2.6187887,2.6187887 0 0 1 -1.8518,-4.4708 l 9.6073,-9.60718 a 2.6188562,2.6188562 0 1 1 3.7036,3.70356 l -9.607,9.60718 a 2.6115871,2.6115871 0 0 1 -1.8521,0.76724 z"
|
||||
id="path97245"
|
||||
style="display:inline;fill:#8ec8ff;fill-opacity:1;stroke-width:0.327349" />
|
||||
<circle
|
||||
cx="529.64526"
|
||||
cy="777.86823"
|
||||
r="7.1980686"
|
||||
id="circle97247"
|
||||
style="display:inline;fill:#3a7abd;fill-opacity:1;stroke-width:0.327349" />
|
||||
<circle
|
||||
cx="617.79968"
|
||||
cy="727.27893"
|
||||
r="6.3973732"
|
||||
id="circle97249"
|
||||
style="display:inline;fill:#4A9EFF;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 646.03324,686.83717 a 2.6187887,2.6187887 0 0 1 -1.678,-4.63068 l 3.1426,-2.61883 a 2.6189565,2.6189565 0 0 1 3.3533,4.02368 l -3.1425,2.61884 a 2.6092956,2.6092956 0 0 1 -1.6754,0.60699 z"
|
||||
id="path97251"
|
||||
style="display:inline;fill:#4A9EFF;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 664.8885,702.5498 a 2.6187887,2.6187887 0 0 1 -1.678,-4.63068 l 3.1425,-2.61845 a 2.6189565,2.6189565 0 0 1 3.3534,4.02368 l -3.1426,2.61884 a 2.6092956,2.6092956 0 0 1 -1.6753,0.60661 z"
|
||||
id="path97253"
|
||||
style="display:inline;fill:#6db8ff;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 654.41334,713.02514 a 2.6187887,2.6187887 0 0 1 -1.678,-4.63068 l 3.1426,-2.61883 a 2.6189565,2.6189565 0 0 1 3.3533,4.02368 l -3.1425,2.61884 a 2.6092956,2.6092956 0 0 1 -1.6754,0.60699 z"
|
||||
id="path97255"
|
||||
style="display:inline;fill:#4A9EFF;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 633.46304,697.31251 a 2.6187887,2.6187887 0 0 1 -1.6777,-4.63068 l 5.2376,-4.3646 a 2.6187887,2.6187887 0 1 1 3.3527,4.02331 l -5.2375,4.36498 a 2.6076589,2.6076589 0 0 1 -1.6751,0.60699 z"
|
||||
id="path97257"
|
||||
style="display:inline;fill:#6db8ff;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 670.126,681.5995 a 2.6187887,2.6187887 0 0 1 -1.8518,-4.47042 l 2.6188,-2.61884 a 2.6188619,2.6188619 0 0 1 3.7037,3.70356 l -2.6188,2.61883 a 2.6102776,2.6102776 0 0 1 -1.8519,0.76687 z"
|
||||
id="path97259"
|
||||
style="display:inline;fill:#6db8ff;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 638.1753,786.38288 a 2.6187887,2.6187887 0 0 1 -1.8519,-4.4708 l 2.6188,-2.61884 a 2.6189962,2.6189962 0 0 1 3.7037,3.70394 l -2.6188,2.61883 a 2.6102776,2.6102776 0 0 1 -1.8518,0.76687 z"
|
||||
id="path97261"
|
||||
style="display:inline;fill:#4A9EFF;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 609.3686,765.43258 a 2.6187887,2.6187887 0 0 1 -1.8518,-4.4708 l 2.6187,-2.61884 a 2.6189962,2.6189962 0 1 1 3.7037,3.70394 l -2.6188,2.61883 a 2.6102776,2.6102776 0 0 1 -1.8518,0.76687 z"
|
||||
id="path97263"
|
||||
style="display:inline;fill:#4A9EFF;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 659.65094,692.07484 a 2.6187887,2.6187887 0 0 1 -1.8518,-4.4708 l 5.23756,-5.2373 a 2.6188562,2.6188562 0 0 1 3.7036,3.70356 l -5.2376,5.23767 a 2.6102776,2.6102776 0 0 1 -1.85176,0.76687 z"
|
||||
id="path97265"
|
||||
style="display:inline;fill:#4A9EFF;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 625.0813,799.47668 a 2.6187887,2.6187887 0 0 1 -1.8518,-4.47043 l 5.2376,-5.23767 a 2.6188562,2.6188562 0 0 1 3.7036,3.70356 l -5.2376,5.23767 a 2.6102776,2.6102776 0 0 1 -1.8518,0.76687 z"
|
||||
id="path97267"
|
||||
style="display:inline;fill:#6db8ff;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 577.9431,754.95724 a 2.6187887,2.6187887 0 0 1 -1.8518,-4.47042 l 2.6188,-2.61884 a 2.6188562,2.6188562 0 0 1 3.7036,3.70356 l -2.6188,2.61884 a 2.6102776,2.6102776 0 0 1 -1.8518,0.76686 z"
|
||||
id="path97269"
|
||||
style="display:inline;fill:#4A9EFF;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 564.8492,768.05142 a 2.6187887,2.6187887 0 0 1 -1.8518,-4.47081 l 5.2375,-5.23767 a 2.6189609,2.6189609 0 1 1 3.7036,3.70394 l -5.2375,5.23729 a 2.6102776,2.6102776 0 0 1 -1.8518,0.76725 z"
|
||||
id="path97271"
|
||||
style="display:inline;fill:#4A9EFF;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 582.309,734.00694 a 2.6187887,2.6187887 0 0 1 -1.7055,-4.60686 l 6.1106,-5.23767 a 2.6187887,2.6187887 0 1 1 3.4084,3.97644 l -6.1107,5.23767 a 2.6079862,2.6079862 0 0 1 -1.7028,0.63042 z"
|
||||
id="path97273"
|
||||
style="display:inline;fill:#4A9EFF;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 570.0868,744.48228 a 2.6187887,2.6187887 0 0 1 -1.7056,-4.60724 l 5.2376,-4.4897 a 2.6193578,2.6193578 0 0 1 3.4097,3.97719 l -5.2376,4.48933 a 2.6079862,2.6079862 0 0 1 -1.7041,0.63042 z"
|
||||
id="path97275"
|
||||
style="display:inline;fill:#6db8ff;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 555.8713,736.62578 a 2.6187887,2.6187887 0 0 1 -1.7251,-4.58986 l 8.9785,-7.85613 a 2.618876,2.618876 0 1 1 3.449,3.94167 l -8.9789,7.85651 a 2.6096229,2.6096229 0 0 1 -1.7235,0.64781 z"
|
||||
id="path97277"
|
||||
style="display:inline;fill:#4A9EFF;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 543.8989,747.10112 a 2.6187887,2.6187887 0 0 1 -1.7255,-4.58986 l 5.9862,-5.23767 a 2.618807,2.618807 0 0 1 3.4486,3.94205 l -5.9859,5.23767 a 2.6079862,2.6079862 0 0 1 -1.7234,0.64781 z"
|
||||
id="path97279"
|
||||
style="display:inline;fill:#4A9EFF;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 647.4873,752.33841 a 2.6187887,2.6187887 0 0 1 -1.7526,-4.56492 l 11.6389,-10.47533 a 2.6187887,2.6187887 0 1 1 3.5026,3.89291 l -11.6392,10.47496 a 2.6083136,2.6083136 0 0 1 -1.7497,0.67238 z"
|
||||
id="path97281"
|
||||
style="display:inline;fill:#6db8ff;fill-opacity:1;stroke-width:0.327349" />
|
||||
<path
|
||||
d="m 632.9377,765.43258 a 2.6187887,2.6187887 0 0 1 -1.753,-4.56529 l 5.8196,-5.23767 a 2.6187887,2.6187887 0 1 1 3.5027,3.89291 l -5.8193,5.23767 a 2.6096229,2.6096229 0 0 1 -1.75,0.67238 z"
|
||||
id="path97283"
|
||||
style="display:inline;fill:#4A9EFF;fill-opacity:1;stroke-width:0.327349" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 11 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<path d="m2 4h18v14h-18z" fill="#4A9EFF" transform="translate(0,2)"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 139 B |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 75 KiB |
@@ -0,0 +1,5 @@
|
||||
# SPDX-FileCopyrightText: no
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
---
|
||||
kernel: linux
|
||||
be_unsafe: false
|
||||
@@ -0,0 +1,5 @@
|
||||
# SPDX-FileCopyrightText: no
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
---
|
||||
useSystemdHook: false
|
||||
source: "/etc/mkinitcpio.conf"
|
||||
|
After Width: | Height: | Size: 329 KiB |
|
After Width: | Height: | Size: 389 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 32 KiB |
@@ -0,0 +1,7 @@
|
||||
---
|
||||
groupsUrl:
|
||||
- file:///etc/calamares/modules/netinstall.yaml
|
||||
required: true
|
||||
label:
|
||||
sidebar: "Packages"
|
||||
title: "Packages (select your desktop environment and additional packages)"
|
||||
@@ -0,0 +1,102 @@
|
||||
- name: "Default"
|
||||
description: "Default packages"
|
||||
hidden: false
|
||||
selected: true
|
||||
critical: true
|
||||
immutable: true
|
||||
packages:
|
||||
- linux
|
||||
- linux-headers
|
||||
- grub
|
||||
- efibootmgr
|
||||
- sudo
|
||||
- euri-release
|
||||
- euri-keyring
|
||||
- euri-wallpapers
|
||||
- euri-grub-theme
|
||||
- falkon
|
||||
- mesa
|
||||
- mesa-utils
|
||||
- vulkan-nouveau
|
||||
- networkmanager
|
||||
- network-manager-applet
|
||||
- pipewire
|
||||
- pipewire-alsa
|
||||
- pipewire-pulse
|
||||
- wireplumber
|
||||
- btrfs-progs
|
||||
- xfsprogs
|
||||
- f2fs-tools
|
||||
- snapper
|
||||
- zsh
|
||||
|
||||
- name: "Kernel"
|
||||
description: "Kernel and modules"
|
||||
selected: false
|
||||
packages:
|
||||
- acpi_call
|
||||
- bbswitch
|
||||
- broadcom-wl
|
||||
- tp_smapi
|
||||
- linux-lts
|
||||
- linux-lts-headers
|
||||
|
||||
- name: "Firmware"
|
||||
description: "Firmware"
|
||||
selected: false
|
||||
packages:
|
||||
- b43-fwcutter
|
||||
- linux-firmware
|
||||
- linux-firmware-bnx2x
|
||||
- linux-firmware-liquidio
|
||||
- linux-firmware-marvell
|
||||
- linux-firmware-mellanox
|
||||
- linux-firmware-nfp
|
||||
- linux-firmware-qcom
|
||||
- linux-firmware-qlogic
|
||||
- linux-firmware-whence
|
||||
- sof-firmware
|
||||
- alsa-firmware
|
||||
- intel-ucode
|
||||
- amd-ucode
|
||||
|
||||
- name: "Init Services"
|
||||
description: "Essential dinit services"
|
||||
selected: true
|
||||
critical: true
|
||||
immutable: true
|
||||
packages:
|
||||
- dinit
|
||||
- dbus-dinit
|
||||
- networkmanager-dinit
|
||||
- elogind-dinit
|
||||
- cups-dinit
|
||||
- avahi-dinit
|
||||
- bluez-dinit
|
||||
- cronie-dinit
|
||||
- openssh-dinit
|
||||
- alsa-utils-dinit
|
||||
- acpid-dinit
|
||||
- dhcpcd-dinit
|
||||
- syslog-ng-dinit
|
||||
- power-profiles-daemon-dinit
|
||||
- ntp-dinit
|
||||
|
||||
- name: "Utilities"
|
||||
description: "System Utilities"
|
||||
selected: true
|
||||
packages:
|
||||
- euri-lsb-release
|
||||
- nano
|
||||
- vi
|
||||
|
||||
- name: "Devel"
|
||||
description: "Development tools"
|
||||
selected: false
|
||||
packages:
|
||||
- base-devel
|
||||
- artools-base
|
||||
- artools-iso
|
||||
- artools-pkg
|
||||
|
||||
|
||||
@@ -0,0 +1,55 @@
|
||||
---
|
||||
mode: required
|
||||
method: legacy
|
||||
labels:
|
||||
step: "Desktop Environment"
|
||||
items:
|
||||
- id: ""
|
||||
name: "No Desktop"
|
||||
description: "Install without a desktop environment — not recommended. You'll only get a TTY; screen recording won't work without a capture card."
|
||||
- id: plasma
|
||||
packages: [ plasma ]
|
||||
name: "Plasma"
|
||||
description: "KDE Plasma Desktop — modern, feature-rich, highly customizable"
|
||||
- id: xfce
|
||||
packages: [ xfce4, xfce4-goodies ]
|
||||
name: "Xfce"
|
||||
description: "Xfce — lightweight, classic desktop"
|
||||
- id: cinnamon
|
||||
packages:
|
||||
- cinnamon
|
||||
- cinnamon-control-center
|
||||
- cinnamon-desktop
|
||||
- cinnamon-menus
|
||||
- cinnamon-screensaver
|
||||
- cinnamon-session
|
||||
- cinnamon-settings-daemon
|
||||
- cinnamon-translations
|
||||
name: "Cinnamon"
|
||||
description: "Cinnamon — traditional desktop with modern conventions"
|
||||
- id: mate
|
||||
packages: [ mate, mate-extra ]
|
||||
name: "MATE"
|
||||
description: "MATE — continuation of GNOME 2"
|
||||
- id: lxqt
|
||||
packages: [ lxqt ]
|
||||
name: "LXQt"
|
||||
description: "LXQt — lightweight Qt desktop"
|
||||
- id: i3
|
||||
packages: [ i3 ]
|
||||
name: "i3"
|
||||
description: "i3 — tiling window manager"
|
||||
- id: sway
|
||||
packages:
|
||||
- sway
|
||||
- swaybg
|
||||
- swayidle
|
||||
- swaylock
|
||||
name: "Sway"
|
||||
description: "Sway — i3-compatible Wayland compositor"
|
||||
- id: hyprland
|
||||
packages:
|
||||
- hyprland
|
||||
- xdg-desktop-portal-hyprland
|
||||
name: "Hyprland"
|
||||
description: "Hyprland — dynamic tiling Wayland compositor"
|
||||
@@ -0,0 +1,161 @@
|
||||
---
|
||||
mode: required
|
||||
method: netinstall-add
|
||||
labels:
|
||||
step: "Desktop Environment"
|
||||
default: Plasma
|
||||
items:
|
||||
- id: Plasma
|
||||
name: "KDE Plasma"
|
||||
description: "Full-featured modern desktop. The default Euri Linux experience."
|
||||
screenshot: ""
|
||||
netinstall:
|
||||
name: "KDE Plasma"
|
||||
selected: true
|
||||
critical: false
|
||||
packages:
|
||||
- plasma
|
||||
- ark
|
||||
- dolphin
|
||||
- ffmpegthumbs
|
||||
- gwenview
|
||||
- kate
|
||||
- keditbookmarks
|
||||
- kfind
|
||||
- kgpg
|
||||
- kio-admin
|
||||
- konsole
|
||||
- konversation
|
||||
- kwalletmanager
|
||||
- okular
|
||||
- partitionmanager
|
||||
- euri-desktop-settings
|
||||
- euri-layan-theme
|
||||
- tela-circle-icon-theme-git
|
||||
- cava
|
||||
- python-websockets
|
||||
- qt6-websockets
|
||||
- btop
|
||||
- imagemagick
|
||||
- fastfetch
|
||||
- noto-fonts-emoji
|
||||
- adw-gtk-theme
|
||||
- ttf-hack-nerd
|
||||
- ttf-fira-code
|
||||
- ttf-terminus-nerd
|
||||
- ttf-meslo-nerd
|
||||
- kwin-zones
|
||||
- oh-my-posh-bin
|
||||
- pacseek
|
||||
- id: PlasmaMinimal
|
||||
name: "KDE Plasma (Minimal)"
|
||||
description: "Stock Plasma on Wayland — kitty, pcmanfm-qt, featherpad, grim. No branding. For low-end hardware."
|
||||
screenshot: ""
|
||||
netinstall:
|
||||
name: "KDE Plasma (Minimal)"
|
||||
selected: true
|
||||
critical: false
|
||||
packages:
|
||||
- plasma-meta
|
||||
- kitty
|
||||
- pcmanfm-qt
|
||||
- featherpad
|
||||
- grim
|
||||
- slurp
|
||||
- id: Xfce
|
||||
name: "Xfce"
|
||||
description: "Lightweight traditional desktop. Fast and low on resources."
|
||||
screenshot: ""
|
||||
netinstall:
|
||||
name: "Xfce"
|
||||
selected: true
|
||||
critical: false
|
||||
packages:
|
||||
- xfce4
|
||||
- xfce4-goodies
|
||||
- id: Cinnamon
|
||||
name: "Cinnamon"
|
||||
description: "Traditional desktop with modern features (GNOME-based)"
|
||||
screenshot: ""
|
||||
netinstall:
|
||||
name: "Cinnamon"
|
||||
selected: true
|
||||
critical: false
|
||||
packages:
|
||||
- cinnamon
|
||||
- cinnamon-control-center
|
||||
- cinnamon-desktop
|
||||
- cinnamon-menus
|
||||
- cinnamon-screensaver
|
||||
- cinnamon-session
|
||||
- cinnamon-settings-daemon
|
||||
- cinnamon-translations
|
||||
- id: MATE
|
||||
name: "MATE"
|
||||
description: "Classic desktop — continuation of GNOME 2"
|
||||
screenshot: ""
|
||||
netinstall:
|
||||
name: "MATE"
|
||||
selected: true
|
||||
critical: false
|
||||
packages:
|
||||
- mate
|
||||
- mate-extra
|
||||
- id: LXQt
|
||||
name: "LXQt"
|
||||
description: "Lightweight Qt-based desktop"
|
||||
screenshot: ""
|
||||
netinstall:
|
||||
name: "LXQt"
|
||||
selected: true
|
||||
critical: false
|
||||
packages:
|
||||
- lxqt
|
||||
- id: i3
|
||||
name: "i3"
|
||||
description: "Minimal tiling window manager (keyboard-driven)"
|
||||
screenshot: ""
|
||||
netinstall:
|
||||
name: "i3"
|
||||
selected: true
|
||||
critical: false
|
||||
packages:
|
||||
- i3
|
||||
- euri-i3-config
|
||||
- id: Sway
|
||||
name: "Sway"
|
||||
description: "i3-compatible Wayland compositor"
|
||||
screenshot: ""
|
||||
netinstall:
|
||||
name: "Sway"
|
||||
selected: true
|
||||
critical: false
|
||||
packages:
|
||||
- sway
|
||||
- swaybg
|
||||
- swayidle
|
||||
- swaylock
|
||||
- euri-sway-config
|
||||
- id: Hyprland
|
||||
name: "Hyprland"
|
||||
description: "Dynamic tiling Wayland compositor with eye candy"
|
||||
screenshot: ""
|
||||
netinstall:
|
||||
name: "Hyprland"
|
||||
selected: true
|
||||
critical: false
|
||||
packages:
|
||||
- hyprland
|
||||
- xdg-desktop-portal-hyprland
|
||||
- euri-hyprland-config
|
||||
- id: COSMIC
|
||||
name: "COSMIC"
|
||||
description: "Modern Rust-based desktop. Select greetd as DM."
|
||||
screenshot: ""
|
||||
netinstall:
|
||||
name: "COSMIC"
|
||||
selected: true
|
||||
critical: false
|
||||
packages:
|
||||
- cosmic
|
||||
- cosmic-greeter-dinit
|
||||
@@ -0,0 +1,65 @@
|
||||
---
|
||||
mode: required
|
||||
method: netinstall-add
|
||||
labels:
|
||||
step: "Display Manager"
|
||||
default: SDDM
|
||||
items:
|
||||
- id: SDDM
|
||||
name: "SDDM"
|
||||
description: "QML-based display manager (KDE default)"
|
||||
screenshot: "sddm-screenshot.png"
|
||||
netinstall:
|
||||
name: "SDDM"
|
||||
selected: true
|
||||
critical: false
|
||||
packages:
|
||||
- sddm
|
||||
- sddm-dinit
|
||||
- pixie-sddm-git
|
||||
- id: LightDM
|
||||
name: "LightDM"
|
||||
description: "Cross-desktop display manager (GTK)"
|
||||
screenshot: "lightdm-screenshot.png"
|
||||
netinstall:
|
||||
name: "LightDM"
|
||||
selected: true
|
||||
critical: false
|
||||
packages:
|
||||
- lightdm
|
||||
- lightdm-dinit
|
||||
- lightdm-slick-greeter
|
||||
- euri-lightdm-config
|
||||
- id: LXDM
|
||||
name: "LXDM"
|
||||
description: "Lightweight display manager (LXDE)"
|
||||
screenshot: "lxdm-screenshot.png"
|
||||
netinstall:
|
||||
name: "LXDM"
|
||||
selected: true
|
||||
critical: false
|
||||
packages:
|
||||
- lxdm
|
||||
- lxdm-dinit
|
||||
- id: greetd
|
||||
name: "greetd"
|
||||
description: "Minimal display manager (recommended for COSMIC)"
|
||||
screenshot: "greetd-screenshot.png"
|
||||
netinstall:
|
||||
name: "greetd"
|
||||
selected: true
|
||||
critical: false
|
||||
packages:
|
||||
- greetd
|
||||
- greetd-dinit
|
||||
- id: LY
|
||||
name: "LY"
|
||||
description: "Minimal TUI display manager"
|
||||
screenshot: "ly-screenshot.png"
|
||||
netinstall:
|
||||
name: "LY"
|
||||
selected: true
|
||||
critical: false
|
||||
packages:
|
||||
- ly
|
||||
- ly-dinit
|
||||
@@ -0,0 +1,4 @@
|
||||
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
|
||||
<svg height="16" version="1.1" width="16" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m 6,3 5,5 -5,5 z" fill="#4A9EFF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 185 B |
@@ -0,0 +1,4 @@
|
||||
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
|
||||
<svg height="16" version="1.1" width="16" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m 10,3 -5,5 5,5 z" fill="#4A9EFF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 186 B |
@@ -0,0 +1,4 @@
|
||||
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
|
||||
<svg height="16" version="1.1" width="16" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m 8,2 -5,5 10,0 z" fill="#4A9EFF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 186 B |
@@ -0,0 +1,249 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="50.609062"
|
||||
height="246.19336"
|
||||
viewBox="0 0 50.609068 246.19337"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
||||
sodipodi:docname="rocket_smoke2.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs2">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient939">
|
||||
<stop
|
||||
style="stop-color:#eff0f1;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop935" />
|
||||
<stop
|
||||
style="stop-color:#eff0f1;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop937" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient939"
|
||||
id="linearGradient941"
|
||||
x1="188.87804"
|
||||
y1="716.58759"
|
||||
x2="188.87804"
|
||||
y2="855.77551"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#525252"
|
||||
bordercolor="#404040"
|
||||
borderopacity="1"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.49497475"
|
||||
inkscape:cx="374.76659"
|
||||
inkscape:cy="422.24376"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1914"
|
||||
inkscape:window-height="1047"
|
||||
inkscape:window-x="533"
|
||||
inkscape:window-y="183"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
units="px"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
height="2160px"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#525252" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-149.54261,-610.36914)">
|
||||
<path
|
||||
id="path250403"
|
||||
style="display:inline;fill:url(#linearGradient941);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.46489;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke"
|
||||
d="m 174.05576,714.57812 c -7.95027,0 -12.70931,39.06501 -15.53515,87.92774 l 6.625,-11.61328 5.03515,65.66992 10.09571,-79.48828 8.60156,12.38086 C 185.96244,746.78153 181.304,714.5918 174.05576,714.5918 Z" />
|
||||
<g
|
||||
id="g250475"
|
||||
transform="matrix(-0.13168343,0,0,0.13168343,404.83556,757.91908)"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:#1a1c1b;fill-opacity:1"
|
||||
d="m 1846.0893,-550.96782 c 0.078,3.94424 0.099,7.8998 0.111,11.86596 -0.011,6.81722 -0.1209,13.64504 -0.3642,20.42902 12.9267,17.16926 -24.5401,147.31085 -24.5401,147.31085 -2.011,6.38659 -4.1224,12.6954 -6.3647,18.91581 -0.1881,0.54165 -0.3974,1.06066 -0.5854,1.60231 26.5774,21.98515 55.6478,30.97769 71.2212,110.31141 0.3981,0.26516 1.4587,0.79549 1.4587,0.79549 1.3478,0.64064 2.8504,0.9949 4.4746,1.00551 4.8168,0 8.8721,-3.21521 10.1866,-7.62402 0,0 0.21,-0.78419 0.2319,-0.93904 5.1272,-20.55065 7.8892,-112.52112 7.8885,-135.23693 0,-68.19196 -24.8817,-128.9593 -63.7181,-168.43637 z"
|
||||
id="path250405"
|
||||
sodipodi:nodetypes="ccccccccccccc" />
|
||||
<path
|
||||
id="path250409"
|
||||
style="opacity:1;fill:#eff0f1;fill-opacity:1"
|
||||
d="m 1752.772,-1120.4892 c -44.0463,47.7284 -104.1176,101.2739 -136.0025,150.51654 -34.0677,49.69728 -62.4062,118.71236 -62.4062,210.93946 0,56.67085 35.0815,153.37542 65.9492,250.58593 -20.7749,35.77189 -33.0703,80.0034 -33.0703,127.91407 -7e-4,22.71581 2.7615,114.68567 7.8887,135.23632 0.022,0.15485 0.2304,0.93946 0.2304,0.93946 1.3145,4.40881 5.3707,7.625 10.1875,7.625 1.6242,-0.0106 8.9132,-0.89646 10.261,-1.5371 0,0 1.0609,-0.52976 1.459,-0.79492 11.9395,-60.82187 26.0274,-79.75628 46.6277,-95.44142 3.8365,17.81576 19.7188,30.88477 38.1797,30.88477 h 38.2011 z"
|
||||
sodipodi:nodetypes="ccsccccccccscc" />
|
||||
<g
|
||||
id="g250417"
|
||||
transform="rotate(-45,1722.222,787.87678)">
|
||||
<path
|
||||
d="m 2410.4087,18.99406 a 88.000921,88.000921 0 0 1 127.9237,120.88083 l -91.9962,94.5719 5.3193,-37.69998 -79.4767,68.83767 3.1807,-44.90544 -142.8421,113.0054 124.9235,-184.75996 -55.275,-1.52884 z"
|
||||
id="path250411"
|
||||
style="fill:#fbb540" />
|
||||
<path
|
||||
d="m 2443.6657,10.65886 a 69.979282,69.979282 0 0 1 101.7263,96.12574 l -73.1564,75.2046 4.23,-29.97943 -63.2008,54.74045 2.5294,-35.70929 -113.5896,89.86312 99.3405,-146.92312 -43.9553,-1.21575 z"
|
||||
id="path250413"
|
||||
style="fill:#ffcc00;fill-opacity:1;stroke-width:0.795211" />
|
||||
<path
|
||||
style="fill:#ffdd55;stroke-width:0.658127"
|
||||
d="m 2561.492,69.78156 c -1.5795,3.02738 -3.4222,5.98901 -5.3967,8.75311 -2.7641,3.88293 -5.7915,7.43682 -9.1479,10.793271 -15.466,15.465979 -59.3968,40.233089 -81.2138,39.873479 -0.06,-4.49525 0.3595,-8.93066 1.0188,-13.18616 -11.5078,6.59304 -24.8737,10.30915 -39.3184,10.06941 -0.1798,-14.44474 3.5363,-27.810589 10.0693,-39.31853 -4.2555,0.6593 -8.6908,1.07891 -13.186,0.95903 -0.3596,-26.4321 29.8342,-74.01598 51.5523,-89.482 2.7642,-1.97434 5.7258,-3.81711 8.7532,-5.39662 -0.066,0.3291 -0.1317,0.72391 -0.1975,1.05302 7.5027,0.98717 14.8737,2.96156 21.9815,5.92313043 4.6727,1.90858997 9.1479,4.21198997 13.4916,6.97615997 5.4624,3.4222296 10.5958,7.5025996 15.3343,12.2411296 4.7385,4.73854 8.7531,9.87194 12.1754,15.33436 2.7641,4.34367 5.1334,8.81892 7.0419,13.49158 2.9616,7.10779 4.936,14.4788 5.9231,21.98144 0.4607,0.0658 0.7898,3e-5 1.1189,-0.0658 z"
|
||||
id="path250415"
|
||||
sodipodi:nodetypes="ccsccccccccccscccc" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:#1a1c1b;fill-opacity:1"
|
||||
d="m 1662.96,-550.96924 c -0.078,3.94424 -0.099,7.8998 -0.111,11.86596 0.011,6.81722 0.1209,13.64504 0.3642,20.42902 -12.9267,17.16926 24.5401,147.31085 24.5401,147.31085 2.011,6.38659 4.1224,12.6954 6.3647,18.91581 0.1881,0.54165 0.3974,1.06066 0.5854,1.60231 -26.5774,21.98515 -55.6478,30.97769 -71.2212,110.31141 -0.3981,0.26516 -1.4587,0.79549 -1.4587,0.79549 -1.3478,0.64064 -2.8504,0.9949 -4.4746,1.00551 -4.8168,0 -8.8721,-3.21521 -10.1866,-7.62402 0,0 -0.21,-0.78419 -0.2319,-0.93904 -5.1272,-20.55065 -7.8892,-112.52112 -7.8885,-135.23693 0,-68.19196 24.8817,-128.9593 63.7181,-168.43637 z"
|
||||
id="path250419"
|
||||
sodipodi:nodetypes="ccccccccccccc" />
|
||||
<path
|
||||
style="fill:#ffdd55;stroke-width:0.658127"
|
||||
d="m 1807.3005,-314.23094 c 1.0238,3.25755 1.815,6.65473 2.3734,10.00536 0.7911,4.7002 1.1634,9.35386 1.1634,14.10059 0,21.8722 -8.5162,43.69785 -25.7347,60.35795 -3.5368,-3.4437 -6.6548,-7.21317 -9.447,-11.02916 -3.816,14.05404 -11.3084,27.31697 -22.7098,38.34614 -11.3549,-11.07571 -18.8473,-24.33863 -22.7099,-38.34614 -2.7922,3.81599 -5.9101,7.58546 -9.4934,10.98263 -20.8019,-20.24342 -28.9923,-48.16538 -24.5714,-74.45854 0.5585,-3.35064 1.3496,-6.74781 2.3734,-10.00537 0.1862,0.27922 0.4188,0.60497 0.605,0.8842 6.0032,-4.60713 12.6114,-8.42312 19.7315,-11.35494 4.6537,-1.95454 9.4469,-3.49024 14.4729,-4.60711 6.2824,-1.44264 12.7975,-2.18723 19.4988,-2.18723 6.7013,0 13.1699,0.79113 19.4523,2.23376 5.026,1.11688 9.8658,2.60604 14.5194,4.56058 7.1201,2.93182 13.7283,6.74781 19.7315,11.35494 0.3723,-0.27923 0.5585,-0.55845 0.7446,-0.83766 z"
|
||||
id="path250421" />
|
||||
<path
|
||||
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.658127"
|
||||
d="m 1786.964,-324.70168 c 6.0498,10.4242 9.3074,22.24449 9.3074,34.53015 0,13.49561 -3.9091,26.43278 -11.1223,37.55502 l -15.5898,-21.26722 -8.0042,29.22498 c -1.815,6.84088 -4.7468,13.30947 -8.6093,19.31269 -3.816,-5.95669 -6.7013,-12.47181 -8.6093,-19.31269 l -8.0043,-29.22498 -15.5897,21.26722 c -7.2132,-11.12224 -11.1223,-24.05941 -11.1223,-37.55502 0,-12.28566 3.2576,-24.10595 9.3073,-34.53015 4.6537,-1.95453 9.447,-3.49024 14.4729,-4.60712 6.2825,-1.44263 12.7976,-2.18722 19.4989,-2.18722 6.7012,0 13.1698,0.79113 19.4522,2.23376 5.1191,1.11687 9.9589,2.60605 14.6125,4.56058 z"
|
||||
id="path250423" />
|
||||
<path
|
||||
style="fill:#4A9EFF;fill-opacity:1;stroke-width:1.22212"
|
||||
d="m 1757.8035,-949.18846 c -3.0932,-1.86129 -6.9698,-1.86129 -10.063,0 -4.1821,2.51146 -111.3675,56.64763 -111.3675,198.5711 0,57.30534 22.0097,279.07118 39.4628,412.9313 2.5298,19.42073 19.191,34.06662 38.7352,34.06662 h 76.4021 c 19.5441,0 36.2053,-14.64589 38.7351,-34.06662 17.4531,-133.86012 39.4628,-355.62596 39.4628,-412.9313 0,-141.92347 -107.1854,-196.06086 -111.3675,-198.5711 z"
|
||||
id="path250425"
|
||||
sodipodi:nodetypes="ccscsscsc" />
|
||||
<path
|
||||
id="path250427"
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:7.55906;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke markers fill"
|
||||
d="m 1752.7723,-976.92188 v 673.30274 h 38.2012 c 19.5441,0 36.2045,-14.64568 38.7343,-34.06641 17.4531,-133.86012 39.4629,-355.6263 39.4629,-412.93164 0,-57.74221 -17.7429,-100.95157 -39.0722,-132.0664 -12.283,-19.09437 -26.1497,-37.37853 -41.5723,-54.51368 z" />
|
||||
<path
|
||||
style="fill:#4A9EFF;fill-opacity:1;stroke-width:0.802037"
|
||||
d="m 1779.5567,-616.10815 c -6.4509,6.45104 -15.0287,9.99501 -24.1384,9.99558 -9.1183,-0.009 -17.6966,-3.55362 -24.1476,-10.00465 -6.4511,-6.45105 -9.9956,-15.02938 -10.0047,-24.14761 0,-9.10916 3.5621,-17.70509 9.9956,-24.13855 6.451,-6.45104 15.0288,-9.995 24.1561,-10.01315 18.8314,0.009 34.1523,15.32938 34.1523,34.15226 -0.018,9.12675 -3.5621,17.70507 -9.9956,24.13854 -0.018,0.0175 -0.018,0.0175 -0.018,0.0175 z"
|
||||
id="path250429" />
|
||||
<g
|
||||
id="g250435"
|
||||
transform="matrix(1.2221209,0,0,1.2221209,1439.9078,-817.55053)"
|
||||
style="fill:#24282c;fill-opacity:1">
|
||||
<g
|
||||
id="g250433"
|
||||
style="fill:#24282c;fill-opacity:1">
|
||||
<path
|
||||
style="fill:#24282c;fill-opacity:1"
|
||||
d="m 256.001,451.35877 c -4.422,0 -8,-3.582 -8,-8 V 249.57205 c 0,-4.418 3.578,-8 8,-8 4.422,0 8,3.582 8,8 v 193.78672 c 0,4.418 -3.578,8 -8,8 z"
|
||||
id="path250431"
|
||||
sodipodi:nodetypes="sssssss" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke-width:0.802035"
|
||||
d="m 1762.1431,-674.93939 c -11.4043,0.009 -22.1359,4.44852 -30.1994,12.5119 -8.0463,8.04637 -12.4852,18.77693 -12.4943,30.18182 0.011,11.38673 4.4394,22.12695 12.4943,30.18183 8.064,8.06394 18.7951,12.48638 30.1909,12.5034 11.4038,-0.009 22.127,-4.45761 30.1728,-12.5034 8.0639,-8.06396 12.5124,-18.78603 12.521,-30.19033 5e-4,-23.53626 -19.1485,-42.68522 -42.6853,-42.68522 z m 25.6011,42.68522 c -0.011,7.07998 -2.8622,13.47772 -7.5059,18.12133 -4.6254,4.62548 -11.0413,7.49683 -18.1031,7.48775 -14.1429,0 -25.6097,-11.46669 -25.6097,-25.60966 -0.011,-7.0624 2.8709,-13.46921 7.4962,-18.09469 4.6437,-4.64361 11.0323,-7.50589 18.1129,-7.5144 14.1424,5.7e-4 25.6091,11.46727 25.6096,25.60967 z"
|
||||
id="path250437" />
|
||||
<path
|
||||
style="fill:#e6e6e6;fill-opacity:1;stroke-width:0.802035"
|
||||
d="m 1755.4268,-682.94948 c -11.4044,0.009 -22.1361,4.44853 -30.1994,12.51191 -8.0464,8.04637 -12.4853,18.77693 -12.4944,30.18182 0.011,11.38673 4.4395,22.12695 12.4944,30.18182 8.0639,8.06395 18.795,12.48639 30.1909,12.5034 11.4037,-0.009 22.1269,-4.4576 30.1727,-12.5034 8.0639,-8.06395 12.5125,-18.78602 12.521,-30.19032 6e-4,-23.53626 -19.1484,-42.68523 -42.6852,-42.68523 z m 25.6011,42.68523 c -0.011,7.07998 -2.8623,13.47771 -7.5059,18.12133 -4.6255,4.62548 -11.0414,7.49683 -18.1032,7.48775 -14.143,0 -25.6096,-11.46669 -25.6096,-25.60966 -0.011,-7.06241 2.8707,-13.46921 7.4962,-18.09469 4.6436,-4.64361 11.0323,-7.50589 18.1129,-7.5144 14.1424,5.7e-4 25.6091,11.46727 25.6096,25.60967 z"
|
||||
id="path250439" />
|
||||
<path
|
||||
style="fill:#4A9EFF;fill-opacity:1;stroke-width:1.38175"
|
||||
d="m 1795.5329,-776.35953 c -11.454,10.78389 -26.6678,16.72333 -42.8584,16.70911 -16.1745,9.4e-4 -31.4216,-5.93944 -42.8604,-16.70911 -11.4539,-10.78389 -17.7625,-25.1381 -17.7776,-40.38154 0,-15.22732 6.2934,-29.5673 17.7473,-40.35119 11.455,-10.78485 26.685,-16.7091 42.8907,-16.73946 33.4345,0.015 60.6379,25.62729 60.6379,57.09065 -0.016,15.27284 -6.3246,29.59669 -17.7795,40.38154 z"
|
||||
id="path250441" />
|
||||
<path
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke-width:1.38175"
|
||||
d="m 1706.6505,-853.77411 c -14.3177,13.48011 -22.1839,31.37331 -22.201,50.43924 -0.016,19.06307 7.8824,36.98851 22.2001,50.46863 14.3025,13.46588 33.3235,20.8871 53.5893,20.8871 20.2496,-0.015 39.2717,-7.40701 53.5893,-20.8871 14.3187,-13.48106 22.2011,-31.41976 22.2171,-50.48476 0,-39.34342 -34.0013,-71.35571 -75.7893,-71.35571 -20.2496,0.015 -39.2868,7.45156 -53.6055,20.9326 z m 110.8518,50.42311 c 0,14.92369 -6.4012,28.37408 -16.7842,38.14968 -10.3424,9.7374 -24.6678,15.80116 -40.4783,15.76298 -31.6258,0 -57.2636,-24.13816 -57.2625,-53.91266 -0.02,-14.86874 6.419,-28.35496 16.7615,-38.09234 10.383,-9.77562 24.6691,-15.80238 40.501,-15.8203 31.622,-9.4e-4 57.2613,24.13812 57.2625,53.91264 z"
|
||||
id="path250443"
|
||||
sodipodi:nodetypes="scscsccscsccscc" />
|
||||
<path
|
||||
style="fill:#f2f2f2;fill-opacity:1;stroke-width:1.45856"
|
||||
d="m 1696.0983,-869.96743 c -15.1136,14.22941 -23.417,33.11723 -23.4351,53.24295 -0.017,20.1227 8.3205,39.04455 23.4341,53.27397 15.0976,14.21439 35.176,22.04812 56.5681,22.04812 21.3752,-0.0158 41.4547,-7.81872 56.5682,-22.04812 15.1146,-14.23042 23.4351,-33.16625 23.4522,-53.29099 0,-41.53037 -35.8914,-75.32209 -80.0022,-75.32209 -21.3753,0.0158 -41.4707,7.86577 -56.5853,22.09616 z m 115.3426,53.22593 c 0,15.31768 -6.5704,29.12317 -17.2276,39.15686 -10.6155,9.99448 -25.319,16.21833 -41.5468,16.17914 -32.4607,0 -58.7756,-24.77541 -58.7742,-55.336 -0.02,-15.26129 6.5885,-29.10357 17.2039,-39.09802 10.6571,-10.0337 25.3203,-16.21958 41.5703,-16.23795 32.4569,-9.4e-4 58.7729,24.77537 58.7744,55.33597 z"
|
||||
id="path250445"
|
||||
sodipodi:nodetypes="scscsccscsccscc" />
|
||||
<path
|
||||
style="fill:#f2705b;fill-opacity:1;stroke-width:1.10803"
|
||||
d="m 1837.2865,-871.1305 h -169.0289 c 13.9742,-23.28887 30.1784,-45.42157 48.7612,-66.06774 l 35.7532,-39.72324 35.7533,39.72324 c 18.5084,20.56359 34.7869,42.77887 48.7612,66.06774 z"
|
||||
id="path250447" />
|
||||
<path
|
||||
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.658127"
|
||||
d="m 1786.964,-324.70168 c 6.0498,10.4242 9.3074,22.24449 9.3074,34.53015 0,13.49561 -3.9091,26.43278 -11.1223,37.55502 l -15.5898,-21.26722 -8.0042,29.22498 c -1.815,6.84088 -4.7468,13.30947 -8.6093,19.31269 -3.816,-5.95669 -6.7013,-12.47181 -8.6093,-19.31269 l -8.0043,-29.22498 -15.5897,21.26722 c -7.2132,-11.12224 -11.1223,-24.05941 -11.1223,-37.55502 0,-12.28566 3.2576,-24.10595 9.3073,-34.53015 4.6537,-1.95453 9.447,-3.49024 14.4729,-4.60712 6.2825,-1.44263 12.7976,-2.18722 19.4989,-2.18722 6.7012,0 13.1698,0.79113 19.4522,2.23376 5.1191,1.11687 9.9589,2.60605 14.6125,4.56058 z"
|
||||
id="path250449" />
|
||||
<path
|
||||
style="fill:#454948;fill-opacity:1;stroke-width:1.22212"
|
||||
d="m 1760.8084,-1076.1934 c -4.9405,-2.9729 -11.1323,-2.9729 -16.0728,0 -6.6798,4.0113 -177.8786,90.4788 -177.8786,317.16201 0,91.52932 91.5257,287.48521 108.9788,421.34533 2.5298,19.42073 19.191,34.06662 38.7352,34.06662 h 76.4021 c 19.5441,0 36.2053,-14.64589 38.7351,-34.06662 17.4531,-133.86012 108.9788,-329.81601 108.9788,-421.34533 0,-226.68321 -171.1988,-313.15261 -177.8786,-317.16201 z"
|
||||
id="path250451"
|
||||
sodipodi:nodetypes="ccscsscsc" />
|
||||
<path
|
||||
id="path250453"
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:7.55906;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke markers fill"
|
||||
d="m 1752.7725,-1120.4898 -2e-4,816.87066 h 38.2012 c 19.5441,0 36.2045,-14.64568 38.7343,-34.06641 17.4531,-133.86012 108.9787,-329.81625 108.9787,-421.34557 0,-92.2271 -28.3393,-161.24201 -62.407,-210.93929 -19.6186,-30.49789 -41.767,-59.70159 -66.4001,-87.07039 z"
|
||||
sodipodi:nodetypes="ccscscsc" />
|
||||
<path
|
||||
style="fill:#4A9EFF;fill-opacity:1;stroke-width:0.802037"
|
||||
d="m 1779.5567,-616.10815 c -6.4509,6.45104 -15.0287,9.99501 -24.1384,9.99558 -9.1183,-0.009 -17.6966,-3.55362 -24.1476,-10.00465 -6.4511,-6.45105 -9.9956,-15.02938 -10.0047,-24.14761 0,-9.10916 3.5621,-17.70509 9.9956,-24.13855 6.451,-6.45104 15.0288,-9.995 24.1561,-10.01315 18.8314,0.009 34.1523,15.32938 34.1523,34.15226 -0.018,9.12675 -3.5621,17.70507 -9.9956,24.13854 -0.018,0.0175 -0.018,0.0175 -0.018,0.0175 z"
|
||||
id="path250455" />
|
||||
<g
|
||||
id="g250461"
|
||||
transform="matrix(1.2221209,0,0,1.2221209,1439.9078,-817.55053)"
|
||||
style="fill:#1a1c1b;fill-opacity:1">
|
||||
<g
|
||||
id="g250459"
|
||||
style="fill:#1a1c1b;fill-opacity:1">
|
||||
<path
|
||||
style="fill:#1a1c1b;fill-opacity:1"
|
||||
d="m 256.001,451.35877 c -4.422,0 -8,-3.582 -8,-8 V 249.57205 c 0,-4.418 3.578,-8 8,-8 4.422,0 8,3.582 8,8 v 193.78672 c 0,4.418 -3.578,8 -8,8 z"
|
||||
id="path250457"
|
||||
sodipodi:nodetypes="sssssss" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke-width:0.802035"
|
||||
d="m 1762.1431,-674.93939 c -11.4043,0.009 -22.1359,4.44852 -30.1994,12.5119 -8.0463,8.04637 -12.4852,18.77693 -12.4943,30.18182 0.011,11.38673 4.4394,22.12695 12.4943,30.18183 8.064,8.06394 18.7951,12.48638 30.1909,12.5034 11.4038,-0.009 22.127,-4.45761 30.1728,-12.5034 8.0639,-8.06396 12.5124,-18.78603 12.521,-30.19033 5e-4,-23.53626 -19.1485,-42.68522 -42.6853,-42.68522 z m 25.6011,42.68522 c -0.011,7.07998 -2.8622,13.47772 -7.5059,18.12133 -4.6254,4.62548 -11.0413,7.49683 -18.1031,7.48775 -14.1429,0 -25.6097,-11.46669 -25.6097,-25.60966 -0.011,-7.0624 2.8709,-13.46921 7.4962,-18.09469 4.6437,-4.64361 11.0323,-7.50589 18.1129,-7.5144 14.1424,5.7e-4 25.6091,11.46727 25.6096,25.60967 z"
|
||||
id="path250463" />
|
||||
<path
|
||||
style="fill:#e6e6e6;fill-opacity:1;stroke-width:0.802035"
|
||||
d="m 1755.4268,-682.94948 c -11.4044,0.009 -22.1361,4.44853 -30.1994,12.51191 -8.0464,8.04637 -12.4853,18.77693 -12.4944,30.18182 0.011,11.38673 4.4395,22.12695 12.4944,30.18182 8.0639,8.06395 18.795,12.48639 30.1909,12.5034 11.4037,-0.009 22.1269,-4.4576 30.1727,-12.5034 8.0639,-8.06395 12.5125,-18.78602 12.521,-30.19032 6e-4,-23.53626 -19.1484,-42.68523 -42.6852,-42.68523 z m 25.6011,42.68523 c -0.011,7.07998 -2.8623,13.47771 -7.5059,18.12133 -4.6255,4.62548 -11.0414,7.49683 -18.1032,7.48775 -14.143,0 -25.6096,-11.46669 -25.6096,-25.60966 -0.011,-7.06241 2.8707,-13.46921 7.4962,-18.09469 4.6436,-4.64361 11.0323,-7.50589 18.1129,-7.5144 14.1424,5.7e-4 25.6091,11.46727 25.6096,25.60967 z"
|
||||
id="path250465" />
|
||||
<path
|
||||
style="fill:#4A9EFF;fill-opacity:1;stroke-width:1.38175"
|
||||
d="m 1795.5329,-776.35953 c -11.454,10.78389 -26.6678,16.72333 -42.8584,16.70911 -16.1745,9.4e-4 -31.4216,-5.93944 -42.8604,-16.70911 -11.4539,-10.78389 -17.7625,-25.1381 -17.7776,-40.38154 0,-15.22732 6.2934,-29.5673 17.7473,-40.35119 11.455,-10.78485 26.685,-16.7091 42.8907,-16.73946 33.4345,0.015 60.6379,25.62729 60.6379,57.09065 -0.016,15.27284 -6.3246,29.59669 -17.7795,40.38154 z"
|
||||
id="path250467" />
|
||||
<path
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke-width:1.38175"
|
||||
d="m 1706.6505,-853.77411 c -14.3177,13.48011 -22.1839,31.37331 -22.201,50.43924 -0.016,19.06307 7.8824,36.98851 22.2001,50.46863 14.3025,13.46588 33.3235,20.8871 53.5893,20.8871 20.2496,-0.015 39.2717,-7.40701 53.5893,-20.8871 14.3187,-13.48106 22.2011,-31.41976 22.2171,-50.48476 0,-39.34342 -34.0013,-71.35571 -75.7893,-71.35571 -20.2496,0.015 -39.2868,7.45156 -53.6055,20.9326 z m 110.8518,50.42311 c 0,14.92369 -6.4012,28.37408 -16.7842,38.14968 -10.3424,9.7374 -24.6678,15.80116 -40.4783,15.76298 -31.6258,0 -57.2636,-24.13816 -57.2625,-53.91266 -0.02,-14.86874 6.419,-28.35496 16.7615,-38.09234 10.383,-9.77562 24.6691,-15.80238 40.501,-15.8203 31.622,-9.4e-4 57.2613,24.13812 57.2625,53.91264 z"
|
||||
id="path250469"
|
||||
sodipodi:nodetypes="scscsccscsccscc" />
|
||||
<path
|
||||
style="fill:#f2f2f2;fill-opacity:1;stroke-width:1.45856"
|
||||
d="m 1696.0983,-869.96743 c -15.1136,14.22941 -23.417,33.11723 -23.4351,53.24295 -0.017,20.1227 8.3205,39.04455 23.4341,53.27397 15.0976,14.21439 35.176,22.04812 56.5681,22.04812 21.3752,-0.0158 41.4547,-7.81872 56.5682,-22.04812 15.1146,-14.23042 23.4351,-33.16625 23.4522,-53.29099 0,-41.53037 -35.8914,-75.32209 -80.0022,-75.32209 -21.3753,0.0158 -41.4707,7.86577 -56.5853,22.09616 z m 115.3426,53.22593 c 0,15.31768 -6.5704,29.12317 -17.2276,39.15686 -10.6155,9.99448 -25.319,16.21833 -41.5468,16.17914 -32.4607,0 -58.7756,-24.77541 -58.7742,-55.336 -0.02,-15.26129 6.5885,-29.10357 17.2039,-39.09802 10.6571,-10.0337 25.3203,-16.21958 41.5703,-16.23795 32.4569,-9.4e-4 58.7729,24.77537 58.7744,55.33597 z"
|
||||
id="path250471"
|
||||
sodipodi:nodetypes="scscsccscsccscc" />
|
||||
<path
|
||||
style="fill:#f2705b;fill-opacity:1;stroke-width:1.10803"
|
||||
d="m 1887.7604,-951.51756 c -91.5372,-11.38291 -181.4702,-10.94666 -269.9766,0 22.3199,-37.19749 48.2016,-72.54824 77.8824,-105.52484 l 57.1058,-63.4468 57.1059,63.4468 c 29.5621,32.8446 55.5624,68.32735 77.8825,105.52484 z"
|
||||
id="path250473"
|
||||
sodipodi:nodetypes="ccscsc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 22 KiB |
@@ -0,0 +1,250 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="50.609062"
|
||||
height="246.19336"
|
||||
viewBox="0 0 50.609068 246.19337"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
||||
sodipodi:docname="rocket_smoke2b.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs2">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient939">
|
||||
<stop
|
||||
style="stop-color:#eff0f1;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop935" />
|
||||
<stop
|
||||
style="stop-color:#eff0f1;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop937" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient939"
|
||||
id="linearGradient941"
|
||||
x1="188.87804"
|
||||
y1="716.58759"
|
||||
x2="188.87804"
|
||||
y2="855.77551"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1,0,0,1,347.39864,0)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#525252"
|
||||
bordercolor="#404040"
|
||||
borderopacity="1"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.8"
|
||||
inkscape:cx="66.25"
|
||||
inkscape:cy="145"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1914"
|
||||
inkscape:window-height="1047"
|
||||
inkscape:window-x="646"
|
||||
inkscape:window-y="3"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
units="px"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
height="2160px"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#525252" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-149.54261,-610.36914)">
|
||||
<path
|
||||
id="path250403"
|
||||
style="display:inline;fill:url(#linearGradient941);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.46489;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke"
|
||||
d="m 173.34288,714.57812 c 7.95027,0 12.70931,39.06501 15.53515,87.92774 l -6.625,-11.61328 -5.03515,65.66992 -10.09571,-79.48828 -8.60156,12.38086 c 2.91559,-42.67355 7.57403,-74.86328 14.82227,-74.86328 z" />
|
||||
<g
|
||||
id="g250475"
|
||||
transform="matrix(-0.13168343,0,0,0.13168343,404.83556,757.91908)"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:#1a1c1b;fill-opacity:1"
|
||||
d="m 1846.0893,-550.96782 c 0.078,3.94424 0.099,7.8998 0.111,11.86596 -0.011,6.81722 -0.1209,13.64504 -0.3642,20.42902 12.9267,17.16926 -24.5401,147.31085 -24.5401,147.31085 -2.011,6.38659 -4.1224,12.6954 -6.3647,18.91581 -0.1881,0.54165 -0.3974,1.06066 -0.5854,1.60231 26.5774,21.98515 55.6478,30.97769 71.2212,110.31141 0.3981,0.26516 1.4587,0.79549 1.4587,0.79549 1.3478,0.64064 2.8504,0.9949 4.4746,1.00551 4.8168,0 8.8721,-3.21521 10.1866,-7.62402 0,0 0.21,-0.78419 0.2319,-0.93904 5.1272,-20.55065 7.8892,-112.52112 7.8885,-135.23693 0,-68.19196 -24.8817,-128.9593 -63.7181,-168.43637 z"
|
||||
id="path250405"
|
||||
sodipodi:nodetypes="ccccccccccccc" />
|
||||
<path
|
||||
id="path250409"
|
||||
style="opacity:1;fill:#eff0f1;fill-opacity:1"
|
||||
d="m 1752.772,-1120.4892 c -44.0463,47.7284 -104.1176,101.2739 -136.0025,150.51654 -34.0677,49.69728 -62.4062,118.71236 -62.4062,210.93946 0,56.67085 35.0815,153.37542 65.9492,250.58593 -20.7749,35.77189 -33.0703,80.0034 -33.0703,127.91407 -7e-4,22.71581 2.7615,114.68567 7.8887,135.23632 0.022,0.15485 0.2304,0.93946 0.2304,0.93946 1.3145,4.40881 5.3707,7.625 10.1875,7.625 1.6242,-0.0106 8.9132,-0.89646 10.261,-1.5371 0,0 1.0609,-0.52976 1.459,-0.79492 11.9395,-60.82187 26.0274,-79.75628 46.6277,-95.44142 3.8365,17.81576 19.7188,30.88477 38.1797,30.88477 h 38.2011 z"
|
||||
sodipodi:nodetypes="ccsccccccccscc" />
|
||||
<g
|
||||
id="g250417"
|
||||
transform="rotate(-45,1722.222,787.87678)">
|
||||
<path
|
||||
d="m 2410.4087,18.99406 a 88.000921,88.000921 0 0 1 127.9237,120.88083 l -91.9962,94.5719 5.3193,-37.69998 -79.4767,68.83767 3.1807,-44.90544 -142.8421,113.0054 124.9235,-184.75996 -55.275,-1.52884 z"
|
||||
id="path250411"
|
||||
style="fill:#fbb540" />
|
||||
<path
|
||||
d="m 2443.6657,10.65886 a 69.979282,69.979282 0 0 1 101.7263,96.12574 l -73.1564,75.2046 4.23,-29.97943 -63.2008,54.74045 2.5294,-35.70929 -113.5896,89.86312 99.3405,-146.92312 -43.9553,-1.21575 z"
|
||||
id="path250413"
|
||||
style="fill:#ffcc00;fill-opacity:1;stroke-width:0.795211" />
|
||||
<path
|
||||
style="fill:#ffdd55;stroke-width:0.658127"
|
||||
d="m 2561.492,69.78156 c -1.5795,3.02738 -3.4222,5.98901 -5.3967,8.75311 -2.7641,3.88293 -5.7915,7.43682 -9.1479,10.793271 -15.466,15.465979 -59.3968,40.233089 -81.2138,39.873479 -0.06,-4.49525 0.3595,-8.93066 1.0188,-13.18616 -11.5078,6.59304 -24.8737,10.30915 -39.3184,10.06941 -0.1798,-14.44474 3.5363,-27.810589 10.0693,-39.31853 -4.2555,0.6593 -8.6908,1.07891 -13.186,0.95903 -0.3596,-26.4321 29.8342,-74.01598 51.5523,-89.482 2.7642,-1.97434 5.7258,-3.81711 8.7532,-5.39662 -0.066,0.3291 -0.1317,0.72391 -0.1975,1.05302 7.5027,0.98717 14.8737,2.96156 21.9815,5.92313043 4.6727,1.90858997 9.1479,4.21198997 13.4916,6.97615997 5.4624,3.4222296 10.5958,7.5025996 15.3343,12.2411296 4.7385,4.73854 8.7531,9.87194 12.1754,15.33436 2.7641,4.34367 5.1334,8.81892 7.0419,13.49158 2.9616,7.10779 4.936,14.4788 5.9231,21.98144 0.4607,0.0658 0.7898,3e-5 1.1189,-0.0658 z"
|
||||
id="path250415"
|
||||
sodipodi:nodetypes="ccsccccccccccscccc" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:#1a1c1b;fill-opacity:1"
|
||||
d="m 1662.96,-550.96924 c -0.078,3.94424 -0.099,7.8998 -0.111,11.86596 0.011,6.81722 0.1209,13.64504 0.3642,20.42902 -12.9267,17.16926 24.5401,147.31085 24.5401,147.31085 2.011,6.38659 4.1224,12.6954 6.3647,18.91581 0.1881,0.54165 0.3974,1.06066 0.5854,1.60231 -26.5774,21.98515 -55.6478,30.97769 -71.2212,110.31141 -0.3981,0.26516 -1.4587,0.79549 -1.4587,0.79549 -1.3478,0.64064 -2.8504,0.9949 -4.4746,1.00551 -4.8168,0 -8.8721,-3.21521 -10.1866,-7.62402 0,0 -0.21,-0.78419 -0.2319,-0.93904 -5.1272,-20.55065 -7.8892,-112.52112 -7.8885,-135.23693 0,-68.19196 24.8817,-128.9593 63.7181,-168.43637 z"
|
||||
id="path250419"
|
||||
sodipodi:nodetypes="ccccccccccccc" />
|
||||
<path
|
||||
style="fill:#ffdd55;stroke-width:0.658127"
|
||||
d="m 1807.3005,-314.23094 c 1.0238,3.25755 1.815,6.65473 2.3734,10.00536 0.7911,4.7002 1.1634,9.35386 1.1634,14.10059 0,21.8722 -8.5162,43.69785 -25.7347,60.35795 -3.5368,-3.4437 -6.6548,-7.21317 -9.447,-11.02916 -3.816,14.05404 -11.3084,27.31697 -22.7098,38.34614 -11.3549,-11.07571 -18.8473,-24.33863 -22.7099,-38.34614 -2.7922,3.81599 -5.9101,7.58546 -9.4934,10.98263 -20.8019,-20.24342 -28.9923,-48.16538 -24.5714,-74.45854 0.5585,-3.35064 1.3496,-6.74781 2.3734,-10.00537 0.1862,0.27922 0.4188,0.60497 0.605,0.8842 6.0032,-4.60713 12.6114,-8.42312 19.7315,-11.35494 4.6537,-1.95454 9.4469,-3.49024 14.4729,-4.60711 6.2824,-1.44264 12.7975,-2.18723 19.4988,-2.18723 6.7013,0 13.1699,0.79113 19.4523,2.23376 5.026,1.11688 9.8658,2.60604 14.5194,4.56058 7.1201,2.93182 13.7283,6.74781 19.7315,11.35494 0.3723,-0.27923 0.5585,-0.55845 0.7446,-0.83766 z"
|
||||
id="path250421" />
|
||||
<path
|
||||
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.658127"
|
||||
d="m 1786.964,-324.70168 c 6.0498,10.4242 9.3074,22.24449 9.3074,34.53015 0,13.49561 -3.9091,26.43278 -11.1223,37.55502 l -15.5898,-21.26722 -8.0042,29.22498 c -1.815,6.84088 -4.7468,13.30947 -8.6093,19.31269 -3.816,-5.95669 -6.7013,-12.47181 -8.6093,-19.31269 l -8.0043,-29.22498 -15.5897,21.26722 c -7.2132,-11.12224 -11.1223,-24.05941 -11.1223,-37.55502 0,-12.28566 3.2576,-24.10595 9.3073,-34.53015 4.6537,-1.95453 9.447,-3.49024 14.4729,-4.60712 6.2825,-1.44263 12.7976,-2.18722 19.4989,-2.18722 6.7012,0 13.1698,0.79113 19.4522,2.23376 5.1191,1.11687 9.9589,2.60605 14.6125,4.56058 z"
|
||||
id="path250423" />
|
||||
<path
|
||||
style="fill:#4A9EFF;fill-opacity:1;stroke-width:1.22212"
|
||||
d="m 1757.8035,-949.18846 c -3.0932,-1.86129 -6.9698,-1.86129 -10.063,0 -4.1821,2.51146 -111.3675,56.64763 -111.3675,198.5711 0,57.30534 22.0097,279.07118 39.4628,412.9313 2.5298,19.42073 19.191,34.06662 38.7352,34.06662 h 76.4021 c 19.5441,0 36.2053,-14.64589 38.7351,-34.06662 17.4531,-133.86012 39.4628,-355.62596 39.4628,-412.9313 0,-141.92347 -107.1854,-196.06086 -111.3675,-198.5711 z"
|
||||
id="path250425"
|
||||
sodipodi:nodetypes="ccscsscsc" />
|
||||
<path
|
||||
id="path250427"
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:7.55906;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke markers fill"
|
||||
d="m 1752.7723,-976.92188 v 673.30274 h 38.2012 c 19.5441,0 36.2045,-14.64568 38.7343,-34.06641 17.4531,-133.86012 39.4629,-355.6263 39.4629,-412.93164 0,-57.74221 -17.7429,-100.95157 -39.0722,-132.0664 -12.283,-19.09437 -26.1497,-37.37853 -41.5723,-54.51368 z" />
|
||||
<path
|
||||
style="fill:#4A9EFF;fill-opacity:1;stroke-width:0.802037"
|
||||
d="m 1779.5567,-616.10815 c -6.4509,6.45104 -15.0287,9.99501 -24.1384,9.99558 -9.1183,-0.009 -17.6966,-3.55362 -24.1476,-10.00465 -6.4511,-6.45105 -9.9956,-15.02938 -10.0047,-24.14761 0,-9.10916 3.5621,-17.70509 9.9956,-24.13855 6.451,-6.45104 15.0288,-9.995 24.1561,-10.01315 18.8314,0.009 34.1523,15.32938 34.1523,34.15226 -0.018,9.12675 -3.5621,17.70507 -9.9956,24.13854 -0.018,0.0175 -0.018,0.0175 -0.018,0.0175 z"
|
||||
id="path250429" />
|
||||
<g
|
||||
id="g250435"
|
||||
transform="matrix(1.2221209,0,0,1.2221209,1439.9078,-817.55053)"
|
||||
style="fill:#24282c;fill-opacity:1">
|
||||
<g
|
||||
id="g250433"
|
||||
style="fill:#24282c;fill-opacity:1">
|
||||
<path
|
||||
style="fill:#24282c;fill-opacity:1"
|
||||
d="m 256.001,451.35877 c -4.422,0 -8,-3.582 -8,-8 V 249.57205 c 0,-4.418 3.578,-8 8,-8 4.422,0 8,3.582 8,8 v 193.78672 c 0,4.418 -3.578,8 -8,8 z"
|
||||
id="path250431"
|
||||
sodipodi:nodetypes="sssssss" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke-width:0.802035"
|
||||
d="m 1762.1431,-674.93939 c -11.4043,0.009 -22.1359,4.44852 -30.1994,12.5119 -8.0463,8.04637 -12.4852,18.77693 -12.4943,30.18182 0.011,11.38673 4.4394,22.12695 12.4943,30.18183 8.064,8.06394 18.7951,12.48638 30.1909,12.5034 11.4038,-0.009 22.127,-4.45761 30.1728,-12.5034 8.0639,-8.06396 12.5124,-18.78603 12.521,-30.19033 5e-4,-23.53626 -19.1485,-42.68522 -42.6853,-42.68522 z m 25.6011,42.68522 c -0.011,7.07998 -2.8622,13.47772 -7.5059,18.12133 -4.6254,4.62548 -11.0413,7.49683 -18.1031,7.48775 -14.1429,0 -25.6097,-11.46669 -25.6097,-25.60966 -0.011,-7.0624 2.8709,-13.46921 7.4962,-18.09469 4.6437,-4.64361 11.0323,-7.50589 18.1129,-7.5144 14.1424,5.7e-4 25.6091,11.46727 25.6096,25.60967 z"
|
||||
id="path250437" />
|
||||
<path
|
||||
style="fill:#e6e6e6;fill-opacity:1;stroke-width:0.802035"
|
||||
d="m 1755.4268,-682.94948 c -11.4044,0.009 -22.1361,4.44853 -30.1994,12.51191 -8.0464,8.04637 -12.4853,18.77693 -12.4944,30.18182 0.011,11.38673 4.4395,22.12695 12.4944,30.18182 8.0639,8.06395 18.795,12.48639 30.1909,12.5034 11.4037,-0.009 22.1269,-4.4576 30.1727,-12.5034 8.0639,-8.06395 12.5125,-18.78602 12.521,-30.19032 6e-4,-23.53626 -19.1484,-42.68523 -42.6852,-42.68523 z m 25.6011,42.68523 c -0.011,7.07998 -2.8623,13.47771 -7.5059,18.12133 -4.6255,4.62548 -11.0414,7.49683 -18.1032,7.48775 -14.143,0 -25.6096,-11.46669 -25.6096,-25.60966 -0.011,-7.06241 2.8707,-13.46921 7.4962,-18.09469 4.6436,-4.64361 11.0323,-7.50589 18.1129,-7.5144 14.1424,5.7e-4 25.6091,11.46727 25.6096,25.60967 z"
|
||||
id="path250439" />
|
||||
<path
|
||||
style="fill:#4A9EFF;fill-opacity:1;stroke-width:1.38175"
|
||||
d="m 1795.5329,-776.35953 c -11.454,10.78389 -26.6678,16.72333 -42.8584,16.70911 -16.1745,9.4e-4 -31.4216,-5.93944 -42.8604,-16.70911 -11.4539,-10.78389 -17.7625,-25.1381 -17.7776,-40.38154 0,-15.22732 6.2934,-29.5673 17.7473,-40.35119 11.455,-10.78485 26.685,-16.7091 42.8907,-16.73946 33.4345,0.015 60.6379,25.62729 60.6379,57.09065 -0.016,15.27284 -6.3246,29.59669 -17.7795,40.38154 z"
|
||||
id="path250441" />
|
||||
<path
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke-width:1.38175"
|
||||
d="m 1706.6505,-853.77411 c -14.3177,13.48011 -22.1839,31.37331 -22.201,50.43924 -0.016,19.06307 7.8824,36.98851 22.2001,50.46863 14.3025,13.46588 33.3235,20.8871 53.5893,20.8871 20.2496,-0.015 39.2717,-7.40701 53.5893,-20.8871 14.3187,-13.48106 22.2011,-31.41976 22.2171,-50.48476 0,-39.34342 -34.0013,-71.35571 -75.7893,-71.35571 -20.2496,0.015 -39.2868,7.45156 -53.6055,20.9326 z m 110.8518,50.42311 c 0,14.92369 -6.4012,28.37408 -16.7842,38.14968 -10.3424,9.7374 -24.6678,15.80116 -40.4783,15.76298 -31.6258,0 -57.2636,-24.13816 -57.2625,-53.91266 -0.02,-14.86874 6.419,-28.35496 16.7615,-38.09234 10.383,-9.77562 24.6691,-15.80238 40.501,-15.8203 31.622,-9.4e-4 57.2613,24.13812 57.2625,53.91264 z"
|
||||
id="path250443"
|
||||
sodipodi:nodetypes="scscsccscsccscc" />
|
||||
<path
|
||||
style="fill:#f2f2f2;fill-opacity:1;stroke-width:1.45856"
|
||||
d="m 1696.0983,-869.96743 c -15.1136,14.22941 -23.417,33.11723 -23.4351,53.24295 -0.017,20.1227 8.3205,39.04455 23.4341,53.27397 15.0976,14.21439 35.176,22.04812 56.5681,22.04812 21.3752,-0.0158 41.4547,-7.81872 56.5682,-22.04812 15.1146,-14.23042 23.4351,-33.16625 23.4522,-53.29099 0,-41.53037 -35.8914,-75.32209 -80.0022,-75.32209 -21.3753,0.0158 -41.4707,7.86577 -56.5853,22.09616 z m 115.3426,53.22593 c 0,15.31768 -6.5704,29.12317 -17.2276,39.15686 -10.6155,9.99448 -25.319,16.21833 -41.5468,16.17914 -32.4607,0 -58.7756,-24.77541 -58.7742,-55.336 -0.02,-15.26129 6.5885,-29.10357 17.2039,-39.09802 10.6571,-10.0337 25.3203,-16.21958 41.5703,-16.23795 32.4569,-9.4e-4 58.7729,24.77537 58.7744,55.33597 z"
|
||||
id="path250445"
|
||||
sodipodi:nodetypes="scscsccscsccscc" />
|
||||
<path
|
||||
style="fill:#f2705b;fill-opacity:1;stroke-width:1.10803"
|
||||
d="m 1837.2865,-871.1305 h -169.0289 c 13.9742,-23.28887 30.1784,-45.42157 48.7612,-66.06774 l 35.7532,-39.72324 35.7533,39.72324 c 18.5084,20.56359 34.7869,42.77887 48.7612,66.06774 z"
|
||||
id="path250447" />
|
||||
<path
|
||||
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.658127"
|
||||
d="m 1786.964,-324.70168 c 6.0498,10.4242 9.3074,22.24449 9.3074,34.53015 0,13.49561 -3.9091,26.43278 -11.1223,37.55502 l -15.5898,-21.26722 -8.0042,29.22498 c -1.815,6.84088 -4.7468,13.30947 -8.6093,19.31269 -3.816,-5.95669 -6.7013,-12.47181 -8.6093,-19.31269 l -8.0043,-29.22498 -15.5897,21.26722 c -7.2132,-11.12224 -11.1223,-24.05941 -11.1223,-37.55502 0,-12.28566 3.2576,-24.10595 9.3073,-34.53015 4.6537,-1.95453 9.447,-3.49024 14.4729,-4.60712 6.2825,-1.44263 12.7976,-2.18722 19.4989,-2.18722 6.7012,0 13.1698,0.79113 19.4522,2.23376 5.1191,1.11687 9.9589,2.60605 14.6125,4.56058 z"
|
||||
id="path250449" />
|
||||
<path
|
||||
style="fill:#454948;fill-opacity:1;stroke-width:1.22212"
|
||||
d="m 1760.8084,-1076.1934 c -4.9405,-2.9729 -11.1323,-2.9729 -16.0728,0 -6.6798,4.0113 -177.8786,90.4788 -177.8786,317.16201 0,91.52932 91.5257,287.48521 108.9788,421.34533 2.5298,19.42073 19.191,34.06662 38.7352,34.06662 h 76.4021 c 19.5441,0 36.2053,-14.64589 38.7351,-34.06662 17.4531,-133.86012 108.9788,-329.81601 108.9788,-421.34533 0,-226.68321 -171.1988,-313.15261 -177.8786,-317.16201 z"
|
||||
id="path250451"
|
||||
sodipodi:nodetypes="ccscsscsc" />
|
||||
<path
|
||||
id="path250453"
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:7.55906;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke markers fill"
|
||||
d="m 1752.7725,-1120.4898 -2e-4,816.87066 h 38.2012 c 19.5441,0 36.2045,-14.64568 38.7343,-34.06641 17.4531,-133.86012 108.9787,-329.81625 108.9787,-421.34557 0,-92.2271 -28.3393,-161.24201 -62.407,-210.93929 -19.6186,-30.49789 -41.767,-59.70159 -66.4001,-87.07039 z"
|
||||
sodipodi:nodetypes="ccscscsc" />
|
||||
<path
|
||||
style="fill:#4A9EFF;fill-opacity:1;stroke-width:0.802037"
|
||||
d="m 1779.5567,-616.10815 c -6.4509,6.45104 -15.0287,9.99501 -24.1384,9.99558 -9.1183,-0.009 -17.6966,-3.55362 -24.1476,-10.00465 -6.4511,-6.45105 -9.9956,-15.02938 -10.0047,-24.14761 0,-9.10916 3.5621,-17.70509 9.9956,-24.13855 6.451,-6.45104 15.0288,-9.995 24.1561,-10.01315 18.8314,0.009 34.1523,15.32938 34.1523,34.15226 -0.018,9.12675 -3.5621,17.70507 -9.9956,24.13854 -0.018,0.0175 -0.018,0.0175 -0.018,0.0175 z"
|
||||
id="path250455" />
|
||||
<g
|
||||
id="g250461"
|
||||
transform="matrix(1.2221209,0,0,1.2221209,1439.9078,-817.55053)"
|
||||
style="fill:#1a1c1b;fill-opacity:1">
|
||||
<g
|
||||
id="g250459"
|
||||
style="fill:#1a1c1b;fill-opacity:1">
|
||||
<path
|
||||
style="fill:#1a1c1b;fill-opacity:1"
|
||||
d="m 256.001,451.35877 c -4.422,0 -8,-3.582 -8,-8 V 249.57205 c 0,-4.418 3.578,-8 8,-8 4.422,0 8,3.582 8,8 v 193.78672 c 0,4.418 -3.578,8 -8,8 z"
|
||||
id="path250457"
|
||||
sodipodi:nodetypes="sssssss" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke-width:0.802035"
|
||||
d="m 1762.1431,-674.93939 c -11.4043,0.009 -22.1359,4.44852 -30.1994,12.5119 -8.0463,8.04637 -12.4852,18.77693 -12.4943,30.18182 0.011,11.38673 4.4394,22.12695 12.4943,30.18183 8.064,8.06394 18.7951,12.48638 30.1909,12.5034 11.4038,-0.009 22.127,-4.45761 30.1728,-12.5034 8.0639,-8.06396 12.5124,-18.78603 12.521,-30.19033 5e-4,-23.53626 -19.1485,-42.68522 -42.6853,-42.68522 z m 25.6011,42.68522 c -0.011,7.07998 -2.8622,13.47772 -7.5059,18.12133 -4.6254,4.62548 -11.0413,7.49683 -18.1031,7.48775 -14.1429,0 -25.6097,-11.46669 -25.6097,-25.60966 -0.011,-7.0624 2.8709,-13.46921 7.4962,-18.09469 4.6437,-4.64361 11.0323,-7.50589 18.1129,-7.5144 14.1424,5.7e-4 25.6091,11.46727 25.6096,25.60967 z"
|
||||
id="path250463" />
|
||||
<path
|
||||
style="fill:#e6e6e6;fill-opacity:1;stroke-width:0.802035"
|
||||
d="m 1755.4268,-682.94948 c -11.4044,0.009 -22.1361,4.44853 -30.1994,12.51191 -8.0464,8.04637 -12.4853,18.77693 -12.4944,30.18182 0.011,11.38673 4.4395,22.12695 12.4944,30.18182 8.0639,8.06395 18.795,12.48639 30.1909,12.5034 11.4037,-0.009 22.1269,-4.4576 30.1727,-12.5034 8.0639,-8.06395 12.5125,-18.78602 12.521,-30.19032 6e-4,-23.53626 -19.1484,-42.68523 -42.6852,-42.68523 z m 25.6011,42.68523 c -0.011,7.07998 -2.8623,13.47771 -7.5059,18.12133 -4.6255,4.62548 -11.0414,7.49683 -18.1032,7.48775 -14.143,0 -25.6096,-11.46669 -25.6096,-25.60966 -0.011,-7.06241 2.8707,-13.46921 7.4962,-18.09469 4.6436,-4.64361 11.0323,-7.50589 18.1129,-7.5144 14.1424,5.7e-4 25.6091,11.46727 25.6096,25.60967 z"
|
||||
id="path250465" />
|
||||
<path
|
||||
style="fill:#4A9EFF;fill-opacity:1;stroke-width:1.38175"
|
||||
d="m 1795.5329,-776.35953 c -11.454,10.78389 -26.6678,16.72333 -42.8584,16.70911 -16.1745,9.4e-4 -31.4216,-5.93944 -42.8604,-16.70911 -11.4539,-10.78389 -17.7625,-25.1381 -17.7776,-40.38154 0,-15.22732 6.2934,-29.5673 17.7473,-40.35119 11.455,-10.78485 26.685,-16.7091 42.8907,-16.73946 33.4345,0.015 60.6379,25.62729 60.6379,57.09065 -0.016,15.27284 -6.3246,29.59669 -17.7795,40.38154 z"
|
||||
id="path250467" />
|
||||
<path
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke-width:1.38175"
|
||||
d="m 1706.6505,-853.77411 c -14.3177,13.48011 -22.1839,31.37331 -22.201,50.43924 -0.016,19.06307 7.8824,36.98851 22.2001,50.46863 14.3025,13.46588 33.3235,20.8871 53.5893,20.8871 20.2496,-0.015 39.2717,-7.40701 53.5893,-20.8871 14.3187,-13.48106 22.2011,-31.41976 22.2171,-50.48476 0,-39.34342 -34.0013,-71.35571 -75.7893,-71.35571 -20.2496,0.015 -39.2868,7.45156 -53.6055,20.9326 z m 110.8518,50.42311 c 0,14.92369 -6.4012,28.37408 -16.7842,38.14968 -10.3424,9.7374 -24.6678,15.80116 -40.4783,15.76298 -31.6258,0 -57.2636,-24.13816 -57.2625,-53.91266 -0.02,-14.86874 6.419,-28.35496 16.7615,-38.09234 10.383,-9.77562 24.6691,-15.80238 40.501,-15.8203 31.622,-9.4e-4 57.2613,24.13812 57.2625,53.91264 z"
|
||||
id="path250469"
|
||||
sodipodi:nodetypes="scscsccscsccscc" />
|
||||
<path
|
||||
style="fill:#f2f2f2;fill-opacity:1;stroke-width:1.45856"
|
||||
d="m 1696.0983,-869.96743 c -15.1136,14.22941 -23.417,33.11723 -23.4351,53.24295 -0.017,20.1227 8.3205,39.04455 23.4341,53.27397 15.0976,14.21439 35.176,22.04812 56.5681,22.04812 21.3752,-0.0158 41.4547,-7.81872 56.5682,-22.04812 15.1146,-14.23042 23.4351,-33.16625 23.4522,-53.29099 0,-41.53037 -35.8914,-75.32209 -80.0022,-75.32209 -21.3753,0.0158 -41.4707,7.86577 -56.5853,22.09616 z m 115.3426,53.22593 c 0,15.31768 -6.5704,29.12317 -17.2276,39.15686 -10.6155,9.99448 -25.319,16.21833 -41.5468,16.17914 -32.4607,0 -58.7756,-24.77541 -58.7742,-55.336 -0.02,-15.26129 6.5885,-29.10357 17.2039,-39.09802 10.6571,-10.0337 25.3203,-16.21958 41.5703,-16.23795 32.4569,-9.4e-4 58.7729,24.77537 58.7744,55.33597 z"
|
||||
id="path250471"
|
||||
sodipodi:nodetypes="scscsccscsccscc" />
|
||||
<path
|
||||
style="fill:#f2705b;fill-opacity:1;stroke-width:1.10803"
|
||||
d="m 1887.7604,-951.51756 c -91.5372,-11.38291 -181.4702,-10.94666 -269.9766,0 22.3199,-37.19749 48.2016,-72.54824 77.8824,-105.52484 l 57.1058,-63.4468 57.1059,63.4468 c 29.5621,32.8446 55.5624,68.32735 77.8825,105.52484 z"
|
||||
id="path250473"
|
||||
sodipodi:nodetypes="ccscsc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 22 KiB |
@@ -0,0 +1,227 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="108.81853"
|
||||
height="2160.5229"
|
||||
viewBox="0 0 108.81854 2160.523"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
||||
sodipodi:docname="rocket_smoke.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#525252"
|
||||
bordercolor="#404040"
|
||||
borderopacity="1"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.98994949"
|
||||
inkscape:cx="-169.20055"
|
||||
inkscape:cy="1534.4217"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1914"
|
||||
inkscape:window-height="1047"
|
||||
inkscape:window-x="224"
|
||||
inkscape:window-y="103"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
units="px"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
height="2160px"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#525252" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-116.02842,-610.36914)">
|
||||
<path
|
||||
id="path250403"
|
||||
style="display:inline;fill:#eff0f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.46489;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke"
|
||||
d="m 170.0562,714.59209 c 9.38797,0 14.50417,53.62433 17.00032,114.68438 8.24465,1098.39983 1.91828,1138.93853 33.79043,1941.61563 -46.56792,0 -58.65508,0 -108.81853,0 34.53647,-791.4836 28.78177,-828.0114 41.02962,-1941.62914 2.4963,-61.06021 7.61008,-114.68446 16.99812,-114.68446 v -8.5e-4 z"
|
||||
sodipodi:nodetypes="sccccscs" />
|
||||
<g
|
||||
id="g250475"
|
||||
transform="matrix(-0.13168343,0,0,0.13168343,400.42611,757.91908)"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:#1a1c1b;fill-opacity:1"
|
||||
d="m 1846.0893,-550.96782 c 0.078,3.94424 0.099,7.8998 0.111,11.86596 -0.011,6.81722 -0.1209,13.64504 -0.3642,20.42902 12.9267,17.16926 -24.5401,147.31085 -24.5401,147.31085 -2.011,6.38659 -4.1224,12.6954 -6.3647,18.91581 -0.1881,0.54165 -0.3974,1.06066 -0.5854,1.60231 26.5774,21.98515 55.6478,30.97769 71.2212,110.31141 0.3981,0.26516 1.4587,0.79549 1.4587,0.79549 1.3478,0.64064 2.8504,0.9949 4.4746,1.00551 4.8168,0 8.8721,-3.21521 10.1866,-7.62402 0,0 0.21,-0.78419 0.2319,-0.93904 5.1272,-20.55065 7.8892,-112.52112 7.8885,-135.23693 0,-68.19196 -24.8817,-128.9593 -63.7181,-168.43637 z"
|
||||
id="path250405"
|
||||
sodipodi:nodetypes="ccccccccccccc" />
|
||||
<path
|
||||
id="path250409"
|
||||
style="opacity:1;fill:#eff0f1;fill-opacity:1"
|
||||
d="m 1752.772,-1120.4892 c -44.0463,47.7284 -104.1176,101.2739 -136.0025,150.51654 -34.0677,49.69728 -62.4062,118.71236 -62.4062,210.93946 0,56.67085 35.0815,153.37542 65.9492,250.58593 -20.7749,35.77189 -33.0703,80.0034 -33.0703,127.91407 -7e-4,22.71581 2.7615,114.68567 7.8887,135.23632 0.022,0.15485 0.2304,0.93946 0.2304,0.93946 1.3145,4.40881 5.3707,7.625 10.1875,7.625 1.6242,-0.0106 8.9132,-0.89646 10.261,-1.5371 0,0 1.0609,-0.52976 1.459,-0.79492 11.9395,-60.82187 26.0274,-79.75628 46.6277,-95.44142 3.8365,17.81576 19.7188,30.88477 38.1797,30.88477 h 38.2011 z"
|
||||
sodipodi:nodetypes="ccsccccccccscc" />
|
||||
<g
|
||||
id="g250417"
|
||||
transform="rotate(-45,1722.222,787.87678)">
|
||||
<path
|
||||
d="m 2410.4087,18.99406 a 88.000921,88.000921 0 0 1 127.9237,120.88083 l -91.9962,94.5719 5.3193,-37.69998 -79.4767,68.83767 3.1807,-44.90544 -142.8421,113.0054 124.9235,-184.75996 -55.275,-1.52884 z"
|
||||
id="path250411"
|
||||
style="fill:#fbb540" />
|
||||
<path
|
||||
d="m 2443.6657,10.65886 a 69.979282,69.979282 0 0 1 101.7263,96.12574 l -73.1564,75.2046 4.23,-29.97943 -63.2008,54.74045 2.5294,-35.70929 -113.5896,89.86312 99.3405,-146.92312 -43.9553,-1.21575 z"
|
||||
id="path250413"
|
||||
style="fill:#ffcc00;fill-opacity:1;stroke-width:0.795211" />
|
||||
<path
|
||||
style="fill:#ffdd55;stroke-width:0.658127"
|
||||
d="m 2561.492,69.78156 c -1.5795,3.02738 -3.4222,5.98901 -5.3967,8.75311 -2.7641,3.88293 -5.7915,7.43682 -9.1479,10.793271 -15.466,15.465979 -59.3968,40.233089 -81.2138,39.873479 -0.06,-4.49525 0.3595,-8.93066 1.0188,-13.18616 -11.5078,6.59304 -24.8737,10.30915 -39.3184,10.06941 -0.1798,-14.44474 3.5363,-27.810589 10.0693,-39.31853 -4.2555,0.6593 -8.6908,1.07891 -13.186,0.95903 -0.3596,-26.4321 29.8342,-74.01598 51.5523,-89.482 2.7642,-1.97434 5.7258,-3.81711 8.7532,-5.39662 -0.066,0.3291 -0.1317,0.72391 -0.1975,1.05302 7.5027,0.98717 14.8737,2.96156 21.9815,5.92313043 4.6727,1.90858997 9.1479,4.21198997 13.4916,6.97615997 5.4624,3.4222296 10.5958,7.5025996 15.3343,12.2411296 4.7385,4.73854 8.7531,9.87194 12.1754,15.33436 2.7641,4.34367 5.1334,8.81892 7.0419,13.49158 2.9616,7.10779 4.936,14.4788 5.9231,21.98144 0.4607,0.0658 0.7898,3e-5 1.1189,-0.0658 z"
|
||||
id="path250415"
|
||||
sodipodi:nodetypes="ccsccccccccccscccc" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:#1a1c1b;fill-opacity:1"
|
||||
d="m 1662.96,-550.96924 c -0.078,3.94424 -0.099,7.8998 -0.111,11.86596 0.011,6.81722 0.1209,13.64504 0.3642,20.42902 -12.9267,17.16926 24.5401,147.31085 24.5401,147.31085 2.011,6.38659 4.1224,12.6954 6.3647,18.91581 0.1881,0.54165 0.3974,1.06066 0.5854,1.60231 -26.5774,21.98515 -55.6478,30.97769 -71.2212,110.31141 -0.3981,0.26516 -1.4587,0.79549 -1.4587,0.79549 -1.3478,0.64064 -2.8504,0.9949 -4.4746,1.00551 -4.8168,0 -8.8721,-3.21521 -10.1866,-7.62402 0,0 -0.21,-0.78419 -0.2319,-0.93904 -5.1272,-20.55065 -7.8892,-112.52112 -7.8885,-135.23693 0,-68.19196 24.8817,-128.9593 63.7181,-168.43637 z"
|
||||
id="path250419"
|
||||
sodipodi:nodetypes="ccccccccccccc" />
|
||||
<path
|
||||
style="fill:#ffdd55;stroke-width:0.658127"
|
||||
d="m 1807.3005,-314.23094 c 1.0238,3.25755 1.815,6.65473 2.3734,10.00536 0.7911,4.7002 1.1634,9.35386 1.1634,14.10059 0,21.8722 -8.5162,43.69785 -25.7347,60.35795 -3.5368,-3.4437 -6.6548,-7.21317 -9.447,-11.02916 -3.816,14.05404 -11.3084,27.31697 -22.7098,38.34614 -11.3549,-11.07571 -18.8473,-24.33863 -22.7099,-38.34614 -2.7922,3.81599 -5.9101,7.58546 -9.4934,10.98263 -20.8019,-20.24342 -28.9923,-48.16538 -24.5714,-74.45854 0.5585,-3.35064 1.3496,-6.74781 2.3734,-10.00537 0.1862,0.27922 0.4188,0.60497 0.605,0.8842 6.0032,-4.60713 12.6114,-8.42312 19.7315,-11.35494 4.6537,-1.95454 9.4469,-3.49024 14.4729,-4.60711 6.2824,-1.44264 12.7975,-2.18723 19.4988,-2.18723 6.7013,0 13.1699,0.79113 19.4523,2.23376 5.026,1.11688 9.8658,2.60604 14.5194,4.56058 7.1201,2.93182 13.7283,6.74781 19.7315,11.35494 0.3723,-0.27923 0.5585,-0.55845 0.7446,-0.83766 z"
|
||||
id="path250421" />
|
||||
<path
|
||||
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.658127"
|
||||
d="m 1786.964,-324.70168 c 6.0498,10.4242 9.3074,22.24449 9.3074,34.53015 0,13.49561 -3.9091,26.43278 -11.1223,37.55502 l -15.5898,-21.26722 -8.0042,29.22498 c -1.815,6.84088 -4.7468,13.30947 -8.6093,19.31269 -3.816,-5.95669 -6.7013,-12.47181 -8.6093,-19.31269 l -8.0043,-29.22498 -15.5897,21.26722 c -7.2132,-11.12224 -11.1223,-24.05941 -11.1223,-37.55502 0,-12.28566 3.2576,-24.10595 9.3073,-34.53015 4.6537,-1.95453 9.447,-3.49024 14.4729,-4.60712 6.2825,-1.44263 12.7976,-2.18722 19.4989,-2.18722 6.7012,0 13.1698,0.79113 19.4522,2.23376 5.1191,1.11687 9.9589,2.60605 14.6125,4.56058 z"
|
||||
id="path250423" />
|
||||
<path
|
||||
style="fill:#4A9EFF;fill-opacity:1;stroke-width:1.22212"
|
||||
d="m 1757.8035,-949.18846 c -3.0932,-1.86129 -6.9698,-1.86129 -10.063,0 -4.1821,2.51146 -111.3675,56.64763 -111.3675,198.5711 0,57.30534 22.0097,279.07118 39.4628,412.9313 2.5298,19.42073 19.191,34.06662 38.7352,34.06662 h 76.4021 c 19.5441,0 36.2053,-14.64589 38.7351,-34.06662 17.4531,-133.86012 39.4628,-355.62596 39.4628,-412.9313 0,-141.92347 -107.1854,-196.06086 -111.3675,-198.5711 z"
|
||||
id="path250425"
|
||||
sodipodi:nodetypes="ccscsscsc" />
|
||||
<path
|
||||
id="path250427"
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:7.55906;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke markers fill"
|
||||
d="m 1752.7723,-976.92188 v 673.30274 h 38.2012 c 19.5441,0 36.2045,-14.64568 38.7343,-34.06641 17.4531,-133.86012 39.4629,-355.6263 39.4629,-412.93164 0,-57.74221 -17.7429,-100.95157 -39.0722,-132.0664 -12.283,-19.09437 -26.1497,-37.37853 -41.5723,-54.51368 z" />
|
||||
<path
|
||||
style="fill:#4A9EFF;fill-opacity:1;stroke-width:0.802037"
|
||||
d="m 1779.5567,-616.10815 c -6.4509,6.45104 -15.0287,9.99501 -24.1384,9.99558 -9.1183,-0.009 -17.6966,-3.55362 -24.1476,-10.00465 -6.4511,-6.45105 -9.9956,-15.02938 -10.0047,-24.14761 0,-9.10916 3.5621,-17.70509 9.9956,-24.13855 6.451,-6.45104 15.0288,-9.995 24.1561,-10.01315 18.8314,0.009 34.1523,15.32938 34.1523,34.15226 -0.018,9.12675 -3.5621,17.70507 -9.9956,24.13854 -0.018,0.0175 -0.018,0.0175 -0.018,0.0175 z"
|
||||
id="path250429" />
|
||||
<g
|
||||
id="g250435"
|
||||
transform="matrix(1.2221209,0,0,1.2221209,1439.9078,-817.55053)"
|
||||
style="fill:#24282c;fill-opacity:1">
|
||||
<g
|
||||
id="g250433"
|
||||
style="fill:#24282c;fill-opacity:1">
|
||||
<path
|
||||
style="fill:#24282c;fill-opacity:1"
|
||||
d="m 256.001,451.35877 c -4.422,0 -8,-3.582 -8,-8 V 249.57205 c 0,-4.418 3.578,-8 8,-8 4.422,0 8,3.582 8,8 v 193.78672 c 0,4.418 -3.578,8 -8,8 z"
|
||||
id="path250431"
|
||||
sodipodi:nodetypes="sssssss" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke-width:0.802035"
|
||||
d="m 1762.1431,-674.93939 c -11.4043,0.009 -22.1359,4.44852 -30.1994,12.5119 -8.0463,8.04637 -12.4852,18.77693 -12.4943,30.18182 0.011,11.38673 4.4394,22.12695 12.4943,30.18183 8.064,8.06394 18.7951,12.48638 30.1909,12.5034 11.4038,-0.009 22.127,-4.45761 30.1728,-12.5034 8.0639,-8.06396 12.5124,-18.78603 12.521,-30.19033 5e-4,-23.53626 -19.1485,-42.68522 -42.6853,-42.68522 z m 25.6011,42.68522 c -0.011,7.07998 -2.8622,13.47772 -7.5059,18.12133 -4.6254,4.62548 -11.0413,7.49683 -18.1031,7.48775 -14.1429,0 -25.6097,-11.46669 -25.6097,-25.60966 -0.011,-7.0624 2.8709,-13.46921 7.4962,-18.09469 4.6437,-4.64361 11.0323,-7.50589 18.1129,-7.5144 14.1424,5.7e-4 25.6091,11.46727 25.6096,25.60967 z"
|
||||
id="path250437" />
|
||||
<path
|
||||
style="fill:#e6e6e6;fill-opacity:1;stroke-width:0.802035"
|
||||
d="m 1755.4268,-682.94948 c -11.4044,0.009 -22.1361,4.44853 -30.1994,12.51191 -8.0464,8.04637 -12.4853,18.77693 -12.4944,30.18182 0.011,11.38673 4.4395,22.12695 12.4944,30.18182 8.0639,8.06395 18.795,12.48639 30.1909,12.5034 11.4037,-0.009 22.1269,-4.4576 30.1727,-12.5034 8.0639,-8.06395 12.5125,-18.78602 12.521,-30.19032 6e-4,-23.53626 -19.1484,-42.68523 -42.6852,-42.68523 z m 25.6011,42.68523 c -0.011,7.07998 -2.8623,13.47771 -7.5059,18.12133 -4.6255,4.62548 -11.0414,7.49683 -18.1032,7.48775 -14.143,0 -25.6096,-11.46669 -25.6096,-25.60966 -0.011,-7.06241 2.8707,-13.46921 7.4962,-18.09469 4.6436,-4.64361 11.0323,-7.50589 18.1129,-7.5144 14.1424,5.7e-4 25.6091,11.46727 25.6096,25.60967 z"
|
||||
id="path250439" />
|
||||
<path
|
||||
style="fill:#4A9EFF;fill-opacity:1;stroke-width:1.38175"
|
||||
d="m 1795.5329,-776.35953 c -11.454,10.78389 -26.6678,16.72333 -42.8584,16.70911 -16.1745,9.4e-4 -31.4216,-5.93944 -42.8604,-16.70911 -11.4539,-10.78389 -17.7625,-25.1381 -17.7776,-40.38154 0,-15.22732 6.2934,-29.5673 17.7473,-40.35119 11.455,-10.78485 26.685,-16.7091 42.8907,-16.73946 33.4345,0.015 60.6379,25.62729 60.6379,57.09065 -0.016,15.27284 -6.3246,29.59669 -17.7795,40.38154 z"
|
||||
id="path250441" />
|
||||
<path
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke-width:1.38175"
|
||||
d="m 1706.6505,-853.77411 c -14.3177,13.48011 -22.1839,31.37331 -22.201,50.43924 -0.016,19.06307 7.8824,36.98851 22.2001,50.46863 14.3025,13.46588 33.3235,20.8871 53.5893,20.8871 20.2496,-0.015 39.2717,-7.40701 53.5893,-20.8871 14.3187,-13.48106 22.2011,-31.41976 22.2171,-50.48476 0,-39.34342 -34.0013,-71.35571 -75.7893,-71.35571 -20.2496,0.015 -39.2868,7.45156 -53.6055,20.9326 z m 110.8518,50.42311 c 0,14.92369 -6.4012,28.37408 -16.7842,38.14968 -10.3424,9.7374 -24.6678,15.80116 -40.4783,15.76298 -31.6258,0 -57.2636,-24.13816 -57.2625,-53.91266 -0.02,-14.86874 6.419,-28.35496 16.7615,-38.09234 10.383,-9.77562 24.6691,-15.80238 40.501,-15.8203 31.622,-9.4e-4 57.2613,24.13812 57.2625,53.91264 z"
|
||||
id="path250443"
|
||||
sodipodi:nodetypes="scscsccscsccscc" />
|
||||
<path
|
||||
style="fill:#f2f2f2;fill-opacity:1;stroke-width:1.45856"
|
||||
d="m 1696.0983,-869.96743 c -15.1136,14.22941 -23.417,33.11723 -23.4351,53.24295 -0.017,20.1227 8.3205,39.04455 23.4341,53.27397 15.0976,14.21439 35.176,22.04812 56.5681,22.04812 21.3752,-0.0158 41.4547,-7.81872 56.5682,-22.04812 15.1146,-14.23042 23.4351,-33.16625 23.4522,-53.29099 0,-41.53037 -35.8914,-75.32209 -80.0022,-75.32209 -21.3753,0.0158 -41.4707,7.86577 -56.5853,22.09616 z m 115.3426,53.22593 c 0,15.31768 -6.5704,29.12317 -17.2276,39.15686 -10.6155,9.99448 -25.319,16.21833 -41.5468,16.17914 -32.4607,0 -58.7756,-24.77541 -58.7742,-55.336 -0.02,-15.26129 6.5885,-29.10357 17.2039,-39.09802 10.6571,-10.0337 25.3203,-16.21958 41.5703,-16.23795 32.4569,-9.4e-4 58.7729,24.77537 58.7744,55.33597 z"
|
||||
id="path250445"
|
||||
sodipodi:nodetypes="scscsccscsccscc" />
|
||||
<path
|
||||
style="fill:#f2705b;fill-opacity:1;stroke-width:1.10803"
|
||||
d="m 1837.2865,-871.1305 h -169.0289 c 13.9742,-23.28887 30.1784,-45.42157 48.7612,-66.06774 l 35.7532,-39.72324 35.7533,39.72324 c 18.5084,20.56359 34.7869,42.77887 48.7612,66.06774 z"
|
||||
id="path250447" />
|
||||
<path
|
||||
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.658127"
|
||||
d="m 1786.964,-324.70168 c 6.0498,10.4242 9.3074,22.24449 9.3074,34.53015 0,13.49561 -3.9091,26.43278 -11.1223,37.55502 l -15.5898,-21.26722 -8.0042,29.22498 c -1.815,6.84088 -4.7468,13.30947 -8.6093,19.31269 -3.816,-5.95669 -6.7013,-12.47181 -8.6093,-19.31269 l -8.0043,-29.22498 -15.5897,21.26722 c -7.2132,-11.12224 -11.1223,-24.05941 -11.1223,-37.55502 0,-12.28566 3.2576,-24.10595 9.3073,-34.53015 4.6537,-1.95453 9.447,-3.49024 14.4729,-4.60712 6.2825,-1.44263 12.7976,-2.18722 19.4989,-2.18722 6.7012,0 13.1698,0.79113 19.4522,2.23376 5.1191,1.11687 9.9589,2.60605 14.6125,4.56058 z"
|
||||
id="path250449" />
|
||||
<path
|
||||
style="fill:#454948;fill-opacity:1;stroke-width:1.22212"
|
||||
d="m 1760.8084,-1076.1934 c -4.9405,-2.9729 -11.1323,-2.9729 -16.0728,0 -6.6798,4.0113 -177.8786,90.4788 -177.8786,317.16201 0,91.52932 91.5257,287.48521 108.9788,421.34533 2.5298,19.42073 19.191,34.06662 38.7352,34.06662 h 76.4021 c 19.5441,0 36.2053,-14.64589 38.7351,-34.06662 17.4531,-133.86012 108.9788,-329.81601 108.9788,-421.34533 0,-226.68321 -171.1988,-313.15261 -177.8786,-317.16201 z"
|
||||
id="path250451"
|
||||
sodipodi:nodetypes="ccscsscsc" />
|
||||
<path
|
||||
id="path250453"
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:7.55906;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke markers fill"
|
||||
d="m 1752.7725,-1120.4898 -2e-4,816.87066 h 38.2012 c 19.5441,0 36.2045,-14.64568 38.7343,-34.06641 17.4531,-133.86012 108.9787,-329.81625 108.9787,-421.34557 0,-92.2271 -28.3393,-161.24201 -62.407,-210.93929 -19.6186,-30.49789 -41.767,-59.70159 -66.4001,-87.07039 z"
|
||||
sodipodi:nodetypes="ccscscsc" />
|
||||
<path
|
||||
style="fill:#4A9EFF;fill-opacity:1;stroke-width:0.802037"
|
||||
d="m 1779.5567,-616.10815 c -6.4509,6.45104 -15.0287,9.99501 -24.1384,9.99558 -9.1183,-0.009 -17.6966,-3.55362 -24.1476,-10.00465 -6.4511,-6.45105 -9.9956,-15.02938 -10.0047,-24.14761 0,-9.10916 3.5621,-17.70509 9.9956,-24.13855 6.451,-6.45104 15.0288,-9.995 24.1561,-10.01315 18.8314,0.009 34.1523,15.32938 34.1523,34.15226 -0.018,9.12675 -3.5621,17.70507 -9.9956,24.13854 -0.018,0.0175 -0.018,0.0175 -0.018,0.0175 z"
|
||||
id="path250455" />
|
||||
<g
|
||||
id="g250461"
|
||||
transform="matrix(1.2221209,0,0,1.2221209,1439.9078,-817.55053)"
|
||||
style="fill:#1a1c1b;fill-opacity:1">
|
||||
<g
|
||||
id="g250459"
|
||||
style="fill:#1a1c1b;fill-opacity:1">
|
||||
<path
|
||||
style="fill:#1a1c1b;fill-opacity:1"
|
||||
d="m 256.001,451.35877 c -4.422,0 -8,-3.582 -8,-8 V 249.57205 c 0,-4.418 3.578,-8 8,-8 4.422,0 8,3.582 8,8 v 193.78672 c 0,4.418 -3.578,8 -8,8 z"
|
||||
id="path250457"
|
||||
sodipodi:nodetypes="sssssss" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke-width:0.802035"
|
||||
d="m 1762.1431,-674.93939 c -11.4043,0.009 -22.1359,4.44852 -30.1994,12.5119 -8.0463,8.04637 -12.4852,18.77693 -12.4943,30.18182 0.011,11.38673 4.4394,22.12695 12.4943,30.18183 8.064,8.06394 18.7951,12.48638 30.1909,12.5034 11.4038,-0.009 22.127,-4.45761 30.1728,-12.5034 8.0639,-8.06396 12.5124,-18.78603 12.521,-30.19033 5e-4,-23.53626 -19.1485,-42.68522 -42.6853,-42.68522 z m 25.6011,42.68522 c -0.011,7.07998 -2.8622,13.47772 -7.5059,18.12133 -4.6254,4.62548 -11.0413,7.49683 -18.1031,7.48775 -14.1429,0 -25.6097,-11.46669 -25.6097,-25.60966 -0.011,-7.0624 2.8709,-13.46921 7.4962,-18.09469 4.6437,-4.64361 11.0323,-7.50589 18.1129,-7.5144 14.1424,5.7e-4 25.6091,11.46727 25.6096,25.60967 z"
|
||||
id="path250463" />
|
||||
<path
|
||||
style="fill:#e6e6e6;fill-opacity:1;stroke-width:0.802035"
|
||||
d="m 1755.4268,-682.94948 c -11.4044,0.009 -22.1361,4.44853 -30.1994,12.51191 -8.0464,8.04637 -12.4853,18.77693 -12.4944,30.18182 0.011,11.38673 4.4395,22.12695 12.4944,30.18182 8.0639,8.06395 18.795,12.48639 30.1909,12.5034 11.4037,-0.009 22.1269,-4.4576 30.1727,-12.5034 8.0639,-8.06395 12.5125,-18.78602 12.521,-30.19032 6e-4,-23.53626 -19.1484,-42.68523 -42.6852,-42.68523 z m 25.6011,42.68523 c -0.011,7.07998 -2.8623,13.47771 -7.5059,18.12133 -4.6255,4.62548 -11.0414,7.49683 -18.1032,7.48775 -14.143,0 -25.6096,-11.46669 -25.6096,-25.60966 -0.011,-7.06241 2.8707,-13.46921 7.4962,-18.09469 4.6436,-4.64361 11.0323,-7.50589 18.1129,-7.5144 14.1424,5.7e-4 25.6091,11.46727 25.6096,25.60967 z"
|
||||
id="path250465" />
|
||||
<path
|
||||
style="fill:#4A9EFF;fill-opacity:1;stroke-width:1.38175"
|
||||
d="m 1795.5329,-776.35953 c -11.454,10.78389 -26.6678,16.72333 -42.8584,16.70911 -16.1745,9.4e-4 -31.4216,-5.93944 -42.8604,-16.70911 -11.4539,-10.78389 -17.7625,-25.1381 -17.7776,-40.38154 0,-15.22732 6.2934,-29.5673 17.7473,-40.35119 11.455,-10.78485 26.685,-16.7091 42.8907,-16.73946 33.4345,0.015 60.6379,25.62729 60.6379,57.09065 -0.016,15.27284 -6.3246,29.59669 -17.7795,40.38154 z"
|
||||
id="path250467" />
|
||||
<path
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke-width:1.38175"
|
||||
d="m 1706.6505,-853.77411 c -14.3177,13.48011 -22.1839,31.37331 -22.201,50.43924 -0.016,19.06307 7.8824,36.98851 22.2001,50.46863 14.3025,13.46588 33.3235,20.8871 53.5893,20.8871 20.2496,-0.015 39.2717,-7.40701 53.5893,-20.8871 14.3187,-13.48106 22.2011,-31.41976 22.2171,-50.48476 0,-39.34342 -34.0013,-71.35571 -75.7893,-71.35571 -20.2496,0.015 -39.2868,7.45156 -53.6055,20.9326 z m 110.8518,50.42311 c 0,14.92369 -6.4012,28.37408 -16.7842,38.14968 -10.3424,9.7374 -24.6678,15.80116 -40.4783,15.76298 -31.6258,0 -57.2636,-24.13816 -57.2625,-53.91266 -0.02,-14.86874 6.419,-28.35496 16.7615,-38.09234 10.383,-9.77562 24.6691,-15.80238 40.501,-15.8203 31.622,-9.4e-4 57.2613,24.13812 57.2625,53.91264 z"
|
||||
id="path250469"
|
||||
sodipodi:nodetypes="scscsccscsccscc" />
|
||||
<path
|
||||
style="fill:#f2f2f2;fill-opacity:1;stroke-width:1.45856"
|
||||
d="m 1696.0983,-869.96743 c -15.1136,14.22941 -23.417,33.11723 -23.4351,53.24295 -0.017,20.1227 8.3205,39.04455 23.4341,53.27397 15.0976,14.21439 35.176,22.04812 56.5681,22.04812 21.3752,-0.0158 41.4547,-7.81872 56.5682,-22.04812 15.1146,-14.23042 23.4351,-33.16625 23.4522,-53.29099 0,-41.53037 -35.8914,-75.32209 -80.0022,-75.32209 -21.3753,0.0158 -41.4707,7.86577 -56.5853,22.09616 z m 115.3426,53.22593 c 0,15.31768 -6.5704,29.12317 -17.2276,39.15686 -10.6155,9.99448 -25.319,16.21833 -41.5468,16.17914 -32.4607,0 -58.7756,-24.77541 -58.7742,-55.336 -0.02,-15.26129 6.5885,-29.10357 17.2039,-39.09802 10.6571,-10.0337 25.3203,-16.21958 41.5703,-16.23795 32.4569,-9.4e-4 58.7729,24.77537 58.7744,55.33597 z"
|
||||
id="path250471"
|
||||
sodipodi:nodetypes="scscsccscsccscc" />
|
||||
<path
|
||||
style="fill:#f2705b;fill-opacity:1;stroke-width:1.10803"
|
||||
d="m 1887.7604,-951.51756 c -91.5372,-11.38291 -181.4702,-10.94666 -269.9766,0 22.3199,-37.19749 48.2016,-72.54824 77.8824,-105.52484 l 57.1058,-63.4468 57.1059,63.4468 c 29.5621,32.8446 55.5624,68.32735 77.8825,105.52484 z"
|
||||
id="path250473"
|
||||
sodipodi:nodetypes="ccscsc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 21 KiB |
|
After Width: | Height: | Size: 562 KiB |
@@ -0,0 +1,36 @@
|
||||
---
|
||||
command: artix-service
|
||||
|
||||
services:
|
||||
- name: "acpid"
|
||||
action: "enable"
|
||||
- name: "bluetoothd"
|
||||
action: "enable"
|
||||
- name: "cronie"
|
||||
action: "enable"
|
||||
- name: "cupsd"
|
||||
action: "enable"
|
||||
- name: "dbus"
|
||||
action: "enable"
|
||||
- name: "dhcpcd"
|
||||
action: "enable"
|
||||
- name: "NetworkManager"
|
||||
action: "enable"
|
||||
- name: "power-profiles-daemon"
|
||||
action: "enable"
|
||||
- name: "sddm"
|
||||
action: "enable"
|
||||
- name: "lightdm"
|
||||
action: "enable"
|
||||
- name: "lxdm"
|
||||
action: "enable"
|
||||
- name: "ly"
|
||||
action: "enable"
|
||||
- name: "greetd"
|
||||
action: "enable"
|
||||
- name: "ntpd"
|
||||
action: "enable"
|
||||
- name: "syslog-ng"
|
||||
action: "enable"
|
||||
- name: "userspawn"
|
||||
action: "enable"
|
||||
@@ -0,0 +1,51 @@
|
||||
---
|
||||
modules-search: [ /usr/lib/calamares/modules, /etc/calamares/modules ]
|
||||
|
||||
sequence:
|
||||
- show:
|
||||
- welcome
|
||||
- locale
|
||||
- keyboard
|
||||
- partition
|
||||
- users
|
||||
- summary
|
||||
- exec:
|
||||
- partition
|
||||
- mount
|
||||
- unpackfs
|
||||
- machineid
|
||||
- fstab
|
||||
- locale
|
||||
- keyboard
|
||||
- localecfg
|
||||
- luksopenswaphookcfg
|
||||
- luksbootkeyfile
|
||||
- initcpiocfg
|
||||
- initcpio
|
||||
- users
|
||||
- displaymanager
|
||||
- networkcfg
|
||||
- hwclock
|
||||
- services-artix
|
||||
- grubcfg
|
||||
- bootloader
|
||||
- postcfg
|
||||
- umount
|
||||
- show:
|
||||
- finished
|
||||
|
||||
branding: euri
|
||||
|
||||
prompt-install: false
|
||||
|
||||
dont-chroot: false
|
||||
|
||||
oem-setup: false
|
||||
|
||||
disable-cancel: false
|
||||
|
||||
disable-cancel-during-exec: false
|
||||
|
||||
hide-back-and-next-during-exec: false
|
||||
|
||||
quit-at-end: false
|
||||
@@ -0,0 +1,63 @@
|
||||
---
|
||||
modules-search: [ /usr/lib/calamares/modules, /etc/calamares/modules ]
|
||||
|
||||
sequence:
|
||||
- show:
|
||||
- welcome
|
||||
- locale
|
||||
- keyboard
|
||||
- packagechooser@de
|
||||
- packagechooser@dm
|
||||
- netinstall
|
||||
- partition
|
||||
- users
|
||||
- summary
|
||||
- exec:
|
||||
- partition
|
||||
- mount
|
||||
- basestrap
|
||||
- machineid
|
||||
- packages
|
||||
- fstab
|
||||
- locale
|
||||
- keyboard
|
||||
- localecfg
|
||||
- luksopenswaphookcfg
|
||||
- luksbootkeyfile
|
||||
- initcpiocfg
|
||||
- initcpio
|
||||
- users
|
||||
- displaymanager
|
||||
- networkcfg
|
||||
- hwclock
|
||||
- services-artix
|
||||
- grubcfg
|
||||
- bootloader
|
||||
- postcfg
|
||||
- umount
|
||||
- show:
|
||||
- finished
|
||||
|
||||
instances:
|
||||
- id: de
|
||||
module: packagechooser
|
||||
config: packagechooser_de.conf
|
||||
- id: dm
|
||||
module: packagechooser
|
||||
config: packagechooser_dm.conf
|
||||
|
||||
branding: euri
|
||||
|
||||
prompt-install: false
|
||||
|
||||
dont-chroot: false
|
||||
|
||||
oem-setup: false
|
||||
|
||||
disable-cancel: false
|
||||
|
||||
disable-cancel-during-exec: false
|
||||
|
||||
hide-back-and-next-during-exec: false
|
||||
|
||||
quit-at-end: false
|
||||
@@ -0,0 +1,86 @@
|
||||
import QtQml 2.15
|
||||
import QtQuick 2.15
|
||||
|
||||
Item {
|
||||
id: root
|
||||
|
||||
Component.onCompleted: onActivate()
|
||||
|
||||
function onActivate() {
|
||||
timer.restart()
|
||||
slider.reset()
|
||||
artwork.state = "nearGround"
|
||||
}
|
||||
|
||||
function onLeave() {
|
||||
}
|
||||
|
||||
width: 920
|
||||
height: 630
|
||||
|
||||
Timer {
|
||||
id: timer
|
||||
interval: 20000
|
||||
running: false
|
||||
repeat: true
|
||||
onTriggered: slider.currentSlideIndex++
|
||||
}
|
||||
|
||||
MouseArea {
|
||||
anchors.fill: parent
|
||||
onClicked: {
|
||||
timer.restart()
|
||||
slider.currentSlideIndex++
|
||||
}
|
||||
}
|
||||
|
||||
Artwork {
|
||||
id: artwork
|
||||
anchors.fill: parent
|
||||
}
|
||||
|
||||
Slider {
|
||||
id: slider
|
||||
height: 50
|
||||
slides: [
|
||||
Slide {
|
||||
title: qsTr("Welcome to Euri Linux")
|
||||
secondaryTitle: qsTr("Artix Linux, dinit init")
|
||||
body: qsTr("A rolling-release distribution built for performance, simplicity, and choice. Select your desktop, customize your experience, and enjoy a system that's truly yours.")
|
||||
footer: qsTr("Click or tap to advance")
|
||||
},
|
||||
Slide {
|
||||
title: qsTr("Desktop Environments")
|
||||
secondaryTitle: qsTr("Ten options to choose from")
|
||||
body: qsTr("Plasma, Plasma (Minimal), Xfce, Cinnamon, MATE, LXQt, i3, Sway, Hyprland, or COSMIC — pick the environment that fits your workflow during installation.")
|
||||
},
|
||||
Slide {
|
||||
title: qsTr("Init System")
|
||||
secondaryTitle: qsTr("dinit by default")
|
||||
body: qsTr("Fast, parallel service boot with dinit. runit and s6 are also available for selection during online installation.")
|
||||
},
|
||||
Slide {
|
||||
title: qsTr("Installation Modes")
|
||||
secondaryTitle: qsTr("Online by default")
|
||||
body: qsTr("All packages are installed online from the Artix and Euri Linux repositories, so you always get the latest versions. Choose your DE, DM, and additional packages during installation.")
|
||||
},
|
||||
Slide {
|
||||
title: qsTr("Built on Artix Linux")
|
||||
secondaryTitle: qsTr("Rolling, stable, lightweight")
|
||||
body: qsTr("Access to the Artix and Arch Linux repositories. Full AUR support. The latest packages without the bloat.")
|
||||
},
|
||||
Slide {
|
||||
title: qsTr("Thank You")
|
||||
secondaryTitle: qsTr("Your installation is in progress")
|
||||
body: qsTr("Sit back and relax while your system is being configured. We hope you enjoy Euri Linux.")
|
||||
footer: qsTr("github.com/Euri-Linux")
|
||||
}
|
||||
]
|
||||
|
||||
anchors {
|
||||
centerIn: parent
|
||||
horizontalCenterOffset: -100
|
||||
verticalCenterOffset: -57
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="800.00085"
|
||||
height="439.99997"
|
||||
viewBox="0 0 800.00094 439.99999"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
sodipodi:docname="slide4_rocket_smoke.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#8E9099"
|
||||
bordercolor="#6a6b72"
|
||||
borderopacity="1"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.979899"
|
||||
inkscape:cx="232.08255"
|
||||
inkscape:cy="248.24499"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1914"
|
||||
inkscape:window-height="1047"
|
||||
inkscape:window-x="3"
|
||||
inkscape:window-y="3"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
units="px"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-13.87441,-610.36914)">
|
||||
<path
|
||||
id="path210473"
|
||||
style="display:inline;fill:#E3E2E6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.863131;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke"
|
||||
d="m 219.70371,964.38398 c 5.74809,0 11.35816,1.7615 16.0792,5.0405 8.23733,-13.3045 22.77098,-21.401 38.41909,-21.4029 17.9044,0.011 34.11336,10.5935 41.32912,26.9796 2.92683,-0.9972 5.99769,-1.5064 9.08973,-1.5072 12.93328,0.01 24.20443,8.81 27.34703,21.3556 h 461.90741 l 0.0265,55.51982 H 13.90359 l -0.0264,-55.51982 h 29.12352 4.28519 c 3.46141,-6.7474 10.40724,-10.9909 17.99074,-10.9913 5.45416,0 10.67505,2.2129 14.47775,6.1228 9.11433,-18.8829 28.23076,-30.8844 49.19822,-30.8872 1.61095,0.01 3.22077,0.087 4.82472,0.2362 32.88979,-15.16055 58.3631,-12.52455 85.92638,5.0539 z"
|
||||
sodipodi:nodetypes="ccccccccccccccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,78 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="800.00085"
|
||||
height="439.99997"
|
||||
viewBox="0 0 800.00094 439.99999"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
||||
sodipodi:docname="sky_dark.svg"
|
||||
xml:space="preserve"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
|
||||
id="defs2"><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath290923"><rect
|
||||
style="opacity:0.7;fill:#2d5a8a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.70918;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
|
||||
id="rect290925"
|
||||
width="309.65643"
|
||||
height="170.30928"
|
||||
x="-358.01489"
|
||||
y="775.27844" /></clipPath><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath292441"><rect
|
||||
style="opacity:0.7;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.18763;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
|
||||
id="rect292443"
|
||||
width="478.64374"
|
||||
height="263.22327"
|
||||
x="-510.89438"
|
||||
y="765.67975" /></clipPath></defs><sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#8E9099"
|
||||
bordercolor="#6a6b72"
|
||||
borderopacity="1"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.7"
|
||||
inkscape:cx="484.28571"
|
||||
inkscape:cy="85.714286"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1914"
|
||||
inkscape:window-height="1047"
|
||||
inkscape:window-x="1923"
|
||||
inkscape:window-y="3"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
units="px"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:showpageshadow="0"
|
||||
inkscape:deskcolor="#8E9099"
|
||||
showguides="true" /><metadata
|
||||
id="metadata5"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-13.87441,-610.36914)"><rect
|
||||
style="display:inline;fill:#103e49;fill-opacity:1;fill-rule:evenodd;stroke-width:0.41201"
|
||||
id="rect75224"
|
||||
width="800"
|
||||
height="440"
|
||||
x="13.874837"
|
||||
y="610.36914"
|
||||
inkscape:export-filename="/run/media/bogdan/WORK/Work2022/Manjaro2022/4Calamares/2022/slide1.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /></g></svg>
|
||||
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 46 KiB |
@@ -0,0 +1,64 @@
|
||||
/* Euri Linux Calamares theme — dark */
|
||||
QWidget {
|
||||
font-family: "Noto Sans", "DejaVu Sans", sans-serif;
|
||||
font-size: 10pt;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
QMainWindow {
|
||||
background-color: #20252B;
|
||||
}
|
||||
QLabel#titleLabel {
|
||||
font-size: 18pt;
|
||||
font-weight: bold;
|
||||
color: #4A9EFF;
|
||||
}
|
||||
QLabel#subtitleLabel {
|
||||
font-size: 11pt;
|
||||
color: #C8D6E5;
|
||||
}
|
||||
QPushButton {
|
||||
background-color: #4A9EFF;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
padding: 7px 18px;
|
||||
min-height: 24px;
|
||||
font-weight: bold;
|
||||
}
|
||||
QPushButton:hover {
|
||||
background-color: #3B8AE5;
|
||||
}
|
||||
QPushButton:pressed {
|
||||
background-color: #2D7BD4;
|
||||
}
|
||||
QPushButton:disabled {
|
||||
background-color: #3A3F47;
|
||||
color: #7F8C8D;
|
||||
}
|
||||
QComboBox {
|
||||
padding: 5px 10px;
|
||||
border: 1px solid #3A3F47;
|
||||
border-radius: 4px;
|
||||
background: #2C3138;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
QLineEdit {
|
||||
padding: 6px 10px;
|
||||
border: 1px solid #3A3F47;
|
||||
border-radius: 4px;
|
||||
background: #2C3138;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
QProgressBar {
|
||||
border: 1px solid #3A3F47;
|
||||
border-radius: 4px;
|
||||
background: #2C3138;
|
||||
text-align: center;
|
||||
height: 20px;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
QProgressBar::chunk {
|
||||
background: qlineargradient(x1:0, y1:0, x2:1, y2:0,
|
||||
stop:0 #4A9EFF, stop:1 #8BC4FF);
|
||||
border-radius: 3px;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
---
|
||||
unpack:
|
||||
- source: "/run/archiso/bootmnt/arch/x86_64/airootfs.sfs"
|
||||
sourcefs: "squashfs"
|
||||
destination: "/"
|
||||
...
|
||||
@@ -0,0 +1,10 @@
|
||||
---
|
||||
requirements:
|
||||
internet: true
|
||||
storage: 8.0
|
||||
ram: 2.0
|
||||
power: true
|
||||
required:
|
||||
- storage
|
||||
- ram
|
||||
- power
|
||||