I am not much for the artwork of the wallpaper in Kubuntu 16.10. I would really like to install the wallpaper from K16.04 but have found suitable alternatives in the library of wallpapers.
Thanks! Shab
Thanks! Shab
cd /usr/share/sddm/themes/breeze/components/artwork
mv background.png backgroundbackup.png
cd /home/<your_user_name>/Desktop
mv background.png usr/share/sddm/themes/breeze/components/artwork
cd /usr/share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/artwork
mv background.png backgroundbackup.png
cd /home/<your_user_name>/Desktop
mv background.png /usr/share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/artwork
import QtQuick 2.5
/* * Copyright 2014 Marco Martin <mart@kde.org> * * 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 Image { id: root source: "../components/artwork/background.png" fillMode: Image.PreserveAspectCrop property int stage onStageChanged: { if (stage == 1) { introAnimation.running = true } } Rectangle { id: topRect width: parent.width height: (root.height / 3) - bottomRect.height - 1 y: root.height color: "#4C000000" Image { source: "images/kde.svgz" anchors.centerIn: parent sourceSize.height: 128 sourceSize.width: 128 } } Rectangle { id: bottomRect width: parent.width y: -height height: 50 color: "#4C000000" Rectangle { radius: 3 color: "#31363b" anchors.centerIn: parent height: 8 width: height*32 Rectangle { radius: 3 anchors { left: parent.left top: parent.top bottom: parent.bottom } width: (parent.width / 6) * (stage - 1) color: "#3daee9" Behavior on width { PropertyAnimation { duration: 250 easing.type: Easing.InOutQuad } } } } } ParallelAnimation { id: introAnimation running: false YAnimator { target: topRect from: root.height to: root.height / 3 duration: 1000 easing.type: Easing.InOutBack easing.overshoot: 1.0 } YAnimator { target: bottomRect from: -bottomRect.height to: 2 * (root.height / 3) - bottomRect.height duration: 1000 easing.type: Easing.InOutBack easing.overshoot: 1.0 } } }
Comment