Compare commits

..

No commits in common. "01a639a57cf5bb9f1f244ed0bb5522c3ad1d4e72" and "364acba2017304ea44f3f36738d2cd39c5d0d696" have entirely different histories.

4 changed files with 148 additions and 171 deletions

6
debian/changelog vendored
View File

@ -1,9 +1,3 @@
lubuntu-artwork (24.10.1) UNRELEASED; urgency=medium
* Welcome to Oracular!
-- Simon Quigley <tsimonq2@ubuntu.com> Sat, 06 Jul 2024 11:01:51 -0500
lubuntu-artwork (24.04.6) noble; urgency=medium
* Update Plymouth text for LTS.

View File

@ -4,7 +4,7 @@ Description=Text mode theme based on kubuntu-logo theme
ModuleName=ubuntu-text
[ubuntu-text]
title=Lubuntu 24.10
title=Lubuntu 24.04 LTS
black=0x0078C2
white=0xffffff
brown=0x009DFD

View File

@ -1,6 +1,6 @@
/***************************************************************************
* Copyright (c) 2013 Abdurrahman AVCI <abdurrahmanavci@gmail.com
* Copyright (c) 2015-2024 Lubuntu Artwork Team
* Copyright (c) 2015-2018 Lubuntu Artwork Team
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
@ -35,17 +35,6 @@ Rectangle {
TextConstants { id: textConstants }
Background {
anchors.fill: parent
source: Qt.resolvedUrl(config.background)
onStatusChanged: {
var defaultBackground = Qt.resolvedUrl(config.defaultBackground)
if (status == Image.Error && source != defaultBackground) {
source = defaultBackground
}
}
}
Connections {
target: sddm
onLoginSucceeded: {
@ -60,7 +49,7 @@ Rectangle {
Repeater {
model: screenModel
Background {
x: geometry.x; y: geometry.y; width: geometry.width; height: geometry.height
x: geometry.x; y: geometry.y; width: geometry.width; height:geometry.height
source: config.background
fillMode: Image.PreserveAspectCrop
onStatusChanged: {
@ -103,7 +92,7 @@ Rectangle {
Text {
id: txtMessage
anchors.top: usersContainer.bottom
anchors.top: usersContainer.bottom;
anchors.margins: 20
anchors.horizontalCenter: parent.horizontalCenter
color: "white"
@ -114,8 +103,7 @@ Rectangle {
Item {
id: usersContainer
width: parent.width
height: 300
width: parent.width; height: 300
anchors.verticalCenter: parent.verticalCenter
ImageButton {
@ -123,18 +111,18 @@ Rectangle {
anchors.left: parent.left
anchors.verticalCenter: parent.verticalCenter
anchors.margins: 10
source: Qt.resolvedUrl("angle-left.png")
source: "angle-left.png"
onClicked: listView.decrementCurrentIndex()
KeyNavigation.backtab: btnShutdown
KeyNavigation.tab: listView
KeyNavigation.backtab: btnShutdown; KeyNavigation.tab: listView
}
ListView {
id: listView
height: parent.height
anchors.left: prevUser.right
anchors.right: nextUser.left
anchors.left: prevUser.right; anchors.right: nextUser.left
anchors.verticalCenter: parent.verticalCenter
anchors.margins: 10
@ -148,8 +136,7 @@ Rectangle {
orientation: ListView.Horizontal
currentIndex: userModel.lastIndex
KeyNavigation.backtab: prevUser
KeyNavigation.tab: nextUser
KeyNavigation.backtab: prevUser; KeyNavigation.tab: nextUser
}
ImageButton {
@ -157,21 +144,20 @@ Rectangle {
anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter
anchors.margins: 10
source: Qt.resolvedUrl("angle-right.png")
source: "angle-right.png"
onClicked: listView.incrementCurrentIndex()
KeyNavigation.backtab: listView
KeyNavigation.tab: session
KeyNavigation.backtab: listView; KeyNavigation.tab: session
}
}
}
}
Rectangle {
id: actionBar
anchors.top: parent.top
anchors.top: parent.top;
anchors.horizontalCenter: parent.horizontalCenter
width: parent.width
height: 64
width: parent.width; height: 64
color: "#44ffffff"
Row {
@ -193,13 +179,12 @@ Rectangle {
id: session
width: 245
anchors.verticalCenter: parent.verticalCenter
arrowIcon: Qt.resolvedUrl("angle-down.png")
arrowIcon: "angle-down.png"
model: sessionModel
index: sessionModel.lastIndex
font.pixelSize: 14
color: "#44ffffff"
KeyNavigation.backtab: nextUser
KeyNavigation.tab: layoutBox
KeyNavigation.backtab: nextUser; KeyNavigation.tab: layoutBox
}
Text {
@ -216,9 +201,8 @@ Rectangle {
width: 90
anchors.verticalCenter: parent.verticalCenter
font.pixelSize: 14
arrowIcon: Qt.resolvedUrl("angle-down.png")
KeyNavigation.backtab: session
KeyNavigation.tab: btnShutdown
arrowIcon: "angle-down.png"
KeyNavigation.backtab: session; KeyNavigation.tab: btnShutdown
}
}
@ -240,32 +224,32 @@ Rectangle {
ImageButton {
id: btnSuspend
height: parent.height
source: Qt.resolvedUrl("suspend.png")
source: "suspend.png"
visible: sddm.canSuspend
onClicked: sddm.suspend()
KeyNavigation.backtab: layoutBox
KeyNavigation.tab: btnReboot
KeyNavigation.backtab: layoutBox; KeyNavigation.tab: btnReboot
}
ImageButton {
id: btnReboot
height: parent.height
source: Qt.resolvedUrl("reboot.png")
source: "reboot.png"
visible: sddm.canReboot
onClicked: sddm.reboot()
KeyNavigation.backtab: btnSuspend
KeyNavigation.tab: btnShutdown
KeyNavigation.backtab: btnSuspend; KeyNavigation.tab: btnShutdown
}
ImageButton {
id: btnShutdown
height: parent.height
source: Qt.resolvedUrl("shutdown.png")
source: "shutdown.png"
visible: sddm.canPowerOff
onClicked: sddm.powerOff()
KeyNavigation.backtab: btnReboot
KeyNavigation.tab: prevUser
KeyNavigation.backtab: btnReboot; KeyNavigation.tab: prevUser
}
}
}
}

View File

@ -13,4 +13,3 @@ ConfigFile=theme.conf
TranslationsDirectory=translations
Theme-Id=lubuntu
Theme-API=2.0
QtVersion=6