mirror of
https://github.com/L4ki/Jolly-Plasma-Themes.git
synced 2026-02-01 13:17:38 +01:00
Add files via upload
This commit is contained in:
30
Jolly-Global-Themes/Jolly-Global-6/contents/defaults
Normal file
30
Jolly-Global-Themes/Jolly-Global-6/contents/defaults
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
[kdeglobals][KDE]
|
||||||
|
widgetStyle=breeze
|
||||||
|
|
||||||
|
[kwinrc][DesktopSwitcher]
|
||||||
|
LayoutName=org.kde.breeze.desktop
|
||||||
|
|
||||||
|
[kwinrc][WindowSwitcher]
|
||||||
|
LayoutName=org.kde.breeze.desktop
|
||||||
|
|
||||||
|
[kdeglobals][General]
|
||||||
|
ColorScheme=JollyDarkColor
|
||||||
|
|
||||||
|
[kdeglobals][Icons]
|
||||||
|
Theme=Jolly-Dark-Icons
|
||||||
|
|
||||||
|
[kcminputrc][Mouse]
|
||||||
|
cursorTheme=breeze_cursors
|
||||||
|
|
||||||
|
[Wallpaper]
|
||||||
|
Image=Jolly-Nebula Wallpaper
|
||||||
|
|
||||||
|
[plasmarc][Theme]
|
||||||
|
name=Jolly-Plasma
|
||||||
|
|
||||||
|
[kwinrc][org.kde.kdecoration2]
|
||||||
|
library=org.kde.kwin.aurorae
|
||||||
|
theme=__aurorae__svg__Jolly-Aurorae-6
|
||||||
|
|
||||||
|
[KSplash]
|
||||||
|
Theme=Jolly-Splash-6
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
loadTemplate("org.kde.plasma.desktop.defaultPanel")
|
||||||
|
|
||||||
|
var desktopsArray = desktopsForActivity(currentActivity());
|
||||||
|
for( var j = 0; j < desktopsArray.length; j++) {
|
||||||
|
desktopsArray[j].wallpaperPlugin = 'org.kde.image';
|
||||||
|
}
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 910 KiB |
BIN
Jolly-Global-Themes/Jolly-Global-6/contents/previews/preview.png
Normal file
BIN
Jolly-Global-Themes/Jolly-Global-6/contents/previews/preview.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 22 KiB |
BIN
Jolly-Global-Themes/Jolly-Global-6/contents/previews/splash.png
Normal file
BIN
Jolly-Global-Themes/Jolly-Global-6/contents/previews/splash.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 20 KiB |
108
Jolly-Global-Themes/Jolly-Global-6/contents/splash/Splash.qml
Normal file
108
Jolly-Global-Themes/Jolly-Global-6/contents/splash/Splash.qml
Normal file
@@ -0,0 +1,108 @@
|
|||||||
|
import QtQuick 2.5
|
||||||
|
|
||||||
|
|
||||||
|
Image {
|
||||||
|
id: root
|
||||||
|
source: "images/Jolly-Nebula Wallpaper Without Plasma Logo.jpg"
|
||||||
|
|
||||||
|
property int stage
|
||||||
|
|
||||||
|
onStageChanged: {
|
||||||
|
if (stage == 1) {
|
||||||
|
introAnimation.running = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Item {
|
||||||
|
id: content
|
||||||
|
anchors.fill: parent
|
||||||
|
opacity: 0
|
||||||
|
TextMetrics {
|
||||||
|
id: units
|
||||||
|
text: "M"
|
||||||
|
property int gridUnit: boundingRect.height
|
||||||
|
property int largeSpacing: units.gridUnit
|
||||||
|
property int smallSpacing: Math.max(2, gridUnit/4)
|
||||||
|
}
|
||||||
|
|
||||||
|
Image {
|
||||||
|
id: logo
|
||||||
|
//match SDDM/lockscreen avatar positioning
|
||||||
|
property real size: units.gridUnit * 10
|
||||||
|
|
||||||
|
anchors.centerIn: parent
|
||||||
|
|
||||||
|
source: "images/start.svg"
|
||||||
|
|
||||||
|
sourceSize.width: size
|
||||||
|
sourceSize.height: size
|
||||||
|
|
||||||
|
ParallelAnimation {
|
||||||
|
running: true
|
||||||
|
|
||||||
|
ScaleAnimator {
|
||||||
|
target: logo
|
||||||
|
from: 0
|
||||||
|
to: 1.0
|
||||||
|
duration: 700
|
||||||
|
}
|
||||||
|
|
||||||
|
SequentialAnimation {
|
||||||
|
loops: Animation.Infinite
|
||||||
|
|
||||||
|
ScaleAnimator {
|
||||||
|
target: logo
|
||||||
|
from: 0.8
|
||||||
|
to: 1.1
|
||||||
|
duration: 1000
|
||||||
|
}
|
||||||
|
ScaleAnimator {
|
||||||
|
target: logo
|
||||||
|
from: 1
|
||||||
|
to: 0.8
|
||||||
|
duration: 1000
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
radius: 4
|
||||||
|
color: "#d3d3ff"
|
||||||
|
opacity: 0.9
|
||||||
|
y: parent.height - (parent.height - logo.y) / 3 - height/2
|
||||||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
height: 6
|
||||||
|
width: height*32
|
||||||
|
Rectangle {
|
||||||
|
radius: 3
|
||||||
|
anchors {
|
||||||
|
left: parent.left
|
||||||
|
top: parent.top
|
||||||
|
bottom: parent.bottom
|
||||||
|
}
|
||||||
|
width: (parent.width / 6) * (stage - 0.00)
|
||||||
|
color: "#5c5c88"
|
||||||
|
Behavior on width {
|
||||||
|
PropertyAnimation {
|
||||||
|
duration: 200
|
||||||
|
easing.type: Easing.InOutQuad
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
OpacityAnimator {
|
||||||
|
id: introAnimation
|
||||||
|
running: false
|
||||||
|
target: content
|
||||||
|
from: 0
|
||||||
|
to: 1
|
||||||
|
duration: 1000
|
||||||
|
easing.type: Easing.InOutQuad
|
||||||
|
}
|
||||||
|
}
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 2.7 MiB |
@@ -0,0 +1,108 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
viewBox="0 0 32 32"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
sodipodi:docname="start.svg"
|
||||||
|
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
|
||||||
|
width="32"
|
||||||
|
height="32"
|
||||||
|
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/">
|
||||||
|
<sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#000000"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1013"
|
||||||
|
id="namedview17"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="8"
|
||||||
|
inkscape:cx="2.25"
|
||||||
|
inkscape:cy="14.375"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg2"
|
||||||
|
inkscape:lockguides="false"
|
||||||
|
inkscape:document-rotation="0"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
inkscape:pagecheckerboard="0">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid842"
|
||||||
|
originx="-22"
|
||||||
|
originy="0" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata21">
|
||||||
|
<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>
|
||||||
|
<defs
|
||||||
|
id="defs3051">
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
id="linearGradient846">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#7171a8;stop-opacity:1"
|
||||||
|
offset="0"
|
||||||
|
id="stop842" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#c0c0d8;stop-opacity:1"
|
||||||
|
offset="1"
|
||||||
|
id="stop844" />
|
||||||
|
</linearGradient>
|
||||||
|
<style
|
||||||
|
type="text/css"
|
||||||
|
id="current-color-scheme">
|
||||||
|
.ColorScheme-Text {
|
||||||
|
color:#31363b;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient846"
|
||||||
|
id="linearGradient848"
|
||||||
|
x1="26"
|
||||||
|
y1="15.869712"
|
||||||
|
x2="50"
|
||||||
|
y2="15.869712"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
</defs>
|
||||||
|
<g
|
||||||
|
transform="translate(-68,-1)"
|
||||||
|
id="start-here-kde">
|
||||||
|
<rect
|
||||||
|
style="fill:none;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
id="rect3343"
|
||||||
|
width="32"
|
||||||
|
height="32"
|
||||||
|
x="68"
|
||||||
|
y="1" />
|
||||||
|
<path
|
||||||
|
id="path20"
|
||||||
|
style="fill:url(#linearGradient848);fill-opacity:1"
|
||||||
|
transform="translate(46,1)"
|
||||||
|
d="M 32,4 C 31.171573,4 30.5,4.6715729 30.5,5.5 30.5,6.3284271 31.171573,7 32,7 32.828427,7 33.5,6.3284271 33.5,5.5 33.5,4.6715729 32.828427,4 32,4 Z m 10.5,0 c -1.828155,-1.0147093 -3.99599,1.1343363 -3,3 L 44,11.5 39.5,16 c -1.235766,2.063949 1.209297,4.043086 3,3 L 50,11.5 Z m -14,9 C 27.119288,13 26,14.119288 26,15.5 26,16.880712 27.119288,18 28.5,18 29.880712,18 31,16.880712 31,15.5 31,14.119288 29.880712,13 28.5,13 Z m 6.5,9 c -1.656854,0 -3,1.343146 -3,3 0,1.656854 1.343146,3 3,3 1.656854,0 3,-1.343146 3,-3 0,-1.656854 -1.343146,-3 -3,-3 z"
|
||||||
|
class="ColorScheme-Text"
|
||||||
|
sodipodi:nodetypes="ssssscccccccssssssssss" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.4 KiB |
33
Jolly-Global-Themes/Jolly-Global-6/metadata.json
Normal file
33
Jolly-Global-Themes/Jolly-Global-6/metadata.json
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
{
|
||||||
|
"KPackageStructure": "Plasma/LookAndFeel",
|
||||||
|
"KPlugin": {
|
||||||
|
"Authors": [
|
||||||
|
{
|
||||||
|
"Email": "l4k1987@gmail.com",
|
||||||
|
"Name": "l4k1"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Category": "Global Themes (Plasma 6)",
|
||||||
|
"ServiceTypes": [
|
||||||
|
"Plasma/LookAndFeel"
|
||||||
|
],
|
||||||
|
"EnabledByDefault": true,
|
||||||
|
"Name": "Jolly-Global-6",
|
||||||
|
"Description": "Jolly Global Theme by l4k1",
|
||||||
|
"Id": "Jolly-Global-6",
|
||||||
|
"Version": "1.0",
|
||||||
|
"License": "GPLv3",
|
||||||
|
"Website": "https://github.com/L4ki/Jolly-Plasma-Themes"
|
||||||
|
},
|
||||||
|
"X-KPackage-Dependencies": [
|
||||||
|
"kns://window-decorations.knsrc/api.kde-look.org/2159702",
|
||||||
|
"kns://window-decorations.knsrc/api.kde-look.org/2159695",
|
||||||
|
"kns://colorschemes.knsrc/api.kde-look.org/1654363",
|
||||||
|
"kns://icons.knsrc/api.kde-look.org/1654368",
|
||||||
|
"kns://icons.knsrc/api.kde-look.org/2148992",
|
||||||
|
"kns://plasma-themes.knsrc/api.kde-look.org/1654379",
|
||||||
|
"kns://sddmtheme.knsrc/api.kde-look.org/2159694",
|
||||||
|
"kns://wallpaper.knsrc/api.kde-look.org/1654331",
|
||||||
|
"kns://wallpaper.knsrc/api.kde-look.org/2155591"
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user