summaryrefslogtreecommitdiffstats
path: root/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop
diff options
context:
space:
mode:
Diffstat (limited to 'usr/share/plasma/look-and-feel/org.mageia.breeze.desktop')
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/defaults14
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/previews/splash.pngbin21537 -> 0 bytes
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/README1
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/Splash.qml174
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/background.pngbin1765454 -> 0 bytes
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble1.pngbin600 -> 0 bytes
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble2.pngbin592 -> 0 bytes
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble3.pngbin527 -> 0 bytes
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble4.pngbin494 -> 0 bytes
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble5.pngbin442 -> 0 bytes
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/logo.pngbin11545 -> 0 bytes
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/metadata.desktop137
12 files changed, 0 insertions, 326 deletions
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/defaults b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/defaults
deleted file mode 100644
index 1dfe182..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/defaults
+++ /dev/null
@@ -1,14 +0,0 @@
-[kdeglobals][KDE]
-widgetStyle=breeze
-
-[kdeglobals][General]
-ColorScheme=Breeze
-
-[kdeglobals][Icons]
-Theme=breeze
-
-[plasmarc][Theme]
-name=default
-
-[kcminputrc][Mouse]
-cursorTheme=breeze_cursors
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/previews/splash.png b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/previews/splash.png
deleted file mode 100644
index b932b69..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/previews/splash.png
+++ /dev/null
Binary files differ
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/README b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/README
deleted file mode 100644
index 719d87d..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/README
+++ /dev/null
@@ -1 +0,0 @@
-Mageia KSplash
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/Splash.qml b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/Splash.qml
deleted file mode 100644
index 4fe84fc..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/Splash.qml
+++ /dev/null
@@ -1,174 +0,0 @@
-/* vim:set foldenable foldmethod=marker:
- *
- * 2014 by DarkBeastOfPrey
- * Copyright (C) 2011 Ivan Cukic <ivan.cukic(at)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.2
-
-Item {
- id: main
-
- width: screenSize.width
- height: screenSize.height
- // width: 300
- // height: 300
-
- /* property declarations --------------------------{{{ */
- property int stage
- /* }}} */
-
- /* signal declarations ----------------------------{{{ */
-
- /* }}} */
-
- /* JavaScript functions ---------------------------{{{ */
- onStageChanged: {
- if (stage == 1) {
- mageia.opacity = 0.25
- bubble1.opacity = 0.25
- }
- if (stage == 2) {
- mageia.opacity = 1
- bubble1.opacity = 1
- bubble2.opacity = 1
- }
- if (stage == 3) {
- bubble3.opacity = 1
- }
- if (stage == 4) {
- bubble4.opacity = 1
- }
- if (stage == 5) {
- bubble5.opacity = 1
- }
- if (stage == 6) {
- }
- }
- /* }}} */
-
- /* object properties ------------------------------{{{ */
-
- /* }}} */
-
- /* child objects ----------------------------------{{{ */
-
- Image {
- id: background
- source: "images/background.png"
- anchors.fill: parent
-
- anchors {
- top: parent.top
- left: parent.left
- right: parent.right
- bottom: parent.bottom
-
- }
- opacity: 1
- }
-
- Image {
- id: bubble1
- smooth: true
-
- x: (parent.width) /4 + 30
- y: (parent.height) / 2 - 70
-
- source: "images/bubble1.png"
-
- opacity: 0
- Behavior on opacity { NumberAnimation { duration: 3000; easing { type: Easing.InOutQuad } } }
- }
-
- Image {
- id: bubble2
- smooth: true
-
- x: (parent.width) /4 + 30
- y: (parent.height) / 2 - 70
-
- source: "images/bubble2.png"
-
- opacity: 0
- Behavior on opacity { NumberAnimation { duration: 3000; easing { type: Easing.InOutQuad } } }
- }
-
- Image {
- id: bubble3
- smooth: true
-
- x: (parent.width) /4 + 30
- y: (parent.height) / 2 - 70
-
- source: "images/bubble3.png"
-
- opacity: 0
- Behavior on opacity { NumberAnimation { duration: 3000; easing { type: Easing.InOutQuad } } }
- }
-
- Image {
- id: bubble4
- smooth: true
-
- x: (parent.width) /4 + 30
- y: (parent.height) / 2 - 70
-
- source: "images/bubble4.png"
-
- opacity: 0
- Behavior on opacity { NumberAnimation { duration: 3000; easing { type: Easing.InOutQuad } } }
- }
-
- Image {
- id: bubble5
- smooth: true
-
- x: (parent.width) /4 + 30
- y: (parent.height) / 2 - 70
-
- source: "images/bubble5.png"
-
- opacity: 0
- Behavior on opacity { NumberAnimation { duration: 3000; easing { type: Easing.InOutQuad } } }
- }
-
- Image {
- id: mageia
- smooth: true
-
- x: (parent.width) / 4
- y: (parent.height) / 2
-
- source: "images/logo.png"
-
- opacity: 0
- Behavior on opacity { NumberAnimation { duration: 3000; easing { type: Easing.InOutQuad } } }
- }
-
- /* }}} */
-
- /* stages -----------------------------------------{{{ */
-
- /* }}} */
-
- /* transitions ------------------------------------{{{ */
-
- /* }}} */
-}
-
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/background.png b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/background.png
deleted file mode 100644
index 378bf38..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/background.png
+++ /dev/null
Binary files differ
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble1.png b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble1.png
deleted file mode 100644
index 84c6888..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble1.png
+++ /dev/null
Binary files differ
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble2.png b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble2.png
deleted file mode 100644
index 4a661ab..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble2.png
+++ /dev/null
Binary files differ
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble3.png b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble3.png
deleted file mode 100644
index d34a20a..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble3.png
+++ /dev/null
Binary files differ
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble4.png b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble4.png
deleted file mode 100644
index f93046d..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble4.png
+++ /dev/null
Binary files differ
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble5.png b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble5.png
deleted file mode 100644
index 1549e65..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble5.png
+++ /dev/null
Binary files differ
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/logo.png b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/logo.png
deleted file mode 100644
index dce2b6a..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/logo.png
+++ /dev/null
Binary files differ
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/metadata.desktop b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/metadata.desktop
deleted file mode 100644
index 8213310..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/metadata.desktop
+++ /dev/null
@@ -1,137 +0,0 @@
-[Desktop Entry]
-Comment=Mageia Desktop Design Language
-Encoding=UTF-8
-Keywords=Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;
-Keywords[ar]=سطح المكتب;مساحة العمل;المظهر;المظهر والملمس;الخروج;القفل;التّعليق;الإطفاء;الإسبات;
-Keywords[ca]=Escriptori;Espai de treball;Aparença;Aparença i comportament;Sortida;Bloqueig;Suspensió;Aturada;Hibernació;
-Keywords[ca@valencia]=Escriptori;Espai de treball;Aparença;Aparença i comportament;Eixida;Bloqueig;Suspensió;Aturada;Hibernació;
-Keywords[da]=Skrivebord;Desktop;Arbejdsområde;Udseende;log ud;Lås;Suspendér;Nedlukning;dvale;
-Keywords[de]=Desktop;Arbeitsfläche;Erscheinungsbild;Erscheinungsbild und Verhalten;Abmelden;Sperren;Ruhezustand;Tiefschlaf;Herunterfahren;
-Keywords[el]=Επιφάνεια εργασίας;Χώρος εργασίας; Εμφάνιση;Όψη και Αίσθηση;Αποσύνδεση;Κλείδωμα;Αναστολή;Τερματισμός;Νάρκη;
-Keywords[en_GB]=Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;
-Keywords[es]=Escritorio;Espacio de trabajo;Apariencia;Aspecto;Cerrar sesión;Bloquear;Suspender;Apagar;Hibernar;
-Keywords[fi]=Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;Työpöytä;Työtila;Ulkoasu;Ulkoasu ja tuntuma;Kirjaudu ulos;Lukitse;Valmiustila;Sammuta;Lepotila;
-Keywords[gl]=Escritorio;Espazo de traballo;Aparencia;Aparencia e Comportamento;Saír;Trancar;Bloquear;Suspender;Apagar;Hibernar
-Keywords[hu]=Asztal;Munkaterület;Megjelenés;Kinézet;Kijelentkezés;Zárolás;Felfüggesztés;Leállítás;Hibernálás
-Keywords[id]=Desktop;Ruang Kerja;Tampilan;Tampilan dan Rasa;Keluar;Kunci;Suspensi;Marikan;Hibernasi;
-Keywords[it]=Desktop;spazio di lavoro;aspetto;chiusura della sessione;blocco;sospensione;spegnimento;ibernazione;
-Keywords[ko]=Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;데스크톱;작업공간;모양;로그아웃;잠금;대기모드;종료;끄기;최대절전모드
-Keywords[lt]=Darbastalis;Erdvė;Išvaizda;Look and Feel;Atsijungti;užrakinti;sulaikyti;Išjungti;Hibernuoti;
-Keywords[nl]=Bureaublad;werkruimte;uiterlijk;uiterlijk en gedrag;afmelden;vergrendelen;onderbreken;afsluiten;slapen;
-Keywords[nn]=skrivebord;arbeidsområde;arbeidsflate;utsjånad;åtferd;utlogging;lås;dvalemodus;kvilemodus;avslutting;
-Keywords[pl]=Pulpit;Przestrzeń robocza;Wygląd;Wygląd i Odczucia;Wylogowanie;Zablokowanie ;Wstrzymanie;Zamknięcie;Hibernowanie;
-Keywords[pt]=Ecrã;Área de Trabalho;Aparência;Aparência e Comportamento;Encerrar;Bloquear;Suspender;Desligar;Hibernar;
-Keywords[pt_BR]=Área de trabalho;Espaço de trabalho;Aparência;Aparência e Comportamento;Encerrar sessão;Bloquear;Suspender;Desligar;Hibernar;
-Keywords[ru]=Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;рабочий стол;рабочая среда;внешний вид;визуальное представление;выход;завершение сеанса;блокировка;приостановка работы;завершение работы;выключение;спящий режим;ждущий режим;
-Keywords[sk]=Plocha;pracovná plocha;vzhľad;nastavenie;odhlásenie;zamknutie;uspanie;vypnutie;hibernácia;
-Keywords[sl]=Namizje;delovni prostor;videz;videz in občutek;odjava;zaklep;pripravljenost;izklop;mirovanje;
-Keywords[sr]=Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;површ;радни простор;изглед;осећај;одјава;закључавање;суспендовање;гашење;искључивање;спавање;
-Keywords[sr@ijekavian]=Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;површ;радни простор;изглед;осећај;одјава;закључавање;суспендовање;гашење;искључивање;спавање;
-Keywords[sr@ijekavianlatin]=Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;površ;radni prostor;izgled;osećaj;odjava;zaključavanje;suspendovanje;gašenje;isključivanje;spavanje;
-Keywords[sr@latin]=Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;površ;radni prostor;izgled;osećaj;odjava;zaključavanje;suspendovanje;gašenje;isključivanje;spavanje;
-Keywords[sv]=Skrivbord;Arbetsrymd;Utseende;Utseende och känsla;Utloggning;Lås;Viloläge;Avstängning;Dvala;
-Keywords[tr]=Masaüstü;Çalışma Alanı;Görünüm;Davranış;Çıkış;Kilitleme;Askıya Alma;Kapatma;Hazırda Bekleme;
-Keywords[uk]=Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;стільниця;робочий простір;воркспейс;вигляд;вигляд і поведінка;вихід;вийти;заблокувати;замкнути;призупинити;вимкнути;приспати;
-Keywords[x-test]=xxDesktopxx;xxWorkspacexx;xxAppearancexx;xxLook and Feelxx;xxLogoutxx;xxLockxx;xxSuspendxx;xxShutdownxx;xxHibernatexx;
-Keywords[zh_CN]=Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;桌面;工作空间;外观;观感;注销;锁定;待机;关机;休眠;
-Keywords[zh_TW]=Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;
-Name=Mageia
-Name[af]=Mageia
-Name[ar]=أكسجين
-Name[as]=Mageia
-Name[ast]=Mageia
-Name[be]=Mageia
-Name[be@latin]=Mageia
-Name[bg]=Mageia
-Name[bn]=অক্সিজেন
-Name[bn_IN]=Mageia
-Name[bs]=Kiseonik
-Name[ca]=Mageia
-Name[ca@valencia]=Mageia
-Name[cs]=Mageia
-Name[csb]=Krziseń
-Name[da]=Mageia
-Name[de]=Mageia
-Name[el]=Mageia
-Name[en_GB]=Mageia
-Name[eo]=Mageia
-Name[es]=Oxígeno
-Name[et]=Mageia
-Name[eu]=Mageia
-Name[fa]=اکسیژن
-Name[fi]=Mageia
-Name[fr]=Mageia
-Name[fy]=Mageia
-Name[ga]=Mageia
-Name[gl]=Mageia
-Name[gu]=ઓક્સિજન
-Name[he]=Mageia
-Name[hi]=आक्सीजन
-Name[hne]=आक्सीजन
-Name[hr]=Mageia
-Name[hsb]=Mageia
-Name[hu]=Mageia
-Name[ia]=Mageia
-Name[id]=Oksigen
-Name[is]=Mageia
-Name[it]=Mageia
-Name[ja]=Mageia
-Name[kk]=Mageia
-Name[km]=អុកស៊ីហ្សែន
-Name[kn]=ಆಕ್ಸಿಜನ್
-Name[ko]=Mageia
-Name[ku]=Mageia
-Name[lt]=Mageia
-Name[lv]=Mageia
-Name[mai]=आक्सीजन
-Name[mk]=Оксиген
-Name[ml]=ഓക്സിജന്‍
-Name[mr]=ऑक्सीजन
-Name[nb]=Mageia
-Name[nds]=Mageia
-Name[ne]=अक्सिजन
-Name[nl]=Mageia
-Name[nn]=Mageia
-Name[or]=ଅକ୍ସିଜେନ
-Name[pa]=ਆਕਸੀਜਨ
-Name[pl]=Tlen
-Name[pt]=Mageia
-Name[pt_BR]=Mageia
-Name[ro]=Mageia
-Name[ru]=Mageia
-Name[se]=Oksygena
-Name[si]=ඔක්සිජන්
-Name[sk]=Mageia
-Name[sl]=Kisik
-Name[sr]=Кисеоник
-Name[sr@ijekavian]=Кисеоник
-Name[sr@ijekavianlatin]=Kiseonik
-Name[sr@latin]=Kiseonik
-Name[sv]=Mageia
-Name[ta]=ஆக்ஸிஜன்
-Name[te]=Mageia
-Name[tg]=Mageia
-Name[th]=รูปแบบ Mageia
-Name[tr]=Mageia
-Name[ug]=ئوكسېگىن
-Name[uk]=Mageia
-Name[uz]=Mageia
-Name[uz@cyrillic]=Mageia
-Name[vi]=Mageia
-Name[wa]=Ocsidjinne
-Name[x-test]=xxMageiaxx
-Name[zh_CN]=Mageia
-Name[zh_TW]=Mageia
-Type=Service
-
-X-KDE-ServiceTypes=Plasma/LookAndFeel
-X-KDE-ParentApp=
-X-KDE-PluginInfo-Author=The Mageia team
-X-KDE-PluginInfo-Category=
-X-KDE-PluginInfo-Email=plasma-devel@kde.org
-X-KDE-PluginInfo-License=GPLv2+
-X-KDE-PluginInfo-Name=org.mageia.breeze.desktop
-X-KDE-PluginInfo-Version=2.0
-X-KDE-PluginInfo-Website=http://www.kde.org
-X-KDE-fallbackPackage=org.kde.breeze.desktop
-X-Plasma-MainScript=defaults