Port to Plasma 6

This commit is contained in:
Arne Keller 2024-06-04 18:55:13 +02:00
parent f0b84cec2b
commit 1e64cf4a4d
3 changed files with 24 additions and 20 deletions

View File

@ -1,5 +1,5 @@
/*
SPDX-FileCopyrightText: 2021 Arne Keller <arne.keller@posteo.de>
SPDX-FileCopyrightText: 2024 Arne Keller <arne.keller@posteo.de>
SPDX-License-Identifier: GPL-3.0-or-later
*/
@ -12,8 +12,8 @@ function isRelevant(client) {
function toggleWindow() {
assertTrue(windowName != null, "ToggleWindow failed to load windowName from config!");
var allClients = workspace.clientList();
for (var i = 0; i < allClients.length; ++i) {
var allClients = workspace.windowList();
for (var i = 0; i < allClients.length; i++) {
if (isRelevant(allClients[i])) {
var prevMini = allClients[i].minimized;
allClients[i].minimized = !prevMini;

View File

@ -1,17 +0,0 @@
[Desktop Entry]
Name=Toggle Window
Comment=Changes minimization state of one window
Icon=preferences-system-windows-move
Type=Service
X-KDE-ServiceTypes=KWin/Script
X-Plasma-API=javascript
X-Plasma-MainScript=code/main.js
X-KDE-PluginInfo-Author=Arne Keller
X-KDE-PluginInfo-Email=arne.keller@posteo.de
X-KDE-PluginInfo-Name=togglewindow
X-KDE-PluginInfo-Version=0.1
X-KDE-PluginInfo-EnabledByDefault=true
X-KDE-PluginInfo-License=GPL-3.0
X-KDE-PluginInfo-Category=Windows and Tasks

21
metadata.json Normal file
View File

@ -0,0 +1,21 @@
{
"KPlugin": {
"Name": "Toggle Window Visibility",
"Description": "Changes minimization state of one window",
"Icon": "preferences-system-windows-move",
"Authors": [
{
"Email": "arne.keller@posteo.de",
"Name": "Arne Keller"
}
],
"Id": "togglewindow",
"Version": "0.1.1",
"License": "GPLv3",
"Website": "https://www.opencode.net/arnek01/kwin-toggle-window/"
},
"X-Plasma-API": "javascript",
"X-Plasma-MainScript": "code/main.js",
"KPackageStructure": "KWin/Script"
}