Advance Wayland and KDE package bring-up
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
# SPDX-FileCopyrightText: 2023 Niccolò Venerandi <niccolo.venerandi@kde.org>
|
||||
# SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
||||
|
||||
add_executable(kwin-6.0-delete-desktop-switching-shortcuts)
|
||||
target_sources(kwin-6.0-delete-desktop-switching-shortcuts PRIVATE kwin-6.0-delete-desktop-switching-shortcuts.cpp)
|
||||
target_link_libraries(kwin-6.0-delete-desktop-switching-shortcuts PRIVATE KF6::GlobalAccel)
|
||||
install(TARGETS kwin-6.0-delete-desktop-switching-shortcuts DESTINATION ${KDE_INSTALL_LIBDIR}/kconf_update_bin/)
|
||||
|
||||
add_executable(kwin-6.0-reset-active-mouse-screen)
|
||||
target_sources(kwin-6.0-reset-active-mouse-screen PRIVATE kwin-6.0-reset-active-mouse-screen.cpp)
|
||||
target_link_libraries(kwin-6.0-reset-active-mouse-screen PRIVATE KF6::ConfigCore)
|
||||
install(TARGETS kwin-6.0-reset-active-mouse-screen DESTINATION ${KDE_INSTALL_LIBDIR}/kconf_update_bin/)
|
||||
|
||||
add_executable(kwin-6.0-remove-breeze-tabbox-default)
|
||||
target_sources(kwin-6.0-remove-breeze-tabbox-default PRIVATE kwin-6.0-remove-breeze-tabbox-default.cpp)
|
||||
target_link_libraries(kwin-6.0-remove-breeze-tabbox-default PRIVATE KF6::ConfigCore)
|
||||
install(TARGETS kwin-6.0-remove-breeze-tabbox-default DESTINATION ${KDE_INSTALL_LIBDIR}/kconf_update_bin/)
|
||||
|
||||
add_executable(kwin-6.1-remove-gridview-expose-shortcuts)
|
||||
target_sources(kwin-6.1-remove-gridview-expose-shortcuts PRIVATE kwin-6.1-remove-gridview-expose-shortcuts.cpp)
|
||||
target_link_libraries(kwin-6.1-remove-gridview-expose-shortcuts PRIVATE KF6::GlobalAccel)
|
||||
install(TARGETS kwin-6.1-remove-gridview-expose-shortcuts DESTINATION ${KDE_INSTALL_LIBDIR}/kconf_update_bin/)
|
||||
|
||||
install(FILES kwin.upd
|
||||
DESTINATION ${KDE_INSTALL_KCONFUPDATEDIR})
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
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("Walk Through Desktops"),
|
||||
QStringLiteral("Walk Through Desktops (Reverse)"),
|
||||
QStringLiteral("Walk Through Desktop List"),
|
||||
QStringLiteral("Walk Through Desktop List (Reverse)"),
|
||||
};
|
||||
|
||||
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;
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
/*
|
||||
SPDX-FileCopyrightText: 2024 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
|
||||
|
||||
SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
#include <KConfigGroup>
|
||||
#include <KSharedConfig>
|
||||
|
||||
int main()
|
||||
{
|
||||
KConfig config(QStandardPaths::writableLocation(QStandardPaths::GenericConfigLocation) + QLatin1String("/kdedefaults/kwinrc"), KConfig::SimpleConfig);
|
||||
|
||||
KConfigGroup windows = config.group(QStringLiteral("TabBox"));
|
||||
bool needsSync = false;
|
||||
|
||||
if (!windows.exists()) {
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
if (windows.hasKey(QStringLiteral("LayoutName")) && windows.readEntry(QStringLiteral("LayoutName"), QString()) == QString("org.kde.breeze.desktop")) {
|
||||
windows.deleteEntry(QStringLiteral("LayoutName"));
|
||||
needsSync = true;
|
||||
}
|
||||
|
||||
if (windows.hasKey(QStringLiteral("DesktopListLayout"))) {
|
||||
windows.deleteEntry(QStringLiteral("DesktopListLayout"));
|
||||
needsSync = true;
|
||||
}
|
||||
if (windows.hasKey(QStringLiteral("DesktopLayout"))) {
|
||||
windows.deleteEntry(QStringLiteral("DesktopLayout"));
|
||||
needsSync = true;
|
||||
}
|
||||
|
||||
if (needsSync) {
|
||||
return windows.sync() ? EXIT_SUCCESS : EXIT_FAILURE;
|
||||
} else {
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
SPDX-FileCopyrightText: 2024 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
|
||||
|
||||
SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
#include <KConfigGroup>
|
||||
#include <KSharedConfig>
|
||||
|
||||
int main()
|
||||
{
|
||||
auto config = KSharedConfig::openConfig(QStringLiteral("kwinrc"));
|
||||
|
||||
KConfigGroup windows = config->group(QStringLiteral("Windows"));
|
||||
if (!windows.exists()) {
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
if (!windows.hasKey(QStringLiteral("ActiveMouseScreen"))) {
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
windows.deleteEntry(QStringLiteral("ActiveMouseScreen"));
|
||||
|
||||
return windows.sync() ? EXIT_SUCCESS : EXIT_FAILURE;
|
||||
}
|
||||
+35
@@ -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;
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
# SPDX-FileCopyrightText: 2023 Niccolò Venerandi <niccolo.venerandi@kde.org>
|
||||
# SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
||||
|
||||
Version=6
|
||||
|
||||
# Reset ActiveMouseScreen config option.
|
||||
Id=kwin-6.0-reset-active-mouse-screen
|
||||
Script=kwin-6.0-reset-active-mouse-screen
|
||||
|
||||
# Delete old desktop switching shortcuts.
|
||||
Id=kwin-6.0-delete-desktop-switching-shortcuts
|
||||
Script=kwin-6.0-delete-desktop-switching-shortcuts
|
||||
|
||||
# Delete old tabbox defaults
|
||||
Id=kwin-6.0-remove-breeze-tabbox-default
|
||||
Script=kwin-6.0-remove-breeze-tabbox-default
|
||||
|
||||
# Delete old gridview and expose defaults
|
||||
Id=kwin-6.1-remove-gridview-expose-shortcuts
|
||||
Script=kwin-6.1-remove-gridview-expose-shortcuts
|
||||
Reference in New Issue
Block a user