parent
eea79bddd8
commit
a56b16e2ff
3 changed files with 44 additions and 0 deletions
@ -0,0 +1,35 @@ |
||||
/*
|
||||
SPDX-FileCopyrightText: 2023 Marco Martin <mart@kde.org> |
||||
|
||||
SPDX-License-Identifier: GPL-2.0-or-later |
||||
*/ |
||||
|
||||
#include <KGlobalAccel> |
||||
|
||||
#include <QAction> |
||||
#include <QGuiApplication> |
||||
#include <QStandardPaths> |
||||
|
||||
int main(int argc, char **argv) |
||||
{ |
||||
QGuiApplication app(argc, argv); |
||||
|
||||
const QStringList actionNames{ |
||||
QStringLiteral("ShowDesktopGrid"), |
||||
QStringLiteral("Expose"), |
||||
QStringLiteral("ExposeAll"), |
||||
QStringLiteral("ExposeClass"), |
||||
QStringLiteral("ExposeClassCurrentDesktop"), |
||||
}; |
||||
|
||||
for (const QString &actionName : actionNames) { |
||||
QAction action; |
||||
action.setObjectName(actionName); |
||||
action.setProperty("componentName", QStringLiteral("kwin")); |
||||
action.setProperty("componentDisplayName", QStringLiteral("KWin")); |
||||
KGlobalAccel::self()->setShortcut(&action, {QKeySequence()}, KGlobalAccel::NoAutoloading); |
||||
KGlobalAccel::self()->removeAllShortcuts(&action); |
||||
} |
||||
|
||||
return 0; |
||||
} |
||||
Loading…
Reference in new issue