#
This commit is contained in:
23
calamares/branding/manjaro/branding.desc
Normal file
23
calamares/branding/manjaro/branding.desc
Normal file
@ -0,0 +1,23 @@
|
||||
---
|
||||
componentName: manjaro
|
||||
|
||||
strings:
|
||||
productName: TROMjaro Linux
|
||||
shortProductName: TROMjaro
|
||||
version: 18.1.2
|
||||
shortVersion: 18.1.2
|
||||
versionedName: TROMjaro Linux 18.1.2 "Juhraya"
|
||||
shortVersionedName: TROMjaro 18.1.2
|
||||
bootloaderEntryName: TROMjaro
|
||||
|
||||
images:
|
||||
productLogo: "logo.png"
|
||||
productIcon: "logo.png"
|
||||
productWelcome: "languages.png"
|
||||
|
||||
slideshow: "show.qml"
|
||||
|
||||
style:
|
||||
sidebarBackground: "#454948"
|
||||
sidebarText: "#efefef"
|
||||
sidebarTextSelect: "#7abaec"
|
BIN
calamares/branding/manjaro/languages.png
Normal file
BIN
calamares/branding/manjaro/languages.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 19 KiB |
BIN
calamares/branding/manjaro/logo.png
Normal file
BIN
calamares/branding/manjaro/logo.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 11 KiB |
224
calamares/branding/manjaro/show.qml
Normal file
224
calamares/branding/manjaro/show.qml
Normal file
@ -0,0 +1,224 @@
|
||||
/* === This file is part of Calamares - <http://github.com/calamares> ===
|
||||
*
|
||||
* Copyright 2015, Teo Mrnjavac <teo@kde.org>
|
||||
*
|
||||
* Calamares is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Calamares is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Slides images dimensions are 800x440px.
|
||||
*/
|
||||
|
||||
import QtQuick 2.0;
|
||||
import calamares.slideshow 1.0;
|
||||
|
||||
Presentation
|
||||
{
|
||||
id: presentation
|
||||
|
||||
Timer {
|
||||
interval: 15000
|
||||
running: true
|
||||
repeat: true
|
||||
onTriggered: presentation.goToNextSlide()
|
||||
}
|
||||
|
||||
Slide {
|
||||
anchors.fill: parent
|
||||
|
||||
Image {
|
||||
id: background
|
||||
source: "slide1.png"
|
||||
|
||||
|
||||
anchors.fill: parent
|
||||
}
|
||||
Text {
|
||||
anchors.horizontalCenter: background1.horizontalCenter
|
||||
anchors.top: background1.bottom
|
||||
text: ""
|
||||
wrapMode: Text.WordWrap
|
||||
width: 800
|
||||
horizontalAlignment: Text.Center
|
||||
}
|
||||
}
|
||||
Slide {
|
||||
anchors.fill: parent
|
||||
|
||||
|
||||
Image {
|
||||
id: background1
|
||||
source: "slide2.png"
|
||||
|
||||
|
||||
anchors.fill: parent
|
||||
}
|
||||
Text {
|
||||
anchors.horizontalCenter: background1.horizontalCenter
|
||||
anchors.top: background1.bottom
|
||||
text: ""
|
||||
wrapMode: Text.WordWrap
|
||||
width: 800
|
||||
horizontalAlignment: Text.Center
|
||||
}
|
||||
}
|
||||
Slide {
|
||||
anchors.fill: parent
|
||||
Image {
|
||||
id: background2
|
||||
source: "slide3.png"
|
||||
|
||||
|
||||
anchors.fill: parent
|
||||
}
|
||||
Text {
|
||||
anchors.horizontalCenter: background1.horizontalCenter
|
||||
anchors.top: background1.bottom
|
||||
text: ""
|
||||
wrapMode: Text.WordWrap
|
||||
width: 800
|
||||
horizontalAlignment: Text.Center
|
||||
}
|
||||
}
|
||||
Slide {
|
||||
anchors.fill: parent
|
||||
Image {
|
||||
id: background3
|
||||
source: "slide4.png"
|
||||
|
||||
|
||||
anchors.fill: parent
|
||||
}
|
||||
Text {
|
||||
anchors.horizontalCenter: background1.horizontalCenter
|
||||
anchors.top: background1.bottom
|
||||
text: ""
|
||||
wrapMode: Text.WordWrap
|
||||
width: 800
|
||||
horizontalAlignment: Text.Center
|
||||
}
|
||||
}
|
||||
Slide {
|
||||
anchors.fill: parent
|
||||
Image {
|
||||
id: background4
|
||||
source: "slide5.png"
|
||||
|
||||
|
||||
anchors.fill: parent
|
||||
}
|
||||
Text {
|
||||
anchors.horizontalCenter: background1.horizontalCenter
|
||||
anchors.top: background1.bottom
|
||||
text: ""
|
||||
wrapMode: Text.WordWrap
|
||||
width: 800
|
||||
horizontalAlignment: Text.Center
|
||||
}
|
||||
}
|
||||
Slide {
|
||||
anchors.fill: parent
|
||||
Image {
|
||||
id: background5
|
||||
source: "slide6.png"
|
||||
|
||||
|
||||
anchors.fill: parent
|
||||
}
|
||||
Text {
|
||||
anchors.horizontalCenter: background1.horizontalCenter
|
||||
anchors.top: background1.bottom
|
||||
text: ""
|
||||
wrapMode: Text.WordWrap
|
||||
width: 800
|
||||
horizontalAlignment: Text.Center
|
||||
}
|
||||
}
|
||||
|
||||
Slide {
|
||||
anchors.fill: parent
|
||||
Image {
|
||||
id: background6
|
||||
source: "slide7.png"
|
||||
|
||||
|
||||
anchors.fill: parent
|
||||
}
|
||||
Text {
|
||||
anchors.horizontalCenter: background2.horizontalCenter
|
||||
anchors.top: background2.bottom
|
||||
text: ""
|
||||
wrapMode: Text.WordWrap
|
||||
width: 800
|
||||
horizontalAlignment: Text.Center
|
||||
}
|
||||
}
|
||||
|
||||
Slide {
|
||||
anchors.fill: parent
|
||||
Image {
|
||||
id: background7
|
||||
source: "slide8.png"
|
||||
|
||||
|
||||
anchors.fill: parent
|
||||
}
|
||||
Text {
|
||||
anchors.horizontalCenter: background3.horizontalCenter
|
||||
anchors.top: background3.bottom
|
||||
text: ""
|
||||
wrapMode: Text.WordWrap
|
||||
width: 800
|
||||
horizontalAlignment: Text.Center
|
||||
}
|
||||
}
|
||||
|
||||
Slide {
|
||||
anchors.fill: parent
|
||||
Image {
|
||||
id: background8
|
||||
source: "slide9.png"
|
||||
|
||||
|
||||
anchors.fill: parent
|
||||
}
|
||||
Text {
|
||||
anchors.horizontalCenter: background4.horizontalCenter
|
||||
anchors.top: background4.bottom
|
||||
text: ""
|
||||
wrapMode: Text.WordWrap
|
||||
width: 800
|
||||
horizontalAlignment: Text.Center
|
||||
}
|
||||
}
|
||||
|
||||
Slide {
|
||||
anchors.fill: parent
|
||||
Image {
|
||||
id: background9
|
||||
source: "slide10.png"
|
||||
|
||||
|
||||
anchors.fill: parent
|
||||
}
|
||||
Text {
|
||||
anchors.horizontalCenter: background5.horizontalCenter
|
||||
anchors.top: background5.bottom
|
||||
text: ""
|
||||
wrapMode: Text.WordWrap
|
||||
width: 800
|
||||
horizontalAlignment: Text.Center
|
||||
}
|
||||
}
|
||||
}
|
BIN
calamares/branding/manjaro/slide1.png
Normal file
BIN
calamares/branding/manjaro/slide1.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 982 KiB |
BIN
calamares/branding/manjaro/slide10.png
Normal file
BIN
calamares/branding/manjaro/slide10.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 54 KiB |
BIN
calamares/branding/manjaro/slide2.png
Normal file
BIN
calamares/branding/manjaro/slide2.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 273 KiB |
BIN
calamares/branding/manjaro/slide3.png
Normal file
BIN
calamares/branding/manjaro/slide3.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 278 KiB |
BIN
calamares/branding/manjaro/slide4.png
Normal file
BIN
calamares/branding/manjaro/slide4.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 95 KiB |
BIN
calamares/branding/manjaro/slide5.png
Normal file
BIN
calamares/branding/manjaro/slide5.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 63 KiB |
BIN
calamares/branding/manjaro/slide6.png
Normal file
BIN
calamares/branding/manjaro/slide6.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 134 KiB |
BIN
calamares/branding/manjaro/slide7.png
Normal file
BIN
calamares/branding/manjaro/slide7.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 48 KiB |
BIN
calamares/branding/manjaro/slide8.png
Normal file
BIN
calamares/branding/manjaro/slide8.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 39 KiB |
BIN
calamares/branding/manjaro/slide9.png
Normal file
BIN
calamares/branding/manjaro/slide9.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 80 KiB |
BIN
calamares/branding/manjaro/squid.png
Normal file
BIN
calamares/branding/manjaro/squid.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 8.1 KiB |
31
calamares/branding/manjaro/stylesheet.qss
Normal file
31
calamares/branding/manjaro/stylesheet.qss
Normal file
@ -0,0 +1,31 @@
|
||||
/*
|
||||
A branding component can ship a stylesheet (like this one)
|
||||
which is applied to parts of the Calamares user-interface.
|
||||
In principle, all parts can be styled through CSS.
|
||||
Missing parts should be filed as issues.
|
||||
|
||||
The IDs are based on the object names in the C++ code.
|
||||
|
||||
Documentation for styling Qt Widgets through a stylesheet
|
||||
can be found at
|
||||
https://doc.qt.io/qt-5/stylesheet-examples.html
|
||||
In Calamares, styling widget classes is supported (e.g.
|
||||
using `QComboBox` as a selector). You can also use specific
|
||||
object names (ids), which you can find through debugging tools.
|
||||
*/
|
||||
|
||||
|
||||
#mainText{
|
||||
font : bold 18px;
|
||||
}
|
||||
|
||||
#logoApp {
|
||||
min-height: 80px;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
|
||||
QVBoxLayout {
|
||||
background-color: pink;
|
||||
color: pink;
|
||||
}
|
Reference in New Issue
Block a user