Update
This commit is contained in:
parent
4d1dac4c4f
commit
c89662bacd
|
@ -1,4 +1,4 @@
|
||||||
# melawy-kde-theme-win11
|
# melawy-kde-theme-win11-kde6
|
||||||
KDE theme for Melawy Linux
|
KDE theme for Melawy Linux
|
||||||
|
|
||||||
### Donate
|
### Donate
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
"Name": "Win11OS-dark",
|
"Name": "Win11OS-dark",
|
||||||
"Name[ru]": "Win11OS-dark",
|
"Name[ru]": "Win11OS-dark",
|
||||||
"Name[x-test]": "xxWin11OS-darkxx",
|
"Name[x-test]": "xxWin11OS-darkxx",
|
||||||
"Version": "5.111.0",
|
"Version": "6.0.0",
|
||||||
"Website": "https://github.com/yeyushengfan258/Win11OS-kde"
|
"Website": "https://github.com/yeyushengfan258/Win11OS-kde"
|
||||||
},
|
},
|
||||||
"X-Plasma-API": "5.0"
|
"X-Plasma-API": "5.0"
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
"Name": "Win11OS-light",
|
"Name": "Win11OS-light",
|
||||||
"Name[ru]": "Win11OS-light",
|
"Name[ru]": "Win11OS-light",
|
||||||
"Name[x-test]": "xxWin11OS-lightxx",
|
"Name[x-test]": "xxWin11OS-lightxx",
|
||||||
"Version": "5.111.0",
|
"Version": "6.0.0",
|
||||||
"Website": "https://github.com/yeyushengfan258/Win11OS-kde"
|
"Website": "https://github.com/yeyushengfan258/Win11OS-kde"
|
||||||
},
|
},
|
||||||
"X-Plasma-API": "5.0"
|
"X-Plasma-API": "5.0"
|
||||||
|
|
|
@ -1,31 +1,44 @@
|
||||||
let FullApps = [
|
let baseApps = [
|
||||||
"melawy-welcome.desktop",
|
"melawy-welcome.desktop",
|
||||||
"systemsettings.desktop",
|
"systemsettings.desktop",
|
||||||
"pamac.desktop",
|
"pamac.desktop",
|
||||||
"org.kde.dolphin.desktop",
|
"org.kde.dolphin.desktop",
|
||||||
"org.kde.konsole.desktop",
|
"org.kde.konsole.desktop",
|
||||||
"org.kde.kcalc.desktop",
|
"org.kde.kcalc.desktop",
|
||||||
"org.kde.kate.desktop",
|
"org.kde.kate.desktop"
|
||||||
"code.desktop",
|
|
||||||
"org.telegram.desktop.desktop",
|
|
||||||
"discord.desktop",
|
|
||||||
"Zoom.desktop",
|
|
||||||
"firefoxdeveloperedition.desktop",
|
|
||||||
"firefox.desktop",
|
|
||||||
"brave-browser.desktop",
|
|
||||||
"google-chrome.desktop"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
let addApps = [
|
||||||
|
["code.desktop", "com.visualstudio.code.desktop"],
|
||||||
|
["org.telegram.desktop.desktop", "org.telegram.desktop.desktop"],
|
||||||
|
["discord.desktop", "com.discordapp.Discord.desktop"],
|
||||||
|
["Zoom.desktop", "us.zoom.Zoom.desktop"],
|
||||||
|
["firefoxdeveloperedition.desktop", "firefoxdeveloperedition.desktop"],
|
||||||
|
["firefox.desktop", "org.mozilla.firefox.desktop"],
|
||||||
|
["brave-browser.desktop", "com.brave.Browser.desktop"],
|
||||||
|
["google-chrome.desktop", "com.google.Chrome.desktop"]
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
let applications = '';
|
let applications = '';
|
||||||
FullApps.forEach((i) => {
|
|
||||||
if (applicationExists(i)) {
|
baseApps.forEach((i) => {
|
||||||
applications += 'applications:' + i + ',';
|
if (applicationExists(i)) {
|
||||||
}
|
applications += 'applications:' + i + ',';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
addApps.forEach((i) => {
|
||||||
|
if (applicationExists(i[0])) {
|
||||||
|
applications += 'applications:' + i[0] + ',';
|
||||||
|
} else if (applicationExists(i[1])) {
|
||||||
|
applications += 'applications:' + i[1] + ',';
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
applications = applications.substring(0, applications.length - 1).split(',');
|
applications = applications.substring(0, applications.length - 1).split(',');
|
||||||
|
|
||||||
/*dock*/
|
/*dock*/
|
||||||
applet.currentConfigGroup = [];
|
applet.currentConfigGroup = [];
|
||||||
applet.writeConfig("launchers", "")
|
applet.writeConfig("launchers", "")
|
||||||
applet.currentConfigGroup = ["General"];
|
applet.currentConfigGroup = ["General"];
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"KPackageStructure": "Plasma/LookAndFeel",
|
||||||
"KPlugin": {
|
"KPlugin": {
|
||||||
"Authors": [
|
"Authors": [
|
||||||
{
|
{
|
||||||
|
@ -17,15 +18,11 @@
|
||||||
"Name": "Win11OS-dark",
|
"Name": "Win11OS-dark",
|
||||||
"Name[ru]": "Win11OS-dark",
|
"Name[ru]": "Win11OS-dark",
|
||||||
"Name[x-test]": "xxWin11OS-darkxx",
|
"Name[x-test]": "xxWin11OS-darkxx",
|
||||||
"ServiceTypes": [
|
|
||||||
"Plasma/LookAndFeel"
|
|
||||||
],
|
|
||||||
"Version": "2.0",
|
"Version": "2.0",
|
||||||
"Website": "https://github.com/yeyushengfan258/Win11OS-kde"
|
"Website": "https://github.com/yeyushengfan258/Win11OS-kde"
|
||||||
},
|
},
|
||||||
"Keywords": "Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;",
|
"Keywords": "Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;",
|
||||||
"Keywords[ru]": "Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;рабочий стол;рабочая среда;внешний вид;визуальное представление;выход;завершение сеанса;блокировка;приостановка работы;завершение работы;выключение;спящий режим;ждущий режим;",
|
"Keywords[ru]": "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[x-test]": "xxDesktopxx;xxWorkspacexx;xxAppearancexx;xxLook and Feelxx;xxLogoutxx;xxLockxx;xxSuspendxx;xxShutdownxx;xxHibernatexx;",
|
||||||
"X-Plasma-APIVersion": "2",
|
"X-Plasma-APIVersion": "2"
|
||||||
"X-Plasma-MainScript": "defaults"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,31 +1,44 @@
|
||||||
let FullApps = [
|
let baseApps = [
|
||||||
"melawy-welcome.desktop",
|
"melawy-welcome.desktop",
|
||||||
"systemsettings.desktop",
|
"systemsettings.desktop",
|
||||||
"pamac.desktop",
|
"pamac.desktop",
|
||||||
"org.kde.dolphin.desktop",
|
"org.kde.dolphin.desktop",
|
||||||
"org.kde.konsole.desktop",
|
"org.kde.konsole.desktop",
|
||||||
"org.kde.kcalc.desktop",
|
"org.kde.kcalc.desktop",
|
||||||
"org.kde.kate.desktop",
|
"org.kde.kate.desktop"
|
||||||
"code.desktop",
|
|
||||||
"org.telegram.desktop.desktop",
|
|
||||||
"discord.desktop",
|
|
||||||
"Zoom.desktop",
|
|
||||||
"firefoxdeveloperedition.desktop",
|
|
||||||
"firefox.desktop",
|
|
||||||
"brave-browser.desktop",
|
|
||||||
"google-chrome.desktop"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
let addApps = [
|
||||||
|
["code.desktop", "com.visualstudio.code.desktop"],
|
||||||
|
["org.telegram.desktop.desktop", "org.telegram.desktop.desktop"],
|
||||||
|
["discord.desktop", "com.discordapp.Discord.desktop"],
|
||||||
|
["Zoom.desktop", "us.zoom.Zoom.desktop"],
|
||||||
|
["firefoxdeveloperedition.desktop", "firefoxdeveloperedition.desktop"],
|
||||||
|
["firefox.desktop", "org.mozilla.firefox.desktop"],
|
||||||
|
["brave-browser.desktop", "com.brave.Browser.desktop"],
|
||||||
|
["google-chrome.desktop", "com.google.Chrome.desktop"]
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
let applications = '';
|
let applications = '';
|
||||||
FullApps.forEach((i) => {
|
|
||||||
if (applicationExists(i)) {
|
baseApps.forEach((i) => {
|
||||||
applications += 'applications:' + i + ',';
|
if (applicationExists(i)) {
|
||||||
}
|
applications += 'applications:' + i + ',';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
addApps.forEach((i) => {
|
||||||
|
if (applicationExists(i[0])) {
|
||||||
|
applications += 'applications:' + i[0] + ',';
|
||||||
|
} else if (applicationExists(i[1])) {
|
||||||
|
applications += 'applications:' + i[1] + ',';
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
applications = applications.substring(0, applications.length - 1).split(',');
|
applications = applications.substring(0, applications.length - 1).split(',');
|
||||||
|
|
||||||
/*dock*/
|
/*dock*/
|
||||||
applet.currentConfigGroup = [];
|
applet.currentConfigGroup = [];
|
||||||
applet.writeConfig("launchers", "")
|
applet.writeConfig("launchers", "")
|
||||||
applet.currentConfigGroup = ["General"];
|
applet.currentConfigGroup = ["General"];
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"KPackageStructure": "Plasma/LookAndFeel",
|
||||||
"KPlugin": {
|
"KPlugin": {
|
||||||
"Authors": [
|
"Authors": [
|
||||||
{
|
{
|
||||||
|
@ -17,15 +18,11 @@
|
||||||
"Name": "Win11OS-gray",
|
"Name": "Win11OS-gray",
|
||||||
"Name[ru]": "Win11OS-gray",
|
"Name[ru]": "Win11OS-gray",
|
||||||
"Name[x-test]": "xxWin11OS-grayxx",
|
"Name[x-test]": "xxWin11OS-grayxx",
|
||||||
"ServiceTypes": [
|
|
||||||
"Plasma/LookAndFeel"
|
|
||||||
],
|
|
||||||
"Version": "2.0",
|
"Version": "2.0",
|
||||||
"Website": "https://github.com/yeyushengfan258/Win11OS-kde"
|
"Website": "https://github.com/yeyushengfan258/Win11OS-kde"
|
||||||
},
|
},
|
||||||
"Keywords": "Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;",
|
"Keywords": "Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;",
|
||||||
"Keywords[ru]": "Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;рабочий стол;рабочая среда;внешний вид;визуальное представление;выход;завершение сеанса;блокировка;приостановка работы;завершение работы;выключение;спящий режим;ждущий режим;",
|
"Keywords[ru]": "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[x-test]": "xxDesktopxx;xxWorkspacexx;xxAppearancexx;xxLook and Feelxx;xxLogoutxx;xxLockxx;xxSuspendxx;xxShutdownxx;xxHibernatexx;",
|
||||||
"X-Plasma-APIVersion": "2",
|
"X-Plasma-APIVersion": "2"
|
||||||
"X-Plasma-MainScript": "defaults"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,31 +1,44 @@
|
||||||
let FullApps = [
|
let baseApps = [
|
||||||
"melawy-welcome.desktop",
|
"melawy-welcome.desktop",
|
||||||
"systemsettings.desktop",
|
"systemsettings.desktop",
|
||||||
"pamac.desktop",
|
"pamac.desktop",
|
||||||
"org.kde.dolphin.desktop",
|
"org.kde.dolphin.desktop",
|
||||||
"org.kde.konsole.desktop",
|
"org.kde.konsole.desktop",
|
||||||
"org.kde.kcalc.desktop",
|
"org.kde.kcalc.desktop",
|
||||||
"org.kde.kate.desktop",
|
"org.kde.kate.desktop"
|
||||||
"code.desktop",
|
|
||||||
"org.telegram.desktop.desktop",
|
|
||||||
"discord.desktop",
|
|
||||||
"Zoom.desktop",
|
|
||||||
"firefoxdeveloperedition.desktop",
|
|
||||||
"firefox.desktop",
|
|
||||||
"brave-browser.desktop",
|
|
||||||
"google-chrome.desktop"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
let addApps = [
|
||||||
|
["code.desktop", "com.visualstudio.code.desktop"],
|
||||||
|
["org.telegram.desktop.desktop", "org.telegram.desktop.desktop"],
|
||||||
|
["discord.desktop", "com.discordapp.Discord.desktop"],
|
||||||
|
["Zoom.desktop", "us.zoom.Zoom.desktop"],
|
||||||
|
["firefoxdeveloperedition.desktop", "firefoxdeveloperedition.desktop"],
|
||||||
|
["firefox.desktop", "org.mozilla.firefox.desktop"],
|
||||||
|
["brave-browser.desktop", "com.brave.Browser.desktop"],
|
||||||
|
["google-chrome.desktop", "com.google.Chrome.desktop"]
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
let applications = '';
|
let applications = '';
|
||||||
FullApps.forEach((i) => {
|
|
||||||
if (applicationExists(i)) {
|
baseApps.forEach((i) => {
|
||||||
applications += 'applications:' + i + ',';
|
if (applicationExists(i)) {
|
||||||
}
|
applications += 'applications:' + i + ',';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
addApps.forEach((i) => {
|
||||||
|
if (applicationExists(i[0])) {
|
||||||
|
applications += 'applications:' + i[0] + ',';
|
||||||
|
} else if (applicationExists(i[1])) {
|
||||||
|
applications += 'applications:' + i[1] + ',';
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
applications = applications.substring(0, applications.length - 1).split(',');
|
applications = applications.substring(0, applications.length - 1).split(',');
|
||||||
|
|
||||||
/*dock*/
|
/*dock*/
|
||||||
applet.currentConfigGroup = [];
|
applet.currentConfigGroup = [];
|
||||||
applet.writeConfig("launchers", "")
|
applet.writeConfig("launchers", "")
|
||||||
applet.currentConfigGroup = ["General"];
|
applet.currentConfigGroup = ["General"];
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"KPackageStructure": "Plasma/LookAndFeel",
|
||||||
"KPlugin": {
|
"KPlugin": {
|
||||||
"Authors": [
|
"Authors": [
|
||||||
{
|
{
|
||||||
|
@ -17,15 +18,11 @@
|
||||||
"Name": "Win11OS-light",
|
"Name": "Win11OS-light",
|
||||||
"Name[ru]": "Win11OS-light",
|
"Name[ru]": "Win11OS-light",
|
||||||
"Name[x-test]": "xxWin11OS-lightxx",
|
"Name[x-test]": "xxWin11OS-lightxx",
|
||||||
"ServiceTypes": [
|
|
||||||
"Plasma/LookAndFeel"
|
|
||||||
],
|
|
||||||
"Version": "2.0",
|
"Version": "2.0",
|
||||||
"Website": "https://github.com/yeyushengfan258/Win11OS-kde"
|
"Website": "https://github.com/yeyushengfan258/Win11OS-kde"
|
||||||
},
|
},
|
||||||
"Keywords": "Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;",
|
"Keywords": "Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;",
|
||||||
"Keywords[ru]": "Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;рабочий стол;рабочая среда;внешний вид;визуальное представление;выход;завершение сеанса;блокировка;приостановка работы;завершение работы;выключение;спящий режим;ждущий режим;",
|
"Keywords[ru]": "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[x-test]": "xxDesktopxx;xxWorkspacexx;xxAppearancexx;xxLook and Feelxx;xxLogoutxx;xxLockxx;xxSuspendxx;xxShutdownxx;xxHibernatexx;",
|
||||||
"X-Plasma-APIVersion": "2",
|
"X-Plasma-APIVersion": "2"
|
||||||
"X-Plasma-MainScript": "defaults"
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue