Initial commit

This commit is contained in:
hygienic-books 2022-03-04 23:58:22 +01:00
parent c9e66db36a
commit 57fbcb7217
30 changed files with 2464 additions and 0 deletions

3
.gitignore vendored
View File

@ -231,3 +231,6 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/ #.idea/
# User-specific stuff
.idea

25
BreezeMenuStyle.qml Normal file
View File

@ -0,0 +1,25 @@
import QtQuick 2.2
import org.kde.plasma.core 2.0 as PlasmaCore
import QtQuick.Controls.Styles 1.4 as QQCS
import QtQuick.Controls 1.3 as QQC
QQCS.MenuStyle {
frame: Rectangle {
color: PlasmaCore.ColorScope.backgroundColor
border.color: Qt.tint(PlasmaCore.ColorScope.textColor, Qt.rgba(color.r, color.g, color.b, 0.7))
border.width: 1
}
itemDelegate.label: QQC.Label {
height: contentHeight * 1.2
verticalAlignment: Text.AlignVCenter
color: styleData.selected ? PlasmaCore.ColorScope.highlightedTextColor : PlasmaCore.ColorScope.textColor
font.pointSize: config.fontSize
text: styleData.text
}
itemDelegate.background: Rectangle {
visible: styleData.selected
color: PlasmaCore.ColorScope.highlightColor
}
}

37
KeyboardButton.qml Normal file
View File

@ -0,0 +1,37 @@
import QtQuick 2.2
import org.kde.plasma.core 2.0 as PlasmaCore
import org.kde.plasma.components 2.0 as PlasmaComponents // Because PC3 ToolButton can't take a menu
import QtQuick.Controls 1.3 as QQC
PlasmaComponents.ToolButton {
id: keyboardButton
property int currentIndex: -1
text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Keyboard Layout: %1", instantiator.objectAt(currentIndex).shortName)
implicitWidth: minimumWidth
visible: menu.items.length > 1
Component.onCompleted: currentIndex = Qt.binding(function() {return keyboard.currentLayout});
menu: QQC.Menu {
id: keyboardMenu
style: BreezeMenuStyle {}
Instantiator {
id: instantiator
model: keyboard.layouts
onObjectAdded: keyboardMenu.insertItem(index, object)
onObjectRemoved: keyboardMenu.removeItem( object )
delegate: QQC.MenuItem {
text: modelData.longName
property string shortName: modelData.shortName
onTriggered: {
keyboard.currentLayout = model.index
}
}
}
}
}

126
Login.qml Normal file
View File

@ -0,0 +1,126 @@
import "components"
import QtQuick 2.0
import QtQuick.Layouts 1.2
import org.kde.plasma.core 2.0 as PlasmaCore
import org.kde.plasma.components 3.0 as PlasmaComponents3
SessionManagementScreen {
id: root
property Item mainPasswordBox: passwordBox
property bool showUsernamePrompt: !showUserList
property string lastUserName
property bool loginScreenUiVisible: false
//the y position that should be ensured visible when the on screen keyboard is visible
property int visibleBoundary: mapFromItem(loginButton, 0, 0).y
onHeightChanged: visibleBoundary = mapFromItem(loginButton, 0, 0).y + loginButton.height + PlasmaCore.Units.smallSpacing
property int fontSize: parseInt(config.fontSize) + 2
signal loginRequest(string username, string password)
onShowUsernamePromptChanged: {
if (!showUsernamePrompt) {
lastUserName = ""
}
}
/*
* Login has been requested with the following username and password
* If username field is visible, it will be taken from that, otherwise from the "name" property of the currentIndex
*/
function startLogin() {
var username = showUsernamePrompt ? userNameInput.text : userList.selectedUser
var password = passwordBox.text
footer.enabled = false
mainStack.enabled = false
userListComponent.userList.opacity = 0.5
//this is partly because it looks nicer
//but more importantly it works round a Qt bug that can trigger if the app is closed with a TextField focused
//DAVE REPORT THE FRICKING THING AND PUT A LINK
loginButton.forceActiveFocus();
loginRequest(username, password);
}
PlasmaComponents3.TextField {
id: userNameInput
font.pointSize: fontSize + 1
Layout.fillWidth: true
text: lastUserName
visible: showUsernamePrompt
focus: showUsernamePrompt && !lastUserName //if there's a username prompt it gets focus first, otherwise password does
placeholderText: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Username")
onAccepted:
if (root.loginScreenUiVisible) {
passwordBox.forceActiveFocus()
}
}
RowLayout {
Layout.fillWidth: true
PlasmaComponents3.TextField {
id: passwordBox
font.pointSize: fontSize + 1
Layout.fillWidth: true
placeholderText: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Password")
focus: !showUsernamePrompt || lastUserName
echoMode: TextInput.Password
revealPasswordButtonShown: false // Disabled whilst SDDM does not have the breeze icon set loaded
onAccepted: {
if (root.loginScreenUiVisible) {
startLogin();
}
}
visible: root.showUsernamePrompt || userList.currentItem.needsPassword
Keys.onEscapePressed: {
mainStack.currentItem.forceActiveFocus();
}
//if empty and left or right is pressed change selection in user switch
//this cannot be in keys.onLeftPressed as then it doesn't reach the password box
Keys.onPressed: {
if (event.key === Qt.Key_Left && !text) {
userList.decrementCurrentIndex();
event.accepted = true
}
if (event.key === Qt.Key_Right && !text) {
userList.incrementCurrentIndex();
event.accepted = true
}
}
Connections {
target: sddm
function onLoginFailed() {
passwordBox.selectAll()
passwordBox.forceActiveFocus()
}
}
}
PlasmaComponents3.Button {
id: loginButton
Accessible.name: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Log In")
Layout.preferredHeight: passwordBox.implicitHeight
Layout.preferredWidth: text.length == 0 ? loginButton.Layout.preferredHeight : -1
icon.name: text.length == 0 ? (root.LayoutMirroring.enabled ? "go-previous" : "go-next") : ""
text: root.showUsernamePrompt || userList.currentItem.needsPassword ? "" : i18n("Log In")
onClicked: startLogin();
}
}
}

1011
Main.qml Normal file

File diff suppressed because it is too large Load Diff

44
SessionButton.qml Normal file
View File

@ -0,0 +1,44 @@
/*
SPDX-FileCopyrightText: 2016 David Edmundson <davidedmundson@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
import QtQuick 2.2
import org.kde.plasma.core 2.0 as PlasmaCore
import org.kde.plasma.components 2.0 as PlasmaComponents // Because PC3 ToolButton can't take a menu
import QtQuick.Controls 1.3 as QQC
PlasmaComponents.ToolButton {
id: root
property int currentIndex: -1
implicitWidth: minimumWidth
visible: menu.items.length > 1
text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Desktop Session: %1", instantiator.objectAt(currentIndex).text || "")
Component.onCompleted: {
currentIndex = sessionModel.lastIndex
}
menu: QQC.Menu {
id: menu
style: BreezeMenuStyle {}
Instantiator {
id: instantiator
model: sessionModel
onObjectAdded: menu.insertItem(index, object)
onObjectRemoved: menu.removeItem( object )
delegate: QQC.MenuItem {
text: model.name
onTriggered: {
root.currentIndex = model.index
}
}
}
}
}

BIN
background.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 554 KiB

115
components/ActionButton.qml Normal file
View File

@ -0,0 +1,115 @@
/*
SPDX-FileCopyrightText: 2016 David Edmundson <davidedmundson@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
import QtQuick 2.8
import org.kde.plasma.core 2.0 as PlasmaCore
import org.kde.plasma.components 3.0 as PlasmaComponents3
Item {
id: root
property alias text: label.text
property alias iconSource: icon.source
property alias containsMouse: mouseArea.containsMouse
property alias font: label.font
property alias labelRendering: label.renderType
property alias circleOpacity: iconCircle.opacity
property alias circleVisiblity: iconCircle.visible
property int fontSize: PlasmaCore.Theme.defaultFont.pointSize + 1
readonly property bool softwareRendering: GraphicsInfo.api === GraphicsInfo.Software
signal clicked
activeFocusOnTab: true
property int iconSize: PlasmaCore.Units.gridUnit * 3
implicitWidth: Math.max(iconSize + PlasmaCore.Units.largeSpacing * 2, label.contentWidth)
implicitHeight: iconSize + PlasmaCore.Units.smallSpacing + label.implicitHeight
opacity: activeFocus || containsMouse ? 1 : 0.85
Behavior on opacity {
PropertyAnimation { // OpacityAnimator makes it turn black at random intervals
duration: PlasmaCore.Units.longDuration
easing.type: Easing.InOutQuad
}
}
Rectangle {
id: iconCircle
anchors.centerIn: icon
width: iconSize + PlasmaCore.Units.smallSpacing
height: width
radius: width / 2
color: softwareRendering ? PlasmaCore.ColorScope.backgroundColor : PlasmaCore.ColorScope.textColor
opacity: root.activeFocus || containsMouse ? (softwareRendering ? 0.8 : 0.15) : (softwareRendering ? 0.6 : 0)
Behavior on opacity {
PropertyAnimation { // OpacityAnimator makes it turn black at random intervals
duration: PlasmaCore.Units.longDuration
easing.type: Easing.InOutQuad
}
}
}
Rectangle {
anchors.centerIn: iconCircle
width: iconCircle.width
height: width
radius: width / 2
scale: mouseArea.containsPress ? 1 : 0
color: PlasmaCore.ColorScope.textColor
opacity: 0.15
Behavior on scale {
PropertyAnimation {
duration: PlasmaCore.Units.shortDuration
easing.type: Easing.InOutQuart
}
}
}
PlasmaCore.IconItem {
id: icon
anchors {
top: parent.top
horizontalCenter: parent.horizontalCenter
}
width: iconSize
height: iconSize
colorGroup: PlasmaCore.ColorScope.colorGroup
active: mouseArea.containsMouse || root.activeFocus
}
PlasmaComponents3.Label {
id: label
font.pointSize: root.fontSize
anchors {
top: icon.bottom
topMargin: (softwareRendering ? 1.5 : 1) * PlasmaCore.Units.smallSpacing
left: parent.left
right: parent.right
}
style: softwareRendering ? Text.Outline : Text.Normal
styleColor: softwareRendering ? PlasmaCore.ColorScope.backgroundColor : "transparent" //no outline, doesn't matter
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignTop
wrapMode: Text.WordWrap
font.underline: root.activeFocus
}
MouseArea {
id: mouseArea
hoverEnabled: true
onClicked: root.clicked()
anchors.fill: parent
}
Keys.onEnterPressed: clicked()
Keys.onReturnPressed: clicked()
Keys.onSpacePressed: clicked()
Accessible.onPressAction: clicked()
Accessible.role: Accessible.Button
Accessible.name: label.text
}

43
components/Battery.qml Normal file
View File

@ -0,0 +1,43 @@
/*
SPDX-FileCopyrightText: 2016 Kai Uwe Broulik <kde@privat.broulik.de>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
import QtQuick 2.2
import org.kde.plasma.core 2.0 as PlasmaCore
import org.kde.plasma.components 3.0 as PlasmaComponents3
import org.kde.plasma.workspace.components 2.0 as PW
Row {
id: row
property int fontSize: PlasmaCore.Theme.defaultFont.pointSize
spacing: PlasmaCore.Units.smallSpacing
visible: pmSource.data["Battery"]["Has Cumulative"]
PlasmaCore.DataSource {
id: pmSource
engine: "powermanagement"
connectedSources: ["Battery", "AC Adapter"]
}
PW.BatteryIcon {
id: battery
hasBattery: pmSource.data["Battery"]["Has Battery"] || false
percent: pmSource.data["Battery"]["Percent"] || 0
pluggedIn: pmSource.data["AC Adapter"] ? pmSource.data["AC Adapter"]["Plugged in"] : false
height: batteryLabel.height
width: height
}
PlasmaComponents3.Label {
id: batteryLabel
font.pointSize: row.fontSize
text: i18nd("plasma_lookandfeel_org.kde.lookandfeel","%1%", battery.percent)
Accessible.name: i18nd("plasma_lookandfeel_org.kde.lookandfeel","Battery at %1%", battery.percent)
}
}

View File

@ -0,0 +1,109 @@
/*
SPDX-FileCopyrightText: 2016 David Edmundson <davidedmundson@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
import QtQuick 2.2
import QtQuick.Layouts 1.1
import QtQuick.Controls 1.1
import org.kde.plasma.core 2.0 as PlasmaCore
import org.kde.plasma.components 3.0 as PlasmaComponents3
FocusScope {
id: root
/*
* Any message to be displayed to the user, visible above the text fields
*/
property alias notificationMessage: notificationsLabel.text
/*
* A list of Items (typically ActionButtons) to be shown in a Row beneath the prompts
*/
property alias actionItems: actionItemsLayout.children
/*
* A model with a list of users to show in the view
* The following roles should exist:
* - name
* - iconSource
*
* The following are also handled:
* - vtNumber
* - displayNumber
* - session
* - isTty
*/
property alias userListModel: userListView.model
/*
* Self explanatory
*/
property alias userListCurrentIndex: userListView.currentIndex
property alias userListCurrentItem: userListView.currentItem
property bool showUserList: true
property alias userList: userListView
property int fontSize: PlasmaCore.Theme.defaultFont.pointSize + 2
default property alias _children: innerLayout.children
UserList {
id: userListView
visible: showUserList && y > 0
anchors {
bottom: parent.verticalCenter
left: parent.left
right: parent.right
}
fontSize: root.fontSize
}
//goal is to show the prompts, in ~16 grid units high, then the action buttons
//but collapse the space between the prompts and actions if there's no room
//ui is constrained to 16 grid units wide, or the screen
ColumnLayout {
id: prompts
anchors.top: parent.verticalCenter
anchors.topMargin: PlasmaCore.Units.gridUnit * 0.5
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
PlasmaComponents3.Label {
id: notificationsLabel
font.pointSize: root.fontSize
Layout.maximumWidth: PlasmaCore.Units.gridUnit * 16
Layout.alignment: Qt.AlignHCenter
Layout.fillWidth: true
horizontalAlignment: Text.AlignHCenter
wrapMode: Text.WordWrap
font.italic: true
}
ColumnLayout {
Layout.minimumHeight: implicitHeight
Layout.maximumHeight: PlasmaCore.Units.gridUnit * 10
Layout.maximumWidth: PlasmaCore.Units.gridUnit * 16
Layout.alignment: Qt.AlignHCenter
ColumnLayout {
id: innerLayout
Layout.alignment: Qt.AlignHCenter
Layout.fillWidth: true
}
Item {
Layout.fillHeight: true
}
}
Row { //deliberately not rowlayout as I'm not trying to resize child items
id: actionItemsLayout
spacing: PlasmaCore.Units.largeSpacing / 2
Layout.alignment: Qt.AlignHCenter | Qt.AlignTop
}
Item {
Layout.fillHeight: true
}
}
}

180
components/UserDelegate.qml Normal file
View File

@ -0,0 +1,180 @@
/*
SPDX-FileCopyrightText: 2014 David Edmundson <davidedmundson@kde.org>
SPDX-FileCopyrightText: 2014 Aleix Pol Gonzalez <aleixpol@blue-systems.com>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
import QtQuick 2.8
import QtQuick.Window 2.15
import org.kde.plasma.core 2.0 as PlasmaCore
import org.kde.plasma.components 3.0 as PlasmaComponents3
Item {
id: wrapper
// If we're using software rendering, draw outlines instead of shadows
// See https://bugs.kde.org/show_bug.cgi?id=398317
readonly property bool softwareRendering: GraphicsInfo.api === GraphicsInfo.Software
property bool isCurrent: true
property string name
property string userName
property string avatarPath
property string iconSource
property bool needsPassword
property var vtNumber
property bool constrainText: true
property alias nameFontSize: usernameDelegate.font.pointSize
property int fontSize: PlasmaCore.Theme.defaultFont.pointSize + 2
signal clicked()
property real faceSize: PlasmaCore.Units.gridUnit * 7
opacity: isCurrent ? 1.0 : 0.5
Behavior on opacity {
OpacityAnimator {
duration: PlasmaCore.Units.longDuration
}
}
// Draw a translucent background circle under the user picture
Rectangle {
anchors.centerIn: imageSource
width: imageSource.width - 2 // Subtract to prevent fringing
height: width
radius: width / 2
color: PlasmaCore.ColorScope.backgroundColor
opacity: 0.6
}
Item {
id: imageSource
anchors {
bottom: usernameDelegate.top
bottomMargin: PlasmaCore.Units.largeSpacing
horizontalCenter: parent.horizontalCenter
}
Behavior on width {
PropertyAnimation {
from: faceSize
duration: PlasmaCore.Units.longDuration;
}
}
width: isCurrent ? faceSize : faceSize - PlasmaCore.Units.largeSpacing
height: width
//Image takes priority, taking a full path to a file, if that doesn't exist we show an icon
Image {
id: face
source: wrapper.avatarPath
sourceSize: Qt.size(faceSize * Screen.devicePixelRatio, faceSize * Screen.devicePixelRatio)
fillMode: Image.PreserveAspectCrop
anchors.fill: parent
}
PlasmaCore.IconItem {
id: faceIcon
source: iconSource
visible: (face.status == Image.Error || face.status == Image.Null)
anchors.fill: parent
anchors.margins: PlasmaCore.Units.gridUnit * 0.5 // because mockup says so...
colorGroup: PlasmaCore.ColorScope.colorGroup
}
}
ShaderEffect {
anchors {
bottom: usernameDelegate.top
bottomMargin: PlasmaCore.Units.largeSpacing
horizontalCenter: parent.horizontalCenter
}
width: imageSource.width
height: imageSource.height
supportsAtlasTextures: true
property var source: ShaderEffectSource {
sourceItem: imageSource
// software rendering is just a fallback so we can accept not having a rounded avatar here
hideSource: wrapper.GraphicsInfo.api !== GraphicsInfo.Software
live: true // otherwise the user in focus will show a blurred avatar
}
property var colorBorder: PlasmaCore.ColorScope.textColor
//draw a circle with an antialiased border
//innerRadius = size of the inner circle with contents
//outerRadius = size of the border
//blend = area to blend between two colours
//all sizes are normalised so 0.5 == half the width of the texture
//if copying into another project don't forget to connect themeChanged to update()
//but in SDDM that's a bit pointless
fragmentShader: "
varying highp vec2 qt_TexCoord0;
uniform highp float qt_Opacity;
uniform lowp sampler2D source;
uniform lowp vec4 colorBorder;
highp float blend = 0.01;
highp float innerRadius = 0.47;
highp float outerRadius = 0.49;
lowp vec4 colorEmpty = vec4(0.0, 0.0, 0.0, 0.0);
void main() {
lowp vec4 colorSource = texture2D(source, qt_TexCoord0.st);
highp vec2 m = qt_TexCoord0 - vec2(0.5, 0.5);
highp float dist = sqrt(m.x * m.x + m.y * m.y);
if (dist < innerRadius)
gl_FragColor = colorSource;
else if (dist < innerRadius + blend)
gl_FragColor = mix(colorSource, colorBorder, ((dist - innerRadius) / blend));
else if (dist < outerRadius)
gl_FragColor = colorBorder;
else if (dist < outerRadius + blend)
gl_FragColor = mix(colorBorder, colorEmpty, ((dist - outerRadius) / blend));
else
gl_FragColor = colorEmpty ;
gl_FragColor = gl_FragColor * qt_Opacity;
}
"
}
PlasmaComponents3.Label {
id: usernameDelegate
// Make it bigger than other fonts to match the scale of the avatar better
font.pointSize: wrapper.fontSize + 4
anchors {
bottom: parent.bottom
horizontalCenter: parent.horizontalCenter
}
width: constrainText ? parent.width : implicitWidth
text: wrapper.name
style: softwareRendering ? Text.Outline : Text.Normal
styleColor: softwareRendering ? PlasmaCore.ColorScope.backgroundColor : "transparent" //no outline, doesn't matter
elide: Text.ElideRight
horizontalAlignment: Text.AlignHCenter
//make an indication that this has active focus, this only happens when reached with keyboard navigation
font.underline: wrapper.activeFocus
}
MouseArea {
anchors.fill: parent
hoverEnabled: true
onClicked: wrapper.clicked();
}
Accessible.name: name
Accessible.role: Accessible.Button
function accessiblePressAction() { wrapper.clicked() }
}

88
components/UserList.qml Normal file
View File

@ -0,0 +1,88 @@
/*
SPDX-FileCopyrightText: 2014 David Edmundson <davidedmundson@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
import QtQuick 2.2
import org.kde.plasma.core 2.0 as PlasmaCore
ListView {
id: view
readonly property string selectedUser: currentItem ? currentItem.userName : ""
readonly property int userItemWidth: PlasmaCore.Units.gridUnit * 8
readonly property int userItemHeight: PlasmaCore.Units.gridUnit * 8
property int fontSize: PlasmaCore.Theme.defaultFont.pointSize + 2
implicitHeight: userItemHeight
activeFocusOnTab : true
/*
* Signals that a user was explicitly selected
*/
signal userSelected;
orientation: ListView.Horizontal
highlightRangeMode: ListView.StrictlyEnforceRange
//centre align selected item (which implicitly centre aligns the rest
preferredHighlightBegin: width/2 - userItemWidth/2
preferredHighlightEnd: preferredHighlightBegin
// Disable flicking if we only have on user (like on the lockscreen)
interactive: count > 1
delegate: UserDelegate {
avatarPath: model.icon || ""
iconSource: model.iconName || "user-identity"
fontSize: view.fontSize
vtNumber: model.vtNumber
needsPassword: model.needsPassword
name: {
var displayName = model.realName || model.name
if (model.vtNumber === undefined || model.vtNumber < 0) {
return displayName
}
if (!model.session) {
return i18ndc("plasma_lookandfeel_org.kde.lookandfeel", "Nobody logged in on that session", "Unused")
}
var location = ""
if (model.isTty) {
location = i18ndc("plasma_lookandfeel_org.kde.lookandfeel", "User logged in on console number", "TTY %1", model.vtNumber)
} else if (model.displayNumber) {
location = i18ndc("plasma_lookandfeel_org.kde.lookandfeel", "User logged in on console (X display number)", "on TTY %1 (Display %2)", model.vtNumber, model.displayNumber)
}
if (location) {
return i18ndc("plasma_lookandfeel_org.kde.lookandfeel", "Username (location)", "%1 (%2)", displayName, location)
}
return displayName
}
userName: model.name
width: userItemWidth
height: userItemHeight
//if we only have one delegate, we don't need to clip the text as it won't be overlapping with anything
constrainText: ListView.view.count > 1
isCurrent: ListView.isCurrentItem
onClicked: {
ListView.view.currentIndex = index;
ListView.view.userSelected();
}
}
Keys.onEscapePressed: view.userSelected()
Keys.onEnterPressed: view.userSelected()
Keys.onReturnPressed: view.userSelected()
}

View File

@ -0,0 +1,70 @@
/*
SPDX-FileCopyrightText: 2017 Martin Gräßlin <mgraesslin@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
import QtQuick 2.5
import QtQuick.VirtualKeyboard 2.1
import org.kde.plasma.core 2.0 as PlasmaCore
InputPanel {
id: inputPanel
property bool activated: false
active: activated && Qt.inputMethod.visible
width: parent.width
states: [
State {
name: "visible"
when: inputPanel.active
PropertyChanges {
target: inputPanel
y: inputPanel.parent.height - inputPanel.height
opacity: 1
visible: true
}
},
State {
name: "hidden"
when: !inputPanel.active
PropertyChanges {
target: inputPanel
y: inputPanel.parent.height
opacity: 0
visible:false
}
}
]
transitions: [
Transition {
to: "visible"
ParallelAnimation {
YAnimator {
// NOTE this is necessary as otherwise the keyboard always starts the transition with Y as 0, due to the internal reparenting happening when becomes active
from: inputPanel.parent.height
duration: PlasmaCore.Units.longDuration
easing.type: Easing.OutQuad
}
OpacityAnimator {
duration: PlasmaCore.Units.longDuration
easing.type: Easing.OutQuad
}
}
},
Transition {
to: "hidden"
ParallelAnimation {
YAnimator {
duration: PlasmaCore.Units.longDuration
easing.type: Easing.InQuad
}
OpacityAnimator {
duration: PlasmaCore.Units.longDuration
easing.type: Easing.InQuad
}
}
}
]
}

View File

@ -0,0 +1,161 @@
/********************************************************************
This file is part of the KDE project.
Copyright (C) 2014 Aleix Pol Gonzalez <aleixpol@blue-systems.com>
This program 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 2 of the License, or
(at your option) any later version.
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*********************************************************************/
import QtQuick 2.6
import QtQuick.Controls 1.1
import QtQuick.Layouts 1.1
import QtGraphicalEffects 1.0
Item {
id: wallpaperFader
property Item mainStack
property Item footer
property alias source: wallpaperBlur.source
state: lockScreenRoot.uiVisible ? "on" : "off"
property real factor: 20
Behavior on factor {
NumberAnimation {
target: wallpaperFader
property: "factor"
duration: 1000
easing.type: Easing.InOutQuad
}
}
FastBlur {
id: wallpaperBlur
anchors.fill: parent
radius: 50 * wallpaperFader.factor
}
ShaderEffect {
id: wallpaperShader
anchors.fill: parent
supportsAtlasTextures: true
property var source: ShaderEffectSource {
sourceItem: wallpaperBlur
live: true
hideSource: true
textureMirroring: ShaderEffectSource.NoMirroring
}
readonly property real contrast: 0.45 * wallpaperFader.factor + (1 - wallpaperFader.factor)
readonly property real saturation: 1.7 * wallpaperFader.factor + (1 - wallpaperFader.factor)
readonly property real intensity: wallpaperFader.factor + (1 - wallpaperFader.factor)
property var colorMatrix: Qt.matrix4x4(
contrast, 0, 0, 0.0,
0, contrast, 0, 0.0,
0, 0, contrast, 0.0,
0, 0, 0, 1.0).times(Qt.matrix4x4(
saturation, 0.0, 0.0, 0.0,
0, saturation, 0, 0.0,
0, 0, saturation, 0.0,
0, 0, 0, 1.0)).times(Qt.matrix4x4(
intensity, 0, 0, 0,
0, intensity, 0, 0,
0, 0, intensity, 0,
0, 0, 0, 1
));
fragmentShader: "
uniform mediump mat4 colorMatrix;
uniform mediump sampler2D source;
varying mediump vec2 qt_TexCoord0;
uniform lowp float qt_Opacity;
void main(void)
{
mediump vec4 tex = texture2D(source, qt_TexCoord0);
gl_FragColor = tex * colorMatrix * qt_Opacity;
}"
}
states: [
State {
name: "on"
PropertyChanges {
target: mainStack
opacity: 1
}
PropertyChanges {
target: footer
opacity: 1
}
PropertyChanges {
target: wallpaperFader
factor: 1
}
},
State {
name: "off"
PropertyChanges {
target: mainStack
opacity: 0
}
PropertyChanges {
target: footer
opacity: 0
}
PropertyChanges {
target: wallpaperFader
factor: 0
}
}
]
transitions: [
Transition {
from: "off"
to: "on"
//Note: can't use animators as they don't play well with parallelanimations
ParallelAnimation {
NumberAnimation {
target: mainStack
property: "opacity"
duration: units.longDuration
easing.type: Easing.InOutQuad
}
NumberAnimation {
target: footer
property: "opacity"
duration: units.longDuration
easing.type: Easing.InOutQuad
}
}
},
Transition {
from: "on"
to: "off"
ParallelAnimation {
NumberAnimation {
target: mainStack
property: "opacity"
duration: 500
easing.type: Easing.InOutQuad
}
NumberAnimation {
target: footer
property: "opacity"
duration: 500
easing.type: Easing.InOutQuad
}
}
}
]
}

View File

@ -0,0 +1,117 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
viewBox="0 0 16 16"
height="16"
id="svg4310"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="reboot.svg">
<metadata
id="metadata4322">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1600"
inkscape:window-height="882"
id="namedview4320"
showgrid="false"
inkscape:zoom="32"
inkscape:cx="13.934533"
inkscape:cy="6.236298"
inkscape:window-x="0"
inkscape:window-y="18"
inkscape:window-maximized="0"
inkscape:current-layer="svg4310"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<defs
id="defs4312" />
<g
id="g4763">
<g
id="g4734">
<path
inkscape:connector-curvature="0"
id="path4316"
d="M 5.5333883,0.50031154 C 2.3637866,1.5487935 0.08838834,4.561747 0.08838834,8.0490615 c 0,4.3456995 3.54457456,7.9509375 7.91999996,7.9509375 1.9927677,-0.0156 1.9799356,-1.959831 0,-1.949062 -3.2764839,0 -5.94,-2.668512 -5.94,-6.0018755 0,-2.4345676 1.4293399,-4.5021282 3.465,-5.445 z"
style="color:#000000;line-height:normal;fill:#dc322f;fill-opacity:1"
sodipodi:nodetypes="csccscc" />
<rect
style="fill:#dc322f;fill-opacity:1"
id="rect4318"
transform="scale(-1,1)"
height="2.872442"
ry="0"
rx="0.99000001"
y="13.024178"
x="-8.0297537"
width="1.98" />
<rect
style="fill:#dc322f;fill-opacity:1"
id="rect4318-3"
transform="matrix(-0.70710678,0.70710678,0.70710678,0.70710678,0,0)"
height="3.809942"
ry="0"
rx="0.99000001"
y="13.739765"
x="3.6503892"
width="1.98" />
</g>
<g
id="g4734-3"
transform="matrix(-1,0,0,-1,16.074522,16.031405)">
<path
inkscape:connector-curvature="0"
id="path4316-2"
d="M 5.5333883,0.50031154 C 2.3637866,1.5487935 0.08838834,4.561747 0.08838834,8.0490615 c 0,4.3456995 3.54457456,7.9509375 7.91999996,7.9509375 1.9927677,-0.0156 1.9799356,-1.959831 0,-1.949062 -3.2764839,0 -5.94,-2.668512 -5.94,-6.0018755 0,-2.4345676 1.4293399,-4.5021282 3.465,-5.445 z"
style="color:#000000;line-height:normal;fill:#dc322f;fill-opacity:1"
sodipodi:nodetypes="csccscc" />
<rect
style="fill:#dc322f;fill-opacity:1"
id="rect4318-9"
transform="scale(-1,1)"
height="2.872442"
ry="0"
rx="0.99000001"
y="13.024178"
x="-8.0297537"
width="1.98" />
<rect
style="fill:#dc322f;fill-opacity:1"
id="rect4318-3-1"
transform="matrix(-0.70710678,0.70710678,0.70710678,0.70710678,0,0)"
height="3.809942"
ry="0"
rx="0.99000001"
y="13.739765"
x="3.6503892"
width="1.98" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,75 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
viewBox="0 0 16 16"
height="16"
id="svg4310"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="shutdown.svg">
<metadata
id="metadata4322">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1600"
inkscape:window-height="882"
id="namedview4320"
showgrid="false"
inkscape:zoom="11.313709"
inkscape:cx="0.11494684"
inkscape:cy="0.7780831"
inkscape:window-x="0"
inkscape:window-y="18"
inkscape:window-maximized="0"
inkscape:current-layer="svg4310"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<defs
id="defs4312" />
<g
style="fill:#dc322f;fill-opacity:1"
id="g4314"
transform="matrix(0.99,0,0,0.99,0.08838834,0.12906154)">
<path
style="color:#000000;line-height:normal;fill:#dc322f;fill-opacity:1"
d="M 5.5,0.375 C 2.2983821,1.4340727 0,4.4774601 0,8 c 0,4.389595 3.5803783,8.03125 8,8.03125 4.419622,0 8,-3.641655 8,-8.03125 0,-3.5219879 -2.299024,-6.5653698 -5.5,-7.625 l 0,2.15625 C 12.541964,3.493202 14,5.5609693 14,8 14,11.367034 11.30958,14.0625 8,14.0625 4.6904203,14.0625 2,11.367034 2,8 2,5.5408408 3.4437776,3.4523957 5.5,2.5 l 0,-2.125 z"
id="path4316"
inkscape:connector-curvature="0" />
<rect
width="2"
x="-9"
y="0.024"
rx="0.83700001"
ry="0"
height="8"
transform="scale(-1,1)"
id="rect4318"
style="fill:#dc322f;fill-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 252 B

16
metadata.desktop Normal file
View File

@ -0,0 +1,16 @@
[SddmGreeterTheme]
Name=Aerial HD Video
Description=Aerial HD Video Stream
Author=Fabio Almeida
Copyright=(c) 2016, Fabio Almeida
License=CC-BY-SA
Type=sddm-theme
Version=0.1
Website=https://github.com/3ximus/aerial-sddm-theme
Screenshot=screens/screenshot.png
MainScript=Main.qml
ConfigFile=theme.conf
Email=fabio_r11@hotmail.com
Theme-Id=aerial-sddm
Theme-API=2.0

36
playlists/4k.m3u Normal file
View File

@ -0,0 +1,36 @@
/usr/share/sddm/themes/_shared/assets/comp_CH_C007_C011_PSNK_v02_SDR_PS_FINAL_20180709_SDR_4K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_CH_C002_C005_PSNK_v05_SDR_PS_FINAL_20180709_SDR_4K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_CH_C007_C004_PSNK_v02_SDR_PS_FINAL_20180709_SDR_4K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/DB_D008_C010_4K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/DB_D001_C001_4K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/DB_D011_C010_4K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/DB_D002_C003_4K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/DB_D001_C005_4K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/DB_D011_C009_4K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/GL_G004_C010_4K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/GL_G002_C002_4K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/HK_B005_C011_4K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/HK_H004_C010_4K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/HK_H004_C013_4K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/HK_H004_C001_4K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/HK_H004_C008_4K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_GMT312_162NC_139M_1041_AFRICA_NIGHT_v14_SDR_FINAL_20180706_SDR_4K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_A103_C002_0205DG_v12_SDR_FINAL_20180706_SDR_4K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_GMT306_139NC_139J_3066_CALI_TO_VEGAS_v07_SDR_FINAL_22062018_SDR_4K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_A108_C001_v09_SDR_FINAL_22062018_SDR_4K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_GMT308_139K_142NC_CARIBBEAN_DAY_v09_SDR_FINAL_22062018_SDR_4K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_GMT329_113NC_396B_1105_CHINA_v04_SDR_FINAL_20180706_F900F2700_SDR_4K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_A083_C002_1130KZ_v04_SDR_PS_FINAL_20180725_SDR_4K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_GMT329_117NC_401C_1037_IRELAND_TO_ASIA_v48_SDR_PS_FINAL_20180725_F0F6300_SDR_4K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_GMT026_363A_103NC_E1027_KOREA_JAPAN_NIGHT_v17_SDR_FINAL_25062018_SDR_4K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_A105_C003_0212CT_FLARE_v10_SDR_PS_FINAL_20180711_SDR_4K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_A009_C001_010181A_v09_SDR_PS_FINAL_20180725_SDR_4K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_A114_C001_0305OT_v10_SDR_FINAL_22062018_SDR_4K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_A001_C004_1207W5_v23_SDR_FINAL_20180706_SDR_4K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/LW_L001_C006_4K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/LA_A006_C008_4K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/LA_A009_C009_4K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/LA_A008_C004_4K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_LA_A006_C004_v01_SDR_FINAL_PS_20180730_SDR_4K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/LA_A005_C009_4K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/LA_A011_C003_4K_SDR_HEVC.mov

89
playlists/all_sd.m3u Normal file
View File

@ -0,0 +1,89 @@
/usr/share/sddm/themes/_shared/assets/comp_LA_A006_C004_v01_SDR_FINAL_PS_20180730_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_A083_C002_1130KZ_v04_SDR_PS_FINAL_20180725_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/b4-3.mov
/usr/share/sddm/themes/_shared/assets/BO_A014_C023_SDR_20190717_F240F3709_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/g201_WH_D004_L014_SDR_20191031_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/LA_A011_C003_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/CR_A009_C007_SDR_20191113_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/g201_AK_A003_C014_SDR_20191113_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/b1-4.mov
/usr/share/sddm/themes/_shared/assets/LA_A005_C009_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/HK_H004_C013_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/LA_A006_C008_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_A001_C004_1207W5_v23_SDR_FINAL_20180706_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/b10-3.mov
/usr/share/sddm/themes/_shared/assets/comp_GMT329_113NC_396B_1105_CHINA_v04_SDR_FINAL_20180706_F900F2700_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/HK_H004_C010_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/HK_H004_C008_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_CH_C007_C004_PSNK_v02_SDR_PS_FINAL_20180709_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/HK_H004_C001_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/GL_G004_C010_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_A103_C002_0205DG_v12_SDR_FINAL_20180706_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/DB_D001_C001_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/b1-3.mov
/usr/share/sddm/themes/_shared/assets/DB_D002_C003_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_A114_C001_0305OT_v10_SDR_FINAL_22062018_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_A009_C001_010181A_v09_SDR_PS_FINAL_20180725_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/DB_D011_C009_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/BO_A012_C031_SDR_20190726_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_A105_C003_0212CT_FLARE_v10_SDR_PS_FINAL_20180711_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/b7-3.mov
/usr/share/sddm/themes/_shared/assets/comp_GMT312_162NC_139M_1041_AFRICA_NIGHT_v14_SDR_FINAL_20180706_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_GMT329_117NC_401C_1037_IRELAND_TO_ASIA_v48_SDR_PS_FINAL_20180725_F0F6300_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/b3-1.mov
/usr/share/sddm/themes/_shared/assets/b6-2.mov
/usr/share/sddm/themes/_shared/assets/b3-2.mov
/usr/share/sddm/themes/_shared/assets/PA_A004_C003_SDR_20190719_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/b9-3.mov
/usr/share/sddm/themes/_shared/assets/b6-3.mov
/usr/share/sddm/themes/_shared/assets/b2-3.mov
/usr/share/sddm/themes/_shared/assets/g201_CA_A016_C002_SDR_20191114_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/FK_U009_C004_SDR_20191220_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/HK_B005_C011_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_GMT026_363A_103NC_E1027_KOREA_JAPAN_NIGHT_v17_SDR_FINAL_25062018_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/b5-2.mov
/usr/share/sddm/themes/_shared/assets/b4-2.mov
/usr/share/sddm/themes/_shared/assets/DB_D001_C005_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/LA_A008_C004_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/MEX_A006_C008_SDR_20190923_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/b5-3.mov
/usr/share/sddm/themes/_shared/assets/comp_GMT306_139NC_139J_3066_CALI_TO_VEGAS_v07_SDR_FINAL_22062018_SDR_4K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/KP_A010_C002_SDR_20190717_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/PA_A001_C007_SDR_20190717_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/DB_D011_C010_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/AK_A004_C012_SDR_20191217_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/b2-2.mov
/usr/share/sddm/themes/_shared/assets/SE_A016_C009_SDR_20190717_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_GMT308_139K_142NC_CARIBBEAN_DAY_v09_SDR_FINAL_22062018_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/b2-1.mov.1
/usr/share/sddm/themes/_shared/assets/b6-1.mov
/usr/share/sddm/themes/_shared/assets/g201_TH_803_A001_8_SDR_20191031_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/b5-1.mov
/usr/share/sddm/themes/_shared/assets/b9-2.mov
/usr/share/sddm/themes/_shared/assets/comp_A108_C001_v09_SDR_FINAL_22062018_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/DL_B002_C011_SDR_20191122_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/b8-2.mov
/usr/share/sddm/themes/_shared/assets/b1-2.mov
/usr/share/sddm/themes/_shared/assets/b8-1.mov
/usr/share/sddm/themes/_shared/assets/b4-1.mov
/usr/share/sddm/themes/_shared/assets/b1-1.mov
/usr/share/sddm/themes/_shared/assets/b3-3.mov
/usr/share/sddm/themes/_shared/assets/b2-4.mov
/usr/share/sddm/themes/_shared/assets/comp_CH_C007_C011_PSNK_v02_SDR_PS_FINAL_20180709_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_CH_C002_C005_PSNK_v05_SDR_PS_FINAL_20180709_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/g201_TH_804_A001_8_SDR_20191031_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/PA_A002_C009_SDR_20190730_ALT01_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/GL_G002_C002_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/PA_A010_C007_SDR_20190717_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/b8-3.mov
/usr/share/sddm/themes/_shared/assets/comp_GL_G010_C006_v08_6Mbps.mov
/usr/share/sddm/themes/_shared/assets/b6-4.mov
/usr/share/sddm/themes/_shared/assets/b7-1.mov
/usr/share/sddm/themes/_shared/assets/BO_A018_C029_SDR_20190812_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/b7-2.mov
/usr/share/sddm/themes/_shared/assets/DB_D008_C010_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/LA_A009_C009_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/RS_A008_C010_SDR_20191218_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/b2-1.mov
/usr/share/sddm/themes/_shared/assets/BO_A014_C008_SDR_20190719_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/b2-1.mov.2

36
playlists/day.m3u Normal file
View File

@ -0,0 +1,36 @@
/usr/share/sddm/themes/_shared/assets/b2-1.mov
/usr/share/sddm/themes/_shared/assets/b6-1.mov
/usr/share/sddm/themes/_shared/assets/b1-1.mov
/usr/share/sddm/themes/_shared/assets/b2-2.mov
/usr/share/sddm/themes/_shared/assets/b4-1.mov
/usr/share/sddm/themes/_shared/assets/b7-1.mov
/usr/share/sddm/themes/_shared/assets/b5-2.mov
/usr/share/sddm/themes/_shared/assets/b1-3.mov
/usr/share/sddm/themes/_shared/assets/b3-2.mov
/usr/share/sddm/themes/_shared/assets/b7-2.mov
/usr/share/sddm/themes/_shared/assets/b8-2.mov
/usr/share/sddm/themes/_shared/assets/b4-3.mov
/usr/share/sddm/themes/_shared/assets/b8-3.mov
/usr/share/sddm/themes/_shared/assets/b9-3.mov
/usr/share/sddm/themes/_shared/assets/comp_CH_C007_C011_PSNK_v02_SDR_PS_FINAL_20180709_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_CH_C002_C005_PSNK_v05_SDR_PS_FINAL_20180709_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_CH_C007_C004_PSNK_v02_SDR_PS_FINAL_20180709_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/DB_D008_C010_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/DB_D001_C001_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/DB_D002_C003_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/DB_D001_C005_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/GL_G004_C010_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/GL_G002_C002_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/HK_H004_C010_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/HK_H004_C013_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/HK_H004_C008_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_A103_C002_0205DG_v12_SDR_FINAL_20180706_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_A108_C001_v09_SDR_FINAL_22062018_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_GMT308_139K_142NC_CARIBBEAN_DAY_v09_SDR_FINAL_22062018_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_A105_C003_0212CT_FLARE_v10_SDR_PS_FINAL_20180711_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_A009_C001_010181A_v09_SDR_PS_FINAL_20180725_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_A114_C001_0305OT_v10_SDR_FINAL_22062018_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_A001_C004_1207W5_v23_SDR_FINAL_20180706_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/LA_A006_C008_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/LA_A008_C004_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/LA_A005_C009_2K_SDR_HEVC.mov

30
playlists/night.m3u Normal file
View File

@ -0,0 +1,30 @@
/usr/share/sddm/themes/_shared/assets/b5-1.mov
/usr/share/sddm/themes/_shared/assets/comp_GL_G010_C006_v08_6Mbps.mov
/usr/share/sddm/themes/_shared/assets/b6-2.mov
/usr/share/sddm/themes/_shared/assets/b8-1.mov
/usr/share/sddm/themes/_shared/assets/b1-2.mov
/usr/share/sddm/themes/_shared/assets/b3-1.mov
/usr/share/sddm/themes/_shared/assets/b6-3.mov
/usr/share/sddm/themes/_shared/assets/b2-3.mov
/usr/share/sddm/themes/_shared/assets/b4-2.mov
/usr/share/sddm/themes/_shared/assets/b1-4.mov
/usr/share/sddm/themes/_shared/assets/b2-4.mov
/usr/share/sddm/themes/_shared/assets/b3-3.mov
/usr/share/sddm/themes/_shared/assets/b5-3.mov
/usr/share/sddm/themes/_shared/assets/b6-4.mov
/usr/share/sddm/themes/_shared/assets/b7-3.mov
/usr/share/sddm/themes/_shared/assets/b9-2.mov
/usr/share/sddm/themes/_shared/assets/b10-3.mov
/usr/share/sddm/themes/_shared/assets/DB_D011_C010_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/DB_D011_C009_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/HK_B005_C011_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/HK_H004_C001_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_GMT312_162NC_139M_1041_AFRICA_NIGHT_v14_SDR_FINAL_20180706_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_GMT306_139NC_139J_3066_CALI_TO_VEGAS_v07_SDR_FINAL_22062018_SDR_4K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_GMT329_113NC_396B_1105_CHINA_v04_SDR_FINAL_20180706_F900F2700_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_A083_C002_1130KZ_v04_SDR_PS_FINAL_20180725_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_GMT329_117NC_401C_1037_IRELAND_TO_ASIA_v48_SDR_PS_FINAL_20180725_F0F6300_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_GMT026_363A_103NC_E1027_KOREA_JAPAN_NIGHT_v17_SDR_FINAL_25062018_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/LA_A009_C009_2K_SDR_HEVC.mov
/usr/share/sddm/themes/_shared/assets/comp_LA_A006_C004_v01_SDR_FINAL_PS_20180730_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/LA_A011_C003_2K_SDR_HEVC.mov

21
playlists/undersea.m3u Normal file
View File

@ -0,0 +1,21 @@
/usr/share/sddm/themes/_shared/assets/AK_A004_C012_SDR_20191217_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/g201_AK_A003_C014_SDR_20191113_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/BO_A018_C029_SDR_20190812_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/BO_A014_C008_SDR_20190719_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/DL_B002_C011_SDR_20191122_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/g201_CA_A016_C002_SDR_20191114_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/CR_A009_C007_SDR_20191113_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/MEX_A006_C008_SDR_20190923_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/FK_U009_C004_SDR_20191220_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/g201_WH_D004_L014_SDR_20191031_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/BO_A014_C023_SDR_20190717_F240F3709_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/KP_A010_C002_SDR_20190717_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/PA_A004_C003_SDR_20190719_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/PA_A001_C007_SDR_20190717_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/PA_A002_C009_SDR_20190730_ALT01_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/PA_A010_C007_SDR_20190717_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/RS_A008_C010_SDR_20191218_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/BO_A012_C031_SDR_20190726_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/SE_A016_C009_SDR_20190717_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/g201_TH_804_A001_8_SDR_20191031_SDR_2K_HEVC.mov
/usr/share/sddm/themes/_shared/assets/g201_TH_803_A001_8_SDR_20191031_SDR_2K_HEVC.mov

BIN
screens/custom.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 MiB

BIN
screens/preview1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 MiB

BIN
screens/preview2.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 MiB

BIN
screens/preview3.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 MiB

BIN
screens/screenshot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

21
theme.conf Normal file
View File

@ -0,0 +1,21 @@
[General]
showlogo=hidden
logo=/usr/share/sddm/themes/breeze/default-logo.svg
type=image
color=#1d99f3
fontSize=10
background=/usr/share/wallpapers/Next/contents/images/5120x2880.jpg
needsFullUserModel=false
background_img_day=background.jpg
background_img_night=background.jpg
background_vid_day=playlists/day.m3u
background_vid_night=playlists/night.m3u
displayFont="Droid Sans Mono for Powerline"
showLoginButton=true
passwordLeftMargin=15
usernameLeftMargin=15
relativePositionX=0.3
relativePositionY=0.7
showTopBar=true
autofocusInput=true

11
theme.conf.user Normal file
View File

@ -0,0 +1,11 @@
[General]
background_vid_day=playlists/day.m3u
background_vid_night=playlists/night.m3u
passwordLeftMargin=15
relativePositionX=0.5
relativePositionY=0.75
showLoginButton=false
type=color
usernameLeftMargin=15
showTopBar=true
autofocusInput=true