Compare commits

..

No commits in common. "ef832c797f7fb316d5c9254e3da53029e2c8a1ad" and "f0b84cec2bf8ff4fb14ee3022bbf322af5b7a0ef" have entirely different histories.

3 changed files with 21 additions and 25 deletions

View File

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

17
metadata.desktop Normal file
View File

@ -0,0 +1,17 @@
[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

View File

@ -1,21 +0,0 @@
{
"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.2",
"License": "GPLv3",
"Website": "https://www.opencode.net/arnek01/kwin-toggle-window/"
},
"X-Plasma-API": "javascript",
"X-Plasma-MainScript": "code/main.js",
"KPackageStructure": "KWin/Script"
}