diff --git a/Jolly-Global-Themes/Jolly-Global/contents/defaults b/Jolly-Global-Themes/Jolly-Global/contents/defaults new file mode 100644 index 0000000..67b500e --- /dev/null +++ b/Jolly-Global-Themes/Jolly-Global/contents/defaults @@ -0,0 +1,29 @@ +[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=Forest SunsetNL.png + +[plasmarc][Theme] +name=Jolly-Plasma + +[kwinrc][org.kde.kdecoration2] +library=org.kde.kwin.aurorae +theme=__aurorae__svg__Jolly-Aurorae + + diff --git a/Jolly-Global-Themes/Jolly-Global/contents/previews/fullscreenpreview.jpg b/Jolly-Global-Themes/Jolly-Global/contents/previews/fullscreenpreview.jpg new file mode 100644 index 0000000..131c69b Binary files /dev/null and b/Jolly-Global-Themes/Jolly-Global/contents/previews/fullscreenpreview.jpg differ diff --git a/Jolly-Global-Themes/Jolly-Global/contents/previews/preview.png b/Jolly-Global-Themes/Jolly-Global/contents/previews/preview.png new file mode 100644 index 0000000..3b3ea2b Binary files /dev/null and b/Jolly-Global-Themes/Jolly-Global/contents/previews/preview.png differ diff --git a/Jolly-Global-Themes/Jolly-Global/contents/previews/splash.png b/Jolly-Global-Themes/Jolly-Global/contents/previews/splash.png new file mode 100644 index 0000000..f53eabd Binary files /dev/null and b/Jolly-Global-Themes/Jolly-Global/contents/previews/splash.png differ diff --git a/Jolly-Global-Themes/Jolly-Global/contents/splash/Splash.qml b/Jolly-Global-Themes/Jolly-Global/contents/splash/Splash.qml new file mode 100644 index 0000000..7393c8c --- /dev/null +++ b/Jolly-Global-Themes/Jolly-Global/contents/splash/Splash.qml @@ -0,0 +1,230 @@ +/* + * Copyright 2014 Marco Martin + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2, + * or (at your option) any later version, as published by the Free + * Software Foundation + * + * 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, write to the + * Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +import QtQuick 2.5 +import QtGraphicalEffects 1.0 + +Image { + id: root + source: "images/Jolly-Nebula Wallpaper Without Plasma Logo.jpg" + fillMode: Image.PreserveAspectCrop + + property int stage + + onStageChanged: { + if (stage == 1) { + introAnimation.running = true + preOpacityAnimation.from = 0; + preOpacityAnimation.to = 1; + preOpacityAnimation.running = true; + } + if (stage == 4) { + preOpacityAnimation.from = 1; + preOpacityAnimation.to = 0; + preOpacityAnimation.running = true; + pausa.start(); + } + } + + Item { + id: content + anchors.rightMargin: 0 + anchors.bottomMargin: 0 + anchors.leftMargin: 0 + anchors.topMargin: 0 + anchors.fill: parent + opacity: 1 + 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 + property real size: units.gridUnit * 12 + anchors.centerIn: parent + source: "" + sourceSize.width: size + sourceSize.height: size + } + } + + Text { + id: date + text:Qt.formatDateTime(new Date(),"dddd, hh:mm AP") + font.pointSize: 26 + color: "#7d7daf" + opacity:0.85 + font { family: "NotoSans"; weight: Font.Medium ;capitalization: Font.Capitalize} + anchors.horizontalCenter: parent.horizontalCenter + y: (parent.height - height) / 2.4 + } + + Image { + id: busyIndicator1 + //in the middle of the remaining space + //y: (parent.height - height) / 1.7 + y: root.height - (root.height - logo.y) / 1.1 - height/2 + anchors.horizontalCenter: parent.horizontalCenter + source: "images/start.svg" + opacity: 0.9 + sourceSize.height: units.gridUnit * 6.0 + sourceSize.width: units.gridUnit * 6.0 + RotationAnimator on rotation { + id: rotationAnimator1 + from: 0 + to: 0 + duration: 1100 + loops: Animation.Infinite + } + } + + Image { + id: topRect + anchors.horizontalCenter: parent.horizontalCenter + y: root.height + source: "images/rectangle.svg" + Rectangle { + y: 232 + radius: 0 + anchors.horizontalCenterOffset: 0 + color: "#33305a" + anchors { + bottom: parent.bottom + bottomMargin: 50 + horizontalCenter: parent.horizontalCenter + } + height: 2 + width: height*200 + Rectangle { + id: topRectRectangle + radius: 1 + anchors { + left: parent.left + top: parent.top + bottom: parent.bottom + } + width: (parent.width / 6) * (stage - 0.00) + color: "#7171a8" + Behavior on width { + PropertyAnimation { + duration: 200 + easing.type: Easing.InOutQuad + } + } + } + } + } + + SequentialAnimation { + id: introAnimation + running: false + + ParallelAnimation { + PropertyAnimation { + property: "y" + target: topRect + to: ((root.height / 3) * 2) - 170 + duration: 1500 + easing.type: Easing.InOutBack + easing.overshoot: 1.0 + } + + } + } + + Text { + visible: true + height: 1470 + width: 1920 + Text { + id: text + font.pointSize: 24 + x: (root.width - width) / 2 + y: (root.height / 3) * 2 + anchors.centerIn: parent + text: "Linux For Open Minds" + visible: false + } + LinearGradient { + anchors.fill: text + source: text + gradient: Gradient { + GradientStop { position: 0; color: "#8282c1" } + GradientStop { position: 0.4; color: "#8282c1" } + GradientStop { position: 0.6; color: "#434364" } + GradientStop { position: 1; color: "#434364" } + } + } +} + + OpacityAnimator { + id: preOpacityAnimation + running: false + target: preLoadingText + from: 0 + to: 1 + duration: 2000 + easing.type: Easing.InOutQuad + } + + Text { + id: loadingText + height: 30 + anchors.bottomMargin: 0 + anchors.topMargin: 0 + text: "Linux For Open Minds" + color: "#2e75bc" + font.family: webFont.name + font.weight: Font.ExtraLight + + font.pointSize: 20 + opacity: 0 + textFormat: Text.StyledText + x: (root.width - width) / 2 + y: (root.height / 3) * 2 + } + + OpacityAnimator { + id: opacityAnimation + running: false + target: loadingText + from: 0 + to: 1 + duration: 000 + easing.type: Easing.InOutQuad + paused: true + } + + Timer { + id: pausa + interval: 1500; running: false; repeat: false; + onTriggered: root.viewLoadingText(); + } + + function viewLoadingText() { + opacityAnimation.from = 0; + opacityAnimation.to = 1; + opacityAnimation.running = true; + } + +} diff --git a/Jolly-Global-Themes/Jolly-Global/contents/splash/images/Jolly-Nebula Wallpaper Without Plasma Logo.jpg b/Jolly-Global-Themes/Jolly-Global/contents/splash/images/Jolly-Nebula Wallpaper Without Plasma Logo.jpg new file mode 100644 index 0000000..2fb42d4 Binary files /dev/null and b/Jolly-Global-Themes/Jolly-Global/contents/splash/images/Jolly-Nebula Wallpaper Without Plasma Logo.jpg differ diff --git a/Jolly-Global-Themes/Jolly-Global/contents/splash/images/rectangle.svg b/Jolly-Global-Themes/Jolly-Global/contents/splash/images/rectangle.svg new file mode 100644 index 0000000..ac3e795 --- /dev/null +++ b/Jolly-Global-Themes/Jolly-Global/contents/splash/images/rectangle.svg @@ -0,0 +1 @@ + diff --git a/Jolly-Global-Themes/Jolly-Global/contents/splash/images/start.svg b/Jolly-Global-Themes/Jolly-Global/contents/splash/images/start.svg new file mode 100644 index 0000000..4781f0c --- /dev/null +++ b/Jolly-Global-Themes/Jolly-Global/contents/splash/images/start.svg @@ -0,0 +1,108 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/Jolly-Global-Themes/Jolly-Global/metadata.desktop b/Jolly-Global-Themes/Jolly-Global/metadata.desktop new file mode 100644 index 0000000..71865df --- /dev/null +++ b/Jolly-Global-Themes/Jolly-Global/metadata.desktop @@ -0,0 +1,13 @@ +[Desktop Entry] +Comment=Jolly-Global Look And Feel +Name=Jolly-Global +X-KDE-PluginInfo-Author=l4k1 +X-KDE-PluginInfo-Category=Plasma Look And Feel +X-KDE-PluginInfo-Email= +X-KDE-PluginInfo-EnabledByDefault=true +X-KDE-PluginInfo-License=GPLv3 +X-KDE-PluginInfo-Name=Jolly-Global +X-KDE-PluginInfo-Version=1.1 +X-KDE-PluginInfo-Website= +X-KDE-ServiceTypes=Plasma/LookAndFeel +X-KPackage-Dependencies=kns://colorschemes.knsrc/api.kde-look.org/1654363,kns://colorschemes.knsrc/api.kde-look.org/1654361,kns://plasma-themes.knsrc/api.kde-look.org/1654379,kns://icons.knsrc/api.kde-look.org/1654368,kns://aurorae.knsrc/api.kde-look.org/1654358,kns://aurorae.knsrc/api.kde-look.org/1654353,kns://wallpaper.knsrc/api.kde-look.org/1428521,kns://wallpaper.knsrc/api.kde-look.org/1654331,kns://sddmtheme.knsrc/api.kde-look.org/1654350