diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index a71f9a029738..2db876e02ad8 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,1062 +1,1062 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 6 # # 5: Depend on KDE Frameworks 5 components and variables. # 6: Depend on KDE Frameworks 6 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF[56]/Plasma[56] components (other ports) that this # port depends on. # * foo:build Add a build-time dependency (BUILD_DEPENDS) # * foo:run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-applications: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # option DOCS If the port is part of kde-applications (see CATEGORIES, # above) and has an option defined for DOCS then a dependency # for doctools:build is added. The option itself doesn't # have to do anything -- the dependency is always there. # # KDE_INVENT If the port does not have a regular release, and should # be fetched from KDE Invent (a GitLab instance) it can set # KDE_INVENT to 3 space-separated values: # * a full 40-character commit hash # * a category name inside KDE Invent # * a repository name inside KDE Invent # Default values for category and name are: # * the first item in CATEGORIES that is not "kde"; this # is useful when the FreeBSD ports category and the KDE # category are the same (which happens sometimes) # * PORTNAME, often the FreeBSD port name is the same # as the upstream name and it will not need to be specified. # Sometimes `KDE_INVENT=` will do and often # `KDE_INVENT= ` is enough. # # Setting KDE_INVENT is the equivalent of a handful of USE_GITLAB # and related settings. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 6 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== KDE_PLASMA_VERSION?= ${KDE_PLASMA${_KDE_VERSION}_VERSION} KDE_PLASMA_BRANCH?= ${KDE_PLASMA${_KDE_VERSION}_BRANCH} KDE_FRAMEWORKS_VERSION?= ${KDE_FRAMEWORKS${_KDE_VERSION}_VERSION} KDE_FRAMEWORKS_BRANCH?= ${KDE_FRAMEWORKS${_KDE_VERSION}_BRANCH} KDE_APPLICATIONS_BRANCH?= ${KDE_APPLICATIONS6_BRANCH} KDE_APPLICATIONS_VERSION?= ${KDE_APPLICATIONS6_VERSION} KDE_APPLICATIONS_SHLIB_VER?= ${KDE_APPLICATIONS6_SHLIB_VER} KDE_APPLICATIONS_SHLIB_G_VER?= ${KDE_APPLICATIONS6_SHLIB_G_VER} # Legacy KDE Plasma. KDE_PLASMA5_VERSION?= 5.27.12 KDE_PLASMA5_BRANCH?= stable # Current KDE Plasma desktop. -KDE_PLASMA6_VERSION?= 6.4.0 +KDE_PLASMA6_VERSION?= 6.4.1 KDE_PLASMA6_BRANCH?= stable # Legacy KDE frameworks (Qt5 based). KDE_FRAMEWORKS5_VERSION?= 5.116.0 KDE_FRAMEWORKS5_BRANCH?= stable # Current KDE Frameworks (Qt6 based). KDE_FRAMEWORKS6_VERSION?= 6.15.0 KDE_FRAMEWORKS6_BRANCH?= stable # Current KDE applications. Update _${PORTNAME}_PROJECT_VERSION for the following ports: # devel/kdevelop, games/libkdegames, games/libkmahjongg, graphics/kgraphviewer KDE_APPLICATIONS6_VERSION?= 25.04.2 KDE_APPLICATIONS6_SHLIB_VER?= 6.4.2 # G as in KDE Gear, and as in "don't make the variable name longer than required". KDE_APPLICATIONS6_SHLIB_G_VER?= ${KDE_APPLICATIONS6_VERSION} KDE_APPLICATIONS6_BRANCH?= stable # Some projects despite being a part of Gear distribution continue to use # their own versioning with mangled KDE_APPLICATIONS_VERSION as a patchlevel. # Provide more variables to ease their maintenance. KDE_APPS_MAJOR= ${KDE_APPLICATIONS_VERSION:R:R} KDE_APPS_MINOR= ${KDE_APPLICATIONS_VERSION:R:E} . if ${KDE_APPLICATIONS_BRANCH:Mstable} KDE_APPS_MICRO= 0${KDE_APPLICATIONS_VERSION:E} . else KDE_APPS_MICRO= ${KDE_APPLICATIONS_VERSION:E} . endif KDE_APPS_BASED_PATCHLEVEL?= ${KDE_APPS_MAJOR}${KDE_APPS_MINOR}${KDE_APPS_MICRO} # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma kde-devel . for cat in ${_KDE_CATEGORIES_SUPPORTED:Nkde-devel} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor # Doing source-selection if the sources are on KDE invent . if defined(KDE_INVENT) _invent_hash= ${KDE_INVENT:[1]} _invent_category= ${KDE_INVENT:[2]} _invent_name= ${KDE_INVENT:[3]} # Fill in default values if bits are missing . if empty(_invent_category) _invent_category= ${CATEGORIES:Nkde:[1]} . endif . if empty(_invent_name) _invent_name= ${PORTNAME} . endif # If valid, use it for GitLab . if empty(_invent_hash) || empty(_invent_category) || empty(_invent_name) IGNORE?= invalid KDE_INVENT value '${KDE_INVENT}' . else USE_GITLAB= yes GL_SITE= https://invent.kde.org GL_ACCOUNT= ${_invent_category} GL_PROJECT= ${_invent_name} GL_TAGNAME= ${_invent_hash} . endif . endif . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/release-service/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. This is only done if the port # defines OPTION DOCS -- the _KDE_OPTIONS here is to # avoid make errors when there are no options defined at all. _KDE_OPTIONS= bogus ${OPTIONS_DEFINE} . if ${_KDE_OPTIONS:MDOCS} DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* USE_KDE+= doctools:build . endif # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" . if defined(_${PORTNAME}_PROJECT_VERSION) PLIST_SUB+= SHLIB_VER_LONG=${_${PORTNAME}_PROJECT_VERSION}.${KDE_APPS_BASED_PATCHLEVEL} . endif DIST_SUBDIR?= KDE/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma${_KDE_VERSION}- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} WWW?= https://kde.org/plasma-desktop/ . if ${_KDE_VERSION:M6} DESCR= ${.CURDIR:H:H}/x11/plasma6-plasma/pkg-descr . endif . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf${_KDE_VERSION}- WWW?= https://api.kde.org/frameworks/${PORTNAME}/html/index.html # This is a slight duplication of _USE_PORTINGAIDS_ALL _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin khtml kmediaplayer kross kxmlrpcclient . if ${_KDE_VERSION:M5} . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . if ${_KDE_VERSION:M6} DIST_SUBDIR= KDE/frameworks/${KDE_FRAMEWORKS_VERSION:R} DESCR= ${.CURDIR:H:H}/x11/kf6-frameworks/pkg-descr . endif . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # === SET UP LOCALE ENVIRONMENT ================================================= USE_LOCALE?= en_US.UTF-8 # === SET UP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=true KDE_MAN_PREFIX?= ${KDE_PREFIX}/share/man # Enforce the chosen Qt Version CMAKE_ARGS+= -DQT_MAJOR_VERSION=${_QT_VER} # Disable autotests unless TEST_TARGET is defined. . if !defined(TEST_TARGET) CMAKE_ARGS+= -DBUILD_TESTING:BOOL=false . endif # ============================================================================== # === SET UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" \ KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" # ============================================================================== # List of all USE_KDE components. # TODO for KDE 7: do not mangle upstream naming: use the same name # for port directory, PORTNAME, and USE_KDE component. # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. _USE_PORTINGAIDS_ALL= js jsembed kdelibs4support khtml mediaplayer kross # List of components of the KDE Frameworks distribution. # Not ported to FreeBSD: bluez-qt modemmanagerqt _USE_FRAMEWORKS5_ALL= activities activities-stats apidox archive attica \ auth baloo bookmarks breeze-icons calendarcore \ codecs completion config configwidgets contacts \ coreaddons crash dbusaddons designerplugin dnssd \ doctools ecm emoticons filemetadata frameworkintegration \ globalaccel guiaddons holidays i18n iconthemes \ idletime init itemmodels itemviews jobwidgets \ kcmutils kdav kdeclarative kded kdesu kimageformats \ kio kirigami2 kquickcharts newstuff notifications \ notifyconfig package parts people plasma-framework \ plotting prison pty purpose qqc2-desktop-style \ runner service solid sonnet syndication \ syntaxhighlighting texteditor textwidgets \ threadweaver unitconversion wallet wayland \ widgetsaddons windowsystem xmlgui xmlrpcclient \ ${_USE_PORTINGAIDS_ALL} _USE_FRAMEWORKS6_ALL= apidox archive attica auth baloo bookmarks \ breeze-icons calendarcore codecs colorscheme \ completion config configwidgets contacts coreaddons \ crash dbusaddons dnssd doctools ecm filemetadata \ frameworkintegration globalaccel guiaddons holidays \ i18n iconthemes idletime itemmodels itemviews \ jobwidgets kcmutils kdav kdeclarative kded kdesu \ kimageformats kio kirigami2 kquickcharts newstuff \ networkmanagerqt notifications notifyconfig package parts \ people plasma-wayland-protocols plotting prison pty purpose \ qqc2-desktop-style runner service solid sonnet \ statusnotifieritem svg syndication \ syntaxhighlighting texteditor texttemplate \ textwidgets threadweaver unitconversion userfeedback \ wallet widgetsaddons windowsystem xmlgui _USE_FRAMEWORKS_ALL= ${_USE_FRAMEWORKS${_KDE_VERSION}_ALL} # List of components of the KDE Plasma distribution. _USE_PLASMA5_ALL= libksysguard oxygen-sounds _USE_PLASMA6_ALL= activities activities-stats activitymanagerd \ aurorae breeze breeze-gtk decoration discover \ globalacceld infocenter kde-cli-tools \ kde-gtk-config kdeplasma-addons kgamma kmenuedit \ kpipewire kscreen kscreenlocker ksshaskpass \ ksystemstats kwallet-pam kwin kwin-x11 kwrited \ layer-shell-qt libkscreen libksysguard libplasma \ milou ocean-sound-theme oxygen oxygen-sounds \ plasma-browser-integration plasma-desktop \ plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace \ plasma-workspace-wallpapers plasma5support \ polkit-kde-agent-1 powerdevil print-manager \ qqc2-breeze-style sddm-kcm spectacle systemmonitor \ systemsettings wayland xdg-desktop-portal-kde _USE_PLASMA_ALL= ${_USE_PLASMA${_KDE_VERSION}_ALL} # List of frequently used components of the KDE Gears distribution. _USE_GEAR5_ALL= libkdcraw libkexiv2 _USE_GEAR6_ALL= baloo-widgets kate kosm kpublictransport \ libkcddb libkcompactdisc libkdcraw \ libkdegames libkeduvocdocument libkexiv2 \ libksane marble okular _USE_GEAR_ALL= ${_USE_GEAR${_KDE_VERSION}_ALL} # List of components of the KDE PIM distribution (part of KDE Gears). _USE_KDEPIM_ALL= akonadi akonadicalendar akonadiconsole \ akonadicontacts akonadiimportwizard akonadimime \ akonadisearch akregator calendarsupport \ calendarutils eventviews gapi grantlee-editor \ grantleetheme gravatar identitymanagement imap \ incidenceeditor kaddressbook kalarm kdepim-addons \ kdepim-runtime kitinerary kmail kmail-account-wizard \ kontact kontactinterface korganizer kpkpass ksmtp \ ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox mbox-importer \ messagelib mime mimetreeparser pim-data-exporter \ pimcommon pimtextedit tnef # List of frequently used KDE releated software for any KDE/Qt version. _USE_KDE_EXTRA5_ALL= kirigami-addons phonon phonon-vlc \ plasma-wayland-protocols _USE_KDE_EXTRA6_ALL= kirigami-addons phonon phonon-mpv phonon-vlc \ plasma-wayland-protocols ktextaddons _USE_KDE_EXTRA_ALL= ${_USE_KDE_EXTRA${_KDE_VERSION}_ALL} _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_GEAR_ALL} \ ${_USE_KDE_EXTRA_ALL} _USE_KDE6_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM_ALL} \ ${_USE_GEAR_ALL} \ ${_USE_KDE_EXTRA_ALL} # ====================== frameworks components ================================= kde-activities_PORT5= x11/kf${_KDE_VERSION}-kactivities kde-activities_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities kde-activities_PORT= ${kde-activities_PORT${_KDE_VERSION}} kde-activities_LIB5= libKF${_KDE_VERSION}Activities.so kde-activities_LIB6= libPlasmaActivities.so kde-activities_LIB= ${kde-activities_LIB${_KDE_VERSION}} kde-activities-stats_PORT5= x11/kf${_KDE_VERSION}-kactivities-stats kde-activities-stats_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities-stats kde-activities-stats_PORT= ${kde-activities-stats_PORT${_KDE_VERSION}} kde-activities-stats_LIB5= libKF${_KDE_VERSION}ActivitiesStats.so kde-activities-stats_LIB6= libPlasmaActivitiesStats.so kde-activities-stats_LIB= ${kde-activities-stats_LIB${_KDE_VERSION}} # Use KApiDox tools from KDE Frameworks 6 kde-apidox_PORT= devel/kf6-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox-generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf${_KDE_VERSION}-karchive kde-archive_LIB= libKF${_KDE_VERSION}Archive.so kde-attica_PORT= x11-toolkits/kf${_KDE_VERSION}-attica kde-attica_LIB= libKF${_KDE_VERSION}Attica.so kde-auth_PORT= devel/kf${_KDE_VERSION}-kauth kde-auth_LIB= libKF${_KDE_VERSION}AuthCore.so kde-baloo_PORT= sysutils/kf${_KDE_VERSION}-baloo kde-baloo_LIB= libKF${_KDE_VERSION}Baloo.so kde-bookmarks_PORT= devel/kf${_KDE_VERSION}-kbookmarks kde-bookmarks_LIB= libKF${_KDE_VERSION}Bookmarks.so # Use the latest icons from KDE Frameworks 6 kde-breeze-icons_PORT= x11-themes/kf6-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-codecs_PORT= textproc/kf${_KDE_VERSION}-kcodecs kde-codecs_LIB= libKF${_KDE_VERSION}Codecs.so kde-completion_PORT= x11-toolkits/kf${_KDE_VERSION}-kcompletion kde-completion_LIB= libKF${_KDE_VERSION}Completion.so kde-config_PORT= devel/kf${_KDE_VERSION}-kconfig kde-config_LIB= libKF${_KDE_VERSION}ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kconfigwidgets kde-configwidgets_LIB= libKF${_KDE_VERSION}ConfigWidgets.so kde-coreaddons_PORT= devel/kf${_KDE_VERSION}-kcoreaddons kde-coreaddons_LIB= libKF${_KDE_VERSION}CoreAddons.so kde-crash_PORT= devel/kf${_KDE_VERSION}-kcrash kde-crash_LIB= libKF${_KDE_VERSION}Crash.so kde-dbusaddons_PORT= devel/kf${_KDE_VERSION}-kdbusaddons kde-dbusaddons_LIB= libKF${_KDE_VERSION}DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf${_KDE_VERSION}-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf${_KDE_VERSION}-kdnssd kde-dnssd_LIB= libKF${_KDE_VERSION}DNSSD.so kde-doctools_PORT= devel/kf${_KDE_VERSION}-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc${_KDE_VERSION} # Use ECM from KDE Frameworks 6 for everything kde-ecm_PORT= devel/kf6-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf${_KDE_VERSION}-kemoticons kde-emoticons_LIB= libKF${_KDE_VERSION}Emoticons.so kde-filemetadata_PORT= devel/kf${_KDE_VERSION}-kfilemetadata kde-filemetadata_LIB= libKF${_KDE_VERSION}FileMetaData.so kde-frameworkintegration_PORT= x11/kf${_KDE_VERSION}-frameworkintegration kde-frameworkintegration_LIB= libKF${_KDE_VERSION}Style.so kde-globalaccel_PORT= x11/kf${_KDE_VERSION}-kglobalaccel kde-globalaccel_LIB= libKF${_KDE_VERSION}GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kguiaddons kde-guiaddons_LIB= libKF${_KDE_VERSION}GuiAddons.so kde-holidays_PORT= net/kf${_KDE_VERSION}-kholidays kde-holidays_LIB= libKF${_KDE_VERSION}Holidays.so kde-i18n_PORT= devel/kf${_KDE_VERSION}-ki18n kde-i18n_LIB= libKF${_KDE_VERSION}I18n.so kde-iconthemes_PORT= x11-themes/kf${_KDE_VERSION}-kiconthemes kde-iconthemes_LIB= libKF${_KDE_VERSION}IconThemes.so kde-idletime_PORT= devel/kf${_KDE_VERSION}-kidletime kde-idletime_LIB= libKF${_KDE_VERSION}IdleTime.so kde-init_PORT= x11/kf${_KDE_VERSION}-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf${_KDE_VERSION}-kitemmodels kde-itemmodels_LIB= libKF${_KDE_VERSION}ItemModels.so kde-itemviews_PORT= x11-toolkits/kf${_KDE_VERSION}-kitemviews kde-itemviews_LIB= libKF${_KDE_VERSION}ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kjobwidgets kde-jobwidgets_LIB= libKF${_KDE_VERSION}JobWidgets.so kde-js_PORT= www/kf${_KDE_VERSION}-kjs kde-js_LIB= libKF${_KDE_VERSION}JS.so kde-jsembed_PORT= www/kf${_KDE_VERSION}-kjsembed kde-jsembed_LIB= libKF${_KDE_VERSION}JsEmbed.so kde-kcmutils_PORT= devel/kf${_KDE_VERSION}-kcmutils kde-kcmutils_LIB= libKF${_KDE_VERSION}KCMUtils.so kde-kdeclarative_PORT= devel/kf${_KDE_VERSION}-kdeclarative kde-kdeclarative_LIB5= libKF${_KDE_VERSION}Declarative.so kde-kdeclarative_LIB6= libKF${_KDE_VERSION}CalendarEvents.so kde-kdeclarative_LIB= ${kde-kdeclarative_LIB${_KDE_VERSION}} kde-kded_PORT= x11/kf${_KDE_VERSION}-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded${_KDE_VERSION} kde-kdelibs4support_PORT= x11/kf${_KDE_VERSION}-kdelibs4support kde-kdelibs4support_LIB= libKF${_KDE_VERSION}KDELibs4Support.so kde-kdesu_PORT= security/kf${_KDE_VERSION}-kdesu kde-kdesu_LIB= libKF${_KDE_VERSION}Su.so kde-khtml_PORT= www/kf${_KDE_VERSION}-khtml kde-khtml_LIB= libKF${_KDE_VERSION}KHtml.so kde-kimageformats_PORT= graphics/kf${_KDE_VERSION}-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf${_KDE_VERSION}-kio kde-kio_LIB= libKF${_KDE_VERSION}KIOCore.so kde-kirigami2_PORT5= x11-toolkits/kf${_KDE_VERSION}-kirigami2 kde-kirigami2_PORT6= x11-toolkits/kf${_KDE_VERSION}-kirigami kde-kirigami2_PATH5= ${QT_QMLDIR}/org/kde/kirigami.2/libKirigamiPlugin.so kde-kirigami2_PATH6= ${QT_QMLDIR}/org/kde/kirigami/libKirigamiplugin.so kde-kirigami2_PORT= ${kde-kirigami2_PORT${_KDE_VERSION}} kde-kirigami2_PATH= ${kde-kirigami2_PATH${_KDE_VERSION}} kde-kquickcharts_PORT= graphics/kf${_KDE_VERSION}-kquickcharts kde-kquickcharts_PATH5= ${QT_QMLDIR}/org/kde/quickcharts/libQuickCharts.so kde-kquickcharts_PATH6= ${QT_QMLDIR}/org/kde/quickcharts/libQuickChartsplugin.so kde-kquickcharts_PATH= ${kde-kquickcharts_PATH${_KDE_VERSION}} kde-kross_PORT= lang/kf${_KDE_VERSION}-kross kde-kross_LIB= libKF${_KDE_VERSION}KrossCore.so kde-layer-shell-qt_PORT= x11/plasma${_KDE_VERSION}-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf${_KDE_VERSION}-kmediaplayer kde-mediaplayer_LIB= libKF${_KDE_VERSION}MediaPlayer.so.5 kde-networkmanagerqt_PORT= net-mgmt/kf${_KDE_VERSION}-networkmanager-qt kde-networkmanagerqt_LIB= libKF${_KDE_VERSION}NetworkManagerQt.so kde-newstuff_PORT= devel/kf${_KDE_VERSION}-knewstuff kde-newstuff_LIB= libKF${_KDE_VERSION}NewStuffCore.so kde-notifications_PORT= devel/kf${_KDE_VERSION}-knotifications kde-notifications_LIB= libKF${_KDE_VERSION}Notifications.so kde-notifyconfig_PORT= devel/kf${_KDE_VERSION}-knotifyconfig kde-notifyconfig_LIB= libKF${_KDE_VERSION}NotifyConfig.so # Use the latest sounds from Plasma 6 kde-oxygen-sounds_PORT= audio/plasma6-oxygen-sounds kde-oxygen-sounds_PATH= ${KDE_PREFIX}/share/sounds/Oxygen-Sys-Log-In.ogg kde-oxygen-sounds_TYPE= run kde-package_PORT= devel/kf${_KDE_VERSION}-kpackage kde-package_LIB= libKF${_KDE_VERSION}Package.so kde-parts_PORT= devel/kf${_KDE_VERSION}-kparts kde-parts_LIB= libKF${_KDE_VERSION}Parts.so kde-people_PORT= devel/kf${_KDE_VERSION}-kpeople kde-people_LIB= libKF${_KDE_VERSION}People.so kde-plasma-framework_PORT= x11/kf${_KDE_VERSION}-plasma-framework kde-plasma-framework_LIB= libKF${_KDE_VERSION}Plasma.so kde-plasma-wayland-protocols_PORT= x11/plasma-wayland-protocols kde-plasma-wayland-protocols_PATH= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-plotting_PORT= graphics/kf${_KDE_VERSION}-kplotting kde-plotting_LIB= libKF${_KDE_VERSION}Plotting.so kde-prison_PORT= graphics/kf${_KDE_VERSION}-prison kde-prison_LIB= libKF${_KDE_VERSION}Prison.so kde-pty_PORT= devel/kf${_KDE_VERSION}-kpty kde-pty_LIB= libKF${_KDE_VERSION}Pty.so kde-purpose_PORT= misc/kf${_KDE_VERSION}-purpose kde-purpose_LIB= libKF${_KDE_VERSION}Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf${_KDE_VERSION}-qqc2-desktop-style kde-qqc2-desktop-style_PATH5= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kirigami/org.kde.desktop.so kde-qqc2-desktop-style_PATH6= ${QT_QMLDIR}/org/kde/desktop/liborg_kde_desktop.so kde-qqc2-desktop-style_PATH= ${kde-qqc2-desktop-style_PATH${_KDE_VERSION}} kde-runner_PORT= x11/kf${_KDE_VERSION}-krunner kde-runner_LIB= libKF${_KDE_VERSION}Runner.so kde-service_PORT= devel/kf${_KDE_VERSION}-kservice kde-service_LIB= libKF${_KDE_VERSION}Service.so kde-solid_PORT= devel/kf${_KDE_VERSION}-solid kde-solid_LIB= libKF${_KDE_VERSION}Solid.so kde-sonnet_PORT= textproc/kf${_KDE_VERSION}-sonnet kde-sonnet_LIB= libKF${_KDE_VERSION}SonnetCore.so kde-syndication_PORT= net/kf${_KDE_VERSION}-syndication kde-syndication_LIB= libKF${_KDE_VERSION}Syndication.so kde-syntaxhighlighting_PORT= textproc/kf${_KDE_VERSION}-syntax-highlighting kde-syntaxhighlighting_LIB= libKF${_KDE_VERSION}SyntaxHighlighting.so kde-texteditor_PORT= devel/kf${_KDE_VERSION}-ktexteditor kde-texteditor_LIB= libKF${_KDE_VERSION}TextEditor.so kde-texttemplate_PORT= devel/kf${_KDE_VERSION}-ktexttemplate kde-texttemplate_LIB= libKF${_KDE_VERSION}TextTemplate.so kde-textwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-ktextwidgets kde-textwidgets_LIB= libKF${_KDE_VERSION}TextWidgets.so kde-threadweaver_PORT= devel/kf${_KDE_VERSION}-threadweaver kde-threadweaver_LIB= libKF${_KDE_VERSION}ThreadWeaver.so kde-unitconversion_PORT= devel/kf${_KDE_VERSION}-kunitconversion kde-unitconversion_LIB= libKF${_KDE_VERSION}UnitConversion.so kde-wallet_PORT= sysutils/kf${_KDE_VERSION}-kwallet kde-wallet_LIB= libKF${_KDE_VERSION}Wallet.so kde-wayland_PORT5= x11/kf${_KDE_VERSION}-kwayland kde-wayland_PORT6= x11/plasma${_KDE_VERSION}-kwayland kde-wayland_PORT= ${kde-wayland_PORT${_KDE_VERSION}} kde-wayland_LIB5= libKF${_KDE_VERSION}WaylandClient.so kde-wayland_LIB6= libKWaylandClient.so kde-wayland_LIB= ${kde-wayland_LIB${_KDE_VERSION}} kde-widgetsaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kwidgetsaddons kde-widgetsaddons_LIB= libKF${_KDE_VERSION}WidgetsAddons.so kde-windowsystem_PORT= x11/kf${_KDE_VERSION}-kwindowsystem kde-windowsystem_LIB= libKF${_KDE_VERSION}WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf${_KDE_VERSION}-kxmlgui kde-xmlgui_LIB= libKF${_KDE_VERSION}XmlGui.so kde-xmlrpcclient_PORT= net/kf${_KDE_VERSION}-kxmlrpcclient kde-xmlrpcclient_LIB= libKF${_KDE_VERSION}XmlRpcClient.so kde-calendarcore_PORT= net/kf${_KDE_VERSION}-kcalendarcore kde-calendarcore_LIB= libKF${_KDE_VERSION}CalendarCore.so kde-contacts_PORT= net/kf${_KDE_VERSION}-kcontacts kde-contacts_LIB= libKF${_KDE_VERSION}Contacts.so kde-kdav_PORT= net/kf${_KDE_VERSION}-kdav kde-kdav_LIB= libKF${_KDE_VERSION}DAV.so kde-colorscheme_PORT= x11-themes/kf${_KDE_VERSION}-kcolorscheme kde-colorscheme_LIB= libKF${_KDE_VERSION}ColorScheme.so kde-svg_PORT= graphics/kf${_KDE_VERSION}-ksvg kde-svg_LIB= libKF${_KDE_VERSION}Svg.so kde-statusnotifieritem_PORT= deskutils/kf6-kstatusnotifieritem kde-statusnotifieritem_LIB= libKF${_KDE_VERSION}StatusNotifierItem.so kde-userfeedback_PORT= sysutils/kf6-kuserfeedback kde-userfeedback_LIB= libKF${_KDE_VERSION}UserFeedbackCore.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-kpipewire_PORT= audio/plasma${_KDE_VERSION}-kpipewire kde-kpipewire_LIB= libKPipeWire.so kde-activitymanagerd_PORT= x11/plasma${_KDE_VERSION}-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-aurorae_PORT= x11-themes/plasma${_KDE_VERSION}-aurorae kde-aurorae_PATH= ${KDE_PREFIX}/lib/libexec/plasma-apply-aurorae kde-breeze_PORT= x11-themes/plasma${_KDE_VERSION}-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma${_KDE_VERSION}-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma${_KDE_VERSION}-kdecoration kde-decoration_LIB= libkdecorations3.so kde-discover_PORT= sysutils/plasma${_KDE_VERSION}-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-infocenter_PORT= sysutils/plasma${_KDE_VERSION}-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma${_KDE_VERSION}-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kde-open kde-kde-gtk-config_PORT= x11-themes/plasma${_KDE_VERSION}-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma${_KDE_VERSION}-kdeplasma-addons kde-kdeplasma-addons_LIB= libplasmapotdprovidercore.so kde-kgamma_PORT= x11/plasma${_KDE_VERSION}-kgamma kde-kgamma_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings_qwidgets/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma${_KDE_VERSION}-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma${_KDE_VERSION}-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma${_KDE_VERSION}-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma${_KDE_VERSION}-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksystemstats_PORT= sysutils/plasma${_KDE_VERSION}-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma${_KDE_VERSION}-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwin_PORT= x11-wm/plasma${_KDE_VERSION}-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_wayland kde-kwin-x11_PORT= x11-wm/plasma${_KDE_VERSION}-kwin-x11 kde-kwin-x11_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma${_KDE_VERSION}-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kded/kwrited.so kde-libkscreen_PORT= x11/plasma${_KDE_VERSION}-libkscreen kde-libkscreen_LIB= libKF${_KDE_VERSION}Screen.so kde-libksysguard_PORT= sysutils/plasma${_KDE_VERSION}-libksysguard kde-libksysguard_LIB5= libksgrd.so kde-libksysguard_LIB6= libKSysGuardSystemStats.so kde-libksysguard_LIB= ${kde-libksysguard_LIB${_KDE_VERSION}} kde-milou_PORT= deskutils/plasma${_KDE_VERSION}-milou kde-milou_PATH= ${QT_QMLDIR}/org/kde/milou/libmilouqmlplugin.so kde-ocean-sound-theme_PORT= audio/plasma${_KDE_VERSION}-ocean-sound-theme kde-ocean-sound-theme_PATH= ${KDE_PREFIX}/share/sounds/ocean/index.theme kde-ocean-sound-theme_TYPE= run kde-oxygen_PORT= x11-themes/plasma${_KDE_VERSION}-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/kstyle_config/kstyle_oxygen_config.so kde-plasma-browser-integration_PORT= www/plasma${_KDE_VERSION}-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma${_KDE_VERSION}-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma${_KDE_VERSION}-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kf6/kauth/kded-smart-helper kde-plasma-integration_PORT= x11/plasma${_KDE_VERSION}-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme6.so kde-plasma-pa_PORT= audio/plasma${_KDE_VERSION}-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma${_KDE_VERSION}-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma${_KDE_VERSION}-plasma-workspace kde-plasma-workspace_LIB= libkworkspace${_KDE_VERSION}.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma${_KDE_VERSION}-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma${_KDE_VERSION}-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma${_KDE_VERSION}-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-print-manager_PORT= print/plasma${_KDE_VERSION}-print-manager kde-print-manager_PATH= ${KDE_PREFIX}/bin/kde-print-queue kde-print-manager_TYPE= run kde-spectacle_PORT= graphics/plasma${_KDE_VERSION}-spectacle kde-spectacle_PATH= ${KDE_PREFIX}/bin/spectacle kde-spectacle_TYPE= run kde-systemmonitor_PORT= sysutils/plasma${_KDE_VERSION}-plasma-systemmonitor kde-systemmonitor_PATH= ${KDE_PREFIX}/bin/plasma-systemmonitor kde-systemmonitor_TYPE= run kde-systemsettings_PORT= sysutils/plasma${_KDE_VERSION}-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings kde-xdg-desktop-portal-kde_PORT= deskutils/plasma${_KDE_VERSION}-xdg-desktop-portal-kde kde-xdg-desktop-portal-kde_PATH= ${KDE_PREFIX}/lib/libexec/xdg-desktop-portal-kde kde-plasma5support_PORT= devel/plasma${_KDE_VERSION}-plasma5support kde-plasma5support_LIB= libPlasma5Support.so kde-qqc2-breeze-style_PORT= x11-themes/plasma${_KDE_VERSION}-qqc2-breeze-style kde-qqc2-breeze-style_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kirigami/platform/org.kde.breeze.so kde-sddm-kcm_PORT= deskutils/plasma${_KDE_VERSION}-sddm-kcm kde-sddm-kcm_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_sddm.so kde-sddm-kcm_TYPE= run kde-kirigami-addons_PORT= x11-toolkits/kirigami-addons-qt${_KDE_VERSION} kde-kirigami-addons_PATH= ${QT_QMLDIR}/org/kde/kirigamiaddons/components/libcomponentsplugin.so kde-globalacceld_PORT= x11/plasma${_KDE_VERSION}-kglobalacceld kde-globalacceld_PATH= ${QT_PLUGINDIR}/org.kde.kglobalacceld.platforms/KGlobalAccelDXcb.so kde-libplasma_PORT= x11/plasma${_KDE_VERSION}-libplasma kde-libplasma_LIB= libPlasma.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKPim${_KDE_VERSION}AkonadiContactCore.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPim${_KDE_VERSION}ImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKPim${_KDE_VERSION}AkonadiMime.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKPim${_KDE_VERSION}AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKPim${_KDE_VERSION}AkonadiSearchCore.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKPim${_KDE_VERSION}CalendarSupport.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKPim${_KDE_VERSION}CalendarUtils.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKPim${_KDE_VERSION}EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPim${_KDE_VERSION}GAPIBlogger.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKPim${_KDE_VERSION}GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKPim${_KDE_VERSION}Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKPim${_KDE_VERSION}IdentityManagementCore.so kde-imap_PORT= net/kimap kde-imap_LIB= libKPim${_KDE_VERSION}IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKPim${_KDE_VERSION}IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${QT_PLUGINDIR}/pim${_KDE_VERSION}/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime_PORT= deskutils/kdepim-runtime kde-kdepim-runtime_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPim${_KDE_VERSION}Itinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKPim${_KDE_VERSION}KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPim${_KDE_VERSION}PkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPim${_KDE_VERSION}SMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKPim${_KDE_VERSION}LdapCore.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKPim${_KDE_VERSION}Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKPim${_KDE_VERSION}Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKPim${_KDE_VERSION}KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKPim${_KDE_VERSION}MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKPim${_KDE_VERSION}MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKPim${_KDE_VERSION}MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKPim${_KDE_VERSION}Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKPim${_KDE_VERSION}MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKPim${_KDE_VERSION}Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKPim${_KDE_VERSION}PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKPim${_KDE_VERSION}TextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKPim${_KDE_VERSION}Tnef.so kde-ktextaddons_PORT= devel/ktextaddons kde-ktextaddons_LIB= libKF${_KDE_VERSION}TextAutoCorrectionCore.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-mimetreeparser_PORT= net/mimetreeparser kde-mimetreeparser_LIB= libKPim${_KDE_VERSION}MimeTreeParserCore.so kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi_PORT= databases/akonadi kde-akonadi_LIB= libKPim${_KDE_VERSION}AkonadiPrivate.so kde-baloo-widgets_PORT= sysutils/baloo-widgets kde-baloo-widgets_LIB= libKF${_KDE_VERSION}BalooWidgets.so kde-kate_PORT= editors/kate kde-kate_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb_PORT= audio/libkcddb kde-libkcddb_LIB= libKCddb${_KDE_VERSION}.so kde-libkcompactdisc_PORT= audio/libkcompactdisc kde-libkcompactdisc_LIB= libKF${_KDE_VERSION}CompactDisc.so kde-libkdcraw_PORT= graphics/libkdcraw@qt${_KDE_VERSION} kde-libkdcraw_LIB5= libKF${_KDE_VERSION}KDcraw.so kde-libkdcraw_LIB6= libKDcrawQt${_KDE_VERSION}.so kde-libkdcraw_LIB= ${kde-libkdcraw_LIB${_KDE_VERSION}} kde-libkdegames_PORT= games/libkdegames kde-libkdegames_LIB= libKDEGames${_KDE_VERSION}.so kde-libkeduvocdocument_PORT= misc/libkeduvocdocument kde-libkeduvocdocument_LIB= libKEduVocDocument.so kde-libkexiv2_PORT= graphics/libkexiv2@qt${_KDE_VERSION} kde-libkexiv2_LIB5= libKF${_KDE_VERSION}KExiv2.so kde-libkexiv2_LIB6= libKExiv2Qt${_KDE_VERSION}.so kde-libkexiv2_LIB= ${kde-libkexiv2_LIB${_KDE_VERSION}} kde-libksane_PORT= graphics/libksane kde-libksane_LIB= libKSaneWidgets${_KDE_VERSION}.so kde-marble_PORT= astro/marble kde-marble_LIB= libmarblewidget-qt6.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular_PORT= graphics/okular kde-okular_LIB= libOkular${_KDE_VERSION}Core.so kde-phonon_PORT= multimedia/phonon@${_QT_RELNAME} kde-phonon_LIB= libphonon4${_QT_RELNAME}.so kde-phonon-mpv_PORT= multimedia/phonon-mpv kde-phonon-mpv_PATH= ${QT_PLUGINDIR}/phonon4${_QT_RELNAME}_backend/phonon_mpv_${_QT_RELNAME}.so kde-phonon-mpv_TYPE= run kde-phonon-vlc_PORT= multimedia/phonon-vlc@${_QT_RELNAME} kde-phonon-vlc_PATH= ${QT_PLUGINDIR}/phonon4${_QT_RELNAME}_backend/phonon_vlc_${_QT_RELNAME}.so kde-phonon-vlc_TYPE= run # ====================== end of multiversion components ======================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/:.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}\:*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}\:build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}\:run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif diff --git a/audio/plasma6-kpipewire/distinfo b/audio/plasma6-kpipewire/distinfo index cb0d11ce332a..46b447b1c652 100644 --- a/audio/plasma6-kpipewire/distinfo +++ b/audio/plasma6-kpipewire/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010486 -SHA256 (KDE/plasma/6.4.0/kpipewire-6.4.0.tar.xz) = d597665a4ee57a4993d908e62151242ae9a5a3a25e76d0ba003f39ca6869e35a -SIZE (KDE/plasma/6.4.0/kpipewire-6.4.0.tar.xz) = 152832 +TIMESTAMP = 1750789598 +SHA256 (KDE/plasma/6.4.1/kpipewire-6.4.1.tar.xz) = 3696dfd19b53e5efa1e7bc690c3820919b8bbdc0d78f96779cc3b319e9035fe2 +SIZE (KDE/plasma/6.4.1/kpipewire-6.4.1.tar.xz) = 152800 diff --git a/audio/plasma6-ocean-sound-theme/distinfo b/audio/plasma6-ocean-sound-theme/distinfo index 536deb68edff..f18d9c94f442 100644 --- a/audio/plasma6-ocean-sound-theme/distinfo +++ b/audio/plasma6-ocean-sound-theme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010486 -SHA256 (KDE/plasma/6.4.0/ocean-sound-theme-6.4.0.tar.xz) = afa672a91caea9a34f9fe69903bff4d8cf99b16393db52d546fabe2b5b8ea773 -SIZE (KDE/plasma/6.4.0/ocean-sound-theme-6.4.0.tar.xz) = 2128384 +TIMESTAMP = 1750789599 +SHA256 (KDE/plasma/6.4.1/ocean-sound-theme-6.4.1.tar.xz) = a3f75d7240f448a467393eb14f1431ac0b0535fe49298c9ffa174b00500997f3 +SIZE (KDE/plasma/6.4.1/ocean-sound-theme-6.4.1.tar.xz) = 2128504 diff --git a/audio/plasma6-oxygen-sounds/distinfo b/audio/plasma6-oxygen-sounds/distinfo index 2bc07e60fd67..85a6ec4186d8 100644 --- a/audio/plasma6-oxygen-sounds/distinfo +++ b/audio/plasma6-oxygen-sounds/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010486 -SHA256 (KDE/plasma/6.4.0/oxygen-sounds-6.4.0.tar.xz) = 5b3d5df27390ee08260964b2a68d5997f2f507d175311460fba1acea414dc852 -SIZE (KDE/plasma/6.4.0/oxygen-sounds-6.4.0.tar.xz) = 1935544 +TIMESTAMP = 1750789599 +SHA256 (KDE/plasma/6.4.1/oxygen-sounds-6.4.1.tar.xz) = a6fdd80816322ead0645d889510a54021fd4bd81848814df87548cf26e07683f +SIZE (KDE/plasma/6.4.1/oxygen-sounds-6.4.1.tar.xz) = 1935616 diff --git a/audio/plasma6-plasma-pa/distinfo b/audio/plasma6-plasma-pa/distinfo index 9dd076b6d202..82c3bc046e44 100644 --- a/audio/plasma6-plasma-pa/distinfo +++ b/audio/plasma6-plasma-pa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010489 -SHA256 (KDE/plasma/6.4.0/plasma-pa-6.4.0.tar.xz) = 7b19b41478708835a1580494e5521803bc9b79474b50ed1ebf9318a20e1ed1a8 -SIZE (KDE/plasma/6.4.0/plasma-pa-6.4.0.tar.xz) = 196660 +TIMESTAMP = 1750789602 +SHA256 (KDE/plasma/6.4.1/plasma-pa-6.4.1.tar.xz) = 0b797263f520de7d7381b705b16d5efd497664c4f3761a2dcba93c6b1c4ab6d1 +SIZE (KDE/plasma/6.4.1/plasma-pa-6.4.1.tar.xz) = 196560 diff --git a/deskutils/plasma6-milou/distinfo b/deskutils/plasma6-milou/distinfo index 586699a6e1e1..caff1eeb19c8 100644 --- a/deskutils/plasma6-milou/distinfo +++ b/deskutils/plasma6-milou/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010489 -SHA256 (KDE/plasma/6.4.0/milou-6.4.0.tar.xz) = ed258ac78b47d8eee8171388abc12dc73baf3fe8242bc119a6a31431d7db3f30 -SIZE (KDE/plasma/6.4.0/milou-6.4.0.tar.xz) = 50136 +TIMESTAMP = 1750789602 +SHA256 (KDE/plasma/6.4.1/milou-6.4.1.tar.xz) = 2194369d4c45a537b79322bfdd3ecc5252fb55dfd8f7af2103c8f7b7da2e5080 +SIZE (KDE/plasma/6.4.1/milou-6.4.1.tar.xz) = 50132 diff --git a/deskutils/plasma6-sddm-kcm/distinfo b/deskutils/plasma6-sddm-kcm/distinfo index 3bdc27b64f6d..2ccd6145dd6b 100644 --- a/deskutils/plasma6-sddm-kcm/distinfo +++ b/deskutils/plasma6-sddm-kcm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010489 -SHA256 (KDE/plasma/6.4.0/sddm-kcm-6.4.0.tar.xz) = 378b7eb70bd23cc9bb654b366b85fb61582476abc4088611534bc3c8918f6bf2 -SIZE (KDE/plasma/6.4.0/sddm-kcm-6.4.0.tar.xz) = 103500 +TIMESTAMP = 1750789603 +SHA256 (KDE/plasma/6.4.1/sddm-kcm-6.4.1.tar.xz) = a2d10d57b432c8227cdce193adbb9500069a2ab1d8d6462c6a18199275cb9ec6 +SIZE (KDE/plasma/6.4.1/sddm-kcm-6.4.1.tar.xz) = 103524 diff --git a/deskutils/plasma6-xdg-desktop-portal-kde/distinfo b/deskutils/plasma6-xdg-desktop-portal-kde/distinfo index 5a84d29b96ee..7ce054ab3f06 100644 --- a/deskutils/plasma6-xdg-desktop-portal-kde/distinfo +++ b/deskutils/plasma6-xdg-desktop-portal-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010490 -SHA256 (KDE/plasma/6.4.0/xdg-desktop-portal-kde-6.4.0.tar.xz) = 00db7b1551146b0da91078bf540ca2af56c9d20f9f25469e25839d09455a9ace -SIZE (KDE/plasma/6.4.0/xdg-desktop-portal-kde-6.4.0.tar.xz) = 202140 +TIMESTAMP = 1750789604 +SHA256 (KDE/plasma/6.4.1/xdg-desktop-portal-kde-6.4.1.tar.xz) = 1f01d629f6818e48aa6acf83f58c07f0ddf3e1bf2a1ecb44803af65cde119583 +SIZE (KDE/plasma/6.4.1/xdg-desktop-portal-kde-6.4.1.tar.xz) = 202240 diff --git a/devel/plasma6-kwrited/distinfo b/devel/plasma6-kwrited/distinfo index 22feb2dd4281..26409de861cf 100644 --- a/devel/plasma6-kwrited/distinfo +++ b/devel/plasma6-kwrited/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010490 -SHA256 (KDE/plasma/6.4.0/kwrited-6.4.0.tar.xz) = 642c5674ab0d95ca0a42d6d1b2dacab5ffbfc06719819528fa25153c68a6454a -SIZE (KDE/plasma/6.4.0/kwrited-6.4.0.tar.xz) = 23640 +TIMESTAMP = 1750789604 +SHA256 (KDE/plasma/6.4.1/kwrited-6.4.1.tar.xz) = a80a5ed45ed633f15cf3a42b2d956608d9e6a5a78f267df33ac96aafcc20d8d4 +SIZE (KDE/plasma/6.4.1/kwrited-6.4.1.tar.xz) = 23636 diff --git a/devel/plasma6-plasma-sdk/distinfo b/devel/plasma6-plasma-sdk/distinfo index aa7b401929e4..7c9c613dc388 100644 --- a/devel/plasma6-plasma-sdk/distinfo +++ b/devel/plasma6-plasma-sdk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010490 -SHA256 (KDE/plasma/6.4.0/plasma-sdk-6.4.0.tar.xz) = b3f1316b163bb5e6ab86970306e663760ae93814a43ed43f2b2f761128ac2885 -SIZE (KDE/plasma/6.4.0/plasma-sdk-6.4.0.tar.xz) = 359948 +TIMESTAMP = 1750789605 +SHA256 (KDE/plasma/6.4.1/plasma-sdk-6.4.1.tar.xz) = 73a865026bdeab45c8f48b50ac656f0e626bb0413e7647c016d9068bcb0f5446 +SIZE (KDE/plasma/6.4.1/plasma-sdk-6.4.1.tar.xz) = 359864 diff --git a/devel/plasma6-plasma5support/distinfo b/devel/plasma6-plasma5support/distinfo index d466ea67b2de..041c879f60ad 100644 --- a/devel/plasma6-plasma5support/distinfo +++ b/devel/plasma6-plasma5support/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010491 -SHA256 (KDE/plasma/6.4.0/plasma5support-6.4.0.tar.xz) = 3ae364b41a868d0fd9947c53b3d88723938bb0803f1f862985f933b6c973e843 -SIZE (KDE/plasma/6.4.0/plasma5support-6.4.0.tar.xz) = 228424 +TIMESTAMP = 1750789605 +SHA256 (KDE/plasma/6.4.1/plasma5support-6.4.1.tar.xz) = 117a3b9bcd3a63de83719d94f39a34cccf643a71435c84a5c505b044446b8dab +SIZE (KDE/plasma/6.4.1/plasma5support-6.4.1.tar.xz) = 228416 diff --git a/graphics/plasma6-spectacle/distinfo b/graphics/plasma6-spectacle/distinfo index 0b87bce8d087..9a4520bb30ac 100644 --- a/graphics/plasma6-spectacle/distinfo +++ b/graphics/plasma6-spectacle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010493 -SHA256 (KDE/plasma/6.4.0/spectacle-6.4.0.tar.xz) = 731756797ebefe9f5ebdb6329b0cf4cdd5f6c169aaf16a58c29405ff97a6a6b0 -SIZE (KDE/plasma/6.4.0/spectacle-6.4.0.tar.xz) = 1597796 +TIMESTAMP = 1750789608 +SHA256 (KDE/plasma/6.4.1/spectacle-6.4.1.tar.xz) = 547b8cc651730916104a8b1313504814eca7fe6a5abce254c10b37ffa1b13e34 +SIZE (KDE/plasma/6.4.1/spectacle-6.4.1.tar.xz) = 1597848 diff --git a/print/plasma6-print-manager/distinfo b/print/plasma6-print-manager/distinfo index 12e5e8263bd1..0a5f30caecb8 100644 --- a/print/plasma6-print-manager/distinfo +++ b/print/plasma6-print-manager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010495 -SHA256 (KDE/plasma/6.4.0/print-manager-6.4.0.tar.xz) = 2abb28b8944b3e4c48413cb31b54e078c9fa8d1fd8c115a6150731039d92cbfd -SIZE (KDE/plasma/6.4.0/print-manager-6.4.0.tar.xz) = 371300 +TIMESTAMP = 1750789610 +SHA256 (KDE/plasma/6.4.1/print-manager-6.4.1.tar.xz) = 9096c5f28b29f6199bf0ace9876361f3367b79f208e05c4a59339d17d4bc19f2 +SIZE (KDE/plasma/6.4.1/print-manager-6.4.1.tar.xz) = 370676 diff --git a/security/plasma6-kscreenlocker/distinfo b/security/plasma6-kscreenlocker/distinfo index 832f8bbd7964..9b45a355b193 100644 --- a/security/plasma6-kscreenlocker/distinfo +++ b/security/plasma6-kscreenlocker/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010496 -SHA256 (KDE/plasma/6.4.0/kscreenlocker-6.4.0.tar.xz) = b840202ba6b5bd7832ab2116beee2c8e386fa9b844e6db0e425a84006b6698fa -SIZE (KDE/plasma/6.4.0/kscreenlocker-6.4.0.tar.xz) = 183788 +TIMESTAMP = 1750789611 +SHA256 (KDE/plasma/6.4.1/kscreenlocker-6.4.1.tar.xz) = c849dc939a050a26f270393f8b59e8b86d671983a752e014af7c89a1c955b925 +SIZE (KDE/plasma/6.4.1/kscreenlocker-6.4.1.tar.xz) = 183776 diff --git a/security/plasma6-ksshaskpass/distinfo b/security/plasma6-ksshaskpass/distinfo index 0762978afab7..8196ba2a8c6e 100644 --- a/security/plasma6-ksshaskpass/distinfo +++ b/security/plasma6-ksshaskpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010496 -SHA256 (KDE/plasma/6.4.0/ksshaskpass-6.4.0.tar.xz) = ce3c7ba9f16638eb5e0378821448a84b9a0619228be8196e55c395fd4d743806 -SIZE (KDE/plasma/6.4.0/ksshaskpass-6.4.0.tar.xz) = 30792 +TIMESTAMP = 1750789611 +SHA256 (KDE/plasma/6.4.1/ksshaskpass-6.4.1.tar.xz) = 5495db2d45f9b2ac50a81382f7e38c99ab83d7ea34adcf72b05c260d9d8a3433 +SIZE (KDE/plasma/6.4.1/ksshaskpass-6.4.1.tar.xz) = 30796 diff --git a/security/plasma6-kwallet-pam/Makefile b/security/plasma6-kwallet-pam/Makefile index b4aad08a3703..538b12ebeb1b 100644 --- a/security/plasma6-kwallet-pam/Makefile +++ b/security/plasma6-kwallet-pam/Makefile @@ -1,20 +1,19 @@ PORTNAME= kwallet-pam DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= security kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= PAM Integration with KWallet - Unlock KWallet when you login LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ libgpg-error.so:security/libgpg-error USES= cmake kde:6 pkgconfig qt:6 tar:xz USE_KDE= wallet \ ecm:build USE_QT= # dummy post-patch: @${REINPLACE_CMD} -e 's,socat,nc,' ${WRKSRC}/CMakeLists.txt .include diff --git a/security/plasma6-kwallet-pam/distinfo b/security/plasma6-kwallet-pam/distinfo index eb3872634da1..81c94e309bb8 100644 --- a/security/plasma6-kwallet-pam/distinfo +++ b/security/plasma6-kwallet-pam/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010496 -SHA256 (KDE/plasma/6.4.0/kwallet-pam-6.4.0.tar.xz) = 450e4d6b804c597eb51159000e193688926e4d8225ae19a1627e25d11feb8b5e -SIZE (KDE/plasma/6.4.0/kwallet-pam-6.4.0.tar.xz) = 22396 +TIMESTAMP = 1750789612 +SHA256 (KDE/plasma/6.4.1/kwallet-pam-6.4.1.tar.xz) = 04d4d7075cb93cac10a7e0504836d961c7a2eda4f08987bb500f927200298b7c +SIZE (KDE/plasma/6.4.1/kwallet-pam-6.4.1.tar.xz) = 22400 diff --git a/sysutils/plasma6-discover/distinfo b/sysutils/plasma6-discover/distinfo index 7f6af19640ef..4a1f89401962 100644 --- a/sysutils/plasma6-discover/distinfo +++ b/sysutils/plasma6-discover/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010499 -SHA256 (KDE/plasma/6.4.0/discover-6.4.0.tar.xz) = 09fb1d63aa6ec3ad56e606f48b6e10d59eeb37d9b527e54a211b4a79d6e52242 -SIZE (KDE/plasma/6.4.0/discover-6.4.0.tar.xz) = 1110064 +TIMESTAMP = 1750789614 +SHA256 (KDE/plasma/6.4.1/discover-6.4.1.tar.xz) = f34cea438a8a0ae0bb6fd13e4164d49c7a2a9857e204300ccc276f2d5f898230 +SIZE (KDE/plasma/6.4.1/discover-6.4.1.tar.xz) = 1110016 diff --git a/sysutils/plasma6-kde-cli-tools/distinfo b/sysutils/plasma6-kde-cli-tools/distinfo index af26d545adab..56b50db7c2f8 100644 --- a/sysutils/plasma6-kde-cli-tools/distinfo +++ b/sysutils/plasma6-kde-cli-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010499 -SHA256 (KDE/plasma/6.4.0/kde-cli-tools-6.4.0.tar.xz) = 4f4ebed7c17a25079c54ef031929ac55d6777acd3cf595ca6343f4d0a4f00ba9 -SIZE (KDE/plasma/6.4.0/kde-cli-tools-6.4.0.tar.xz) = 638504 +TIMESTAMP = 1750789615 +SHA256 (KDE/plasma/6.4.1/kde-cli-tools-6.4.1.tar.xz) = 2d90ab0c034fb9d2816750da9ace39b708b712d3f7341663ebbbfe88d5b02ca4 +SIZE (KDE/plasma/6.4.1/kde-cli-tools-6.4.1.tar.xz) = 638508 diff --git a/sysutils/plasma6-kinfocenter/distinfo b/sysutils/plasma6-kinfocenter/distinfo index 6f99586a2dcc..089fd5283ef2 100644 --- a/sysutils/plasma6-kinfocenter/distinfo +++ b/sysutils/plasma6-kinfocenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010499 -SHA256 (KDE/plasma/6.4.0/kinfocenter-6.4.0.tar.xz) = 4d2deaf4c1ff76ff100ed6b07d7cb158ba116c4c221b7b5f7b25440285054494 -SIZE (KDE/plasma/6.4.0/kinfocenter-6.4.0.tar.xz) = 758072 +TIMESTAMP = 1750789616 +SHA256 (KDE/plasma/6.4.1/kinfocenter-6.4.1.tar.xz) = 20eafbae78a437f767b8b6e9493875b230033f9760454732e810483c82127927 +SIZE (KDE/plasma/6.4.1/kinfocenter-6.4.1.tar.xz) = 758196 diff --git a/sysutils/plasma6-kmenuedit/distinfo b/sysutils/plasma6-kmenuedit/distinfo index 4c5ea94fb48e..5bf724c2af64 100644 --- a/sysutils/plasma6-kmenuedit/distinfo +++ b/sysutils/plasma6-kmenuedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010500 -SHA256 (KDE/plasma/6.4.0/kmenuedit-6.4.0.tar.xz) = 4ae4a67adca07e10c2475b9a19acbd283d1840a996bbc084d9b1b237c7e6ef88 -SIZE (KDE/plasma/6.4.0/kmenuedit-6.4.0.tar.xz) = 884652 +TIMESTAMP = 1750789616 +SHA256 (KDE/plasma/6.4.1/kmenuedit-6.4.1.tar.xz) = 55db175f0f3deda6154bfb0c721adf183f63c134b77858c9fbbe0858ae9c7773 +SIZE (KDE/plasma/6.4.1/kmenuedit-6.4.1.tar.xz) = 884588 diff --git a/sysutils/plasma6-ksystemstats/distinfo b/sysutils/plasma6-ksystemstats/distinfo index 9fb97858e8fa..e483eac81117 100644 --- a/sysutils/plasma6-ksystemstats/distinfo +++ b/sysutils/plasma6-ksystemstats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010500 -SHA256 (KDE/plasma/6.4.0/ksystemstats-6.4.0.tar.xz) = e0f8855a4db91508066b9da5108ddbce48bbadda64bb96653ac2fb312fc1468e -SIZE (KDE/plasma/6.4.0/ksystemstats-6.4.0.tar.xz) = 156636 +TIMESTAMP = 1750789617 +SHA256 (KDE/plasma/6.4.1/ksystemstats-6.4.1.tar.xz) = a70a74d3bd24116f6001086b942cc9d69f7514f3f5b7c2a0382d5dc281e7f0aa +SIZE (KDE/plasma/6.4.1/ksystemstats-6.4.1.tar.xz) = 156608 diff --git a/sysutils/plasma6-libksysguard/distinfo b/sysutils/plasma6-libksysguard/distinfo index 447fe51cd45c..e79c11159df0 100644 --- a/sysutils/plasma6-libksysguard/distinfo +++ b/sysutils/plasma6-libksysguard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010500 -SHA256 (KDE/plasma/6.4.0/libksysguard-6.4.0.tar.xz) = bfd0baf7973407444093e13a5ce2b310cee586e3bbc5d4e10785bc1a0d45a663 -SIZE (KDE/plasma/6.4.0/libksysguard-6.4.0.tar.xz) = 333964 +TIMESTAMP = 1750789618 +SHA256 (KDE/plasma/6.4.1/libksysguard-6.4.1.tar.xz) = 7c33949dbdccceece35fbefd244a4449b23b5071e0cad082f91aee64f7b281e1 +SIZE (KDE/plasma/6.4.1/libksysguard-6.4.1.tar.xz) = 333936 diff --git a/sysutils/plasma6-plasma-disks/distinfo b/sysutils/plasma6-plasma-disks/distinfo index 8ae9a5ed1dcf..67586b754218 100644 --- a/sysutils/plasma6-plasma-disks/distinfo +++ b/sysutils/plasma6-plasma-disks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010500 -SHA256 (KDE/plasma/6.4.0/plasma-disks-6.4.0.tar.xz) = 94c95ed1bd494448c81e35360dc8b49ae05acec131651ec81716f4a52218ea90 -SIZE (KDE/plasma/6.4.0/plasma-disks-6.4.0.tar.xz) = 105216 +TIMESTAMP = 1750789618 +SHA256 (KDE/plasma/6.4.1/plasma-disks-6.4.1.tar.xz) = c98f9a0d5322982a908497d7cc02867825486257b8e25462d197f336011c5314 +SIZE (KDE/plasma/6.4.1/plasma-disks-6.4.1.tar.xz) = 105220 diff --git a/sysutils/plasma6-plasma-systemmonitor/distinfo b/sysutils/plasma6-plasma-systemmonitor/distinfo index 9edfe0851fd7..23da83c40cc6 100644 --- a/sysutils/plasma6-plasma-systemmonitor/distinfo +++ b/sysutils/plasma6-plasma-systemmonitor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010501 -SHA256 (KDE/plasma/6.4.0/plasma-systemmonitor-6.4.0.tar.xz) = 94369cd6cbeff5ffaf3605ee7660ea4aaa03d959282b0f20d659a953ae2d975a -SIZE (KDE/plasma/6.4.0/plasma-systemmonitor-6.4.0.tar.xz) = 216888 +TIMESTAMP = 1750789619 +SHA256 (KDE/plasma/6.4.1/plasma-systemmonitor-6.4.1.tar.xz) = b1810d329b81ac35afca75f5ff2887b724e2fc7b1f9c510198b87c29cb8bde5f +SIZE (KDE/plasma/6.4.1/plasma-systemmonitor-6.4.1.tar.xz) = 216880 diff --git a/sysutils/plasma6-polkit-kde-agent-1/distinfo b/sysutils/plasma6-polkit-kde-agent-1/distinfo index 1d463517ef62..0547c56fd276 100644 --- a/sysutils/plasma6-polkit-kde-agent-1/distinfo +++ b/sysutils/plasma6-polkit-kde-agent-1/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010502 -SHA256 (KDE/plasma/6.4.0/polkit-kde-agent-1-6.4.0.tar.xz) = a8ab5df6ab1ea05e63ef08ebbe536e1393d4f6d6dd4b297305619fc1e87515c5 -SIZE (KDE/plasma/6.4.0/polkit-kde-agent-1-6.4.0.tar.xz) = 57580 +TIMESTAMP = 1750789619 +SHA256 (KDE/plasma/6.4.1/polkit-kde-agent-1-6.4.1.tar.xz) = bb1cc037725368334439d13dc7de12c5f517b398385f1c9f529571a5392a9302 +SIZE (KDE/plasma/6.4.1/polkit-kde-agent-1-6.4.1.tar.xz) = 57548 diff --git a/sysutils/plasma6-powerdevil/distinfo b/sysutils/plasma6-powerdevil/distinfo index 0cb16c6da920..cde01e852ee0 100644 --- a/sysutils/plasma6-powerdevil/distinfo +++ b/sysutils/plasma6-powerdevil/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010502 -SHA256 (KDE/plasma/6.4.0/powerdevil-6.4.0.tar.xz) = d0ad54cb6d4ccf39c0d5b7f0c7df2f51bc99ffd3fd6ca7538ed3f41dfc4f677e -SIZE (KDE/plasma/6.4.0/powerdevil-6.4.0.tar.xz) = 1228936 +TIMESTAMP = 1750789620 +SHA256 (KDE/plasma/6.4.1/powerdevil-6.4.1.tar.xz) = 93e4381f253f9e960787feb5fcb86ea1a7c0e2978e3b3009ae192a86ae73462f +SIZE (KDE/plasma/6.4.1/powerdevil-6.4.1.tar.xz) = 1229008 diff --git a/sysutils/plasma6-systemsettings/distinfo b/sysutils/plasma6-systemsettings/distinfo index 38dd6affd68b..c4cd89095f2a 100644 --- a/sysutils/plasma6-systemsettings/distinfo +++ b/sysutils/plasma6-systemsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010502 -SHA256 (KDE/plasma/6.4.0/systemsettings-6.4.0.tar.xz) = 4c385519aa40e90dcb0b1a0b070d3313fd9ed5fb33c963ea5459ce5d31692f3f -SIZE (KDE/plasma/6.4.0/systemsettings-6.4.0.tar.xz) = 219380 +TIMESTAMP = 1750789621 +SHA256 (KDE/plasma/6.4.1/systemsettings-6.4.1.tar.xz) = a27f312a292ac4c5c3efa1af71e70ca834d7ec8e8f37a710cf85ae2d7bbeff95 +SIZE (KDE/plasma/6.4.1/systemsettings-6.4.1.tar.xz) = 219344 diff --git a/www/plasma6-plasma-browser-integration/distinfo b/www/plasma6-plasma-browser-integration/distinfo index 3b2a192f2017..a6dcc022e175 100644 --- a/www/plasma6-plasma-browser-integration/distinfo +++ b/www/plasma6-plasma-browser-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010502 -SHA256 (KDE/plasma/6.4.0/plasma-browser-integration-6.4.0.tar.xz) = 147e0b8b105e47ca3fc694dd2d86ecbeaa7c3c315d8bf3da0d4b6e35a829e7a4 -SIZE (KDE/plasma/6.4.0/plasma-browser-integration-6.4.0.tar.xz) = 233024 +TIMESTAMP = 1750789621 +SHA256 (KDE/plasma/6.4.1/plasma-browser-integration-6.4.1.tar.xz) = 7aa0d8c0c722e9f763baef5c153a7f882f490dbcf99563d04727b759c5c2d634 +SIZE (KDE/plasma/6.4.1/plasma-browser-integration-6.4.1.tar.xz) = 233020 diff --git a/x11-themes/plasma6-aurorae/distinfo b/x11-themes/plasma6-aurorae/distinfo index 925e718710cd..593ca51f77db 100644 --- a/x11-themes/plasma6-aurorae/distinfo +++ b/x11-themes/plasma6-aurorae/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010503 -SHA256 (KDE/plasma/6.4.0/aurorae-6.4.0.tar.xz) = 563c4285f426848256e92c884a058a572d59df5ab9a4c8b907385226ec4ac0b2 -SIZE (KDE/plasma/6.4.0/aurorae-6.4.0.tar.xz) = 55988 +TIMESTAMP = 1750789622 +SHA256 (KDE/plasma/6.4.1/aurorae-6.4.1.tar.xz) = e2167bde72e355cd0065739ea8d2cd9d1df3f43e9b7809fc5702b3b352bbfd65 +SIZE (KDE/plasma/6.4.1/aurorae-6.4.1.tar.xz) = 56468 diff --git a/x11-themes/plasma6-aurorae/pkg-plist b/x11-themes/plasma6-aurorae/pkg-plist index 9cb94250920e..d3edfc02d56d 100644 --- a/x11-themes/plasma6-aurorae/pkg-plist +++ b/x11-themes/plasma6-aurorae/pkg-plist @@ -1,54 +1,55 @@ lib/cmake/Aurorae/AuroraeConfig.cmake lib/cmake/Aurorae/AuroraeConfigVersion.cmake lib/libexec/plasma-apply-aurorae %%QT_PLUGINDIR%%/org.kde.kdecoration3.kcm/kcm_auroraedecoration.so %%QT_PLUGINDIR%%/org.kde.kdecoration3/org.kde.kwin.aurorae.so %%QT_QMLDIR%%/org/kde/kwin/decoration/AppMenuButton.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/ButtonGroup.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/Decoration.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/DecorationButton.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/MenuButton.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/libdecorationplugin.so %%QT_QMLDIR%%/org/kde/kwin/decoration/qmldir %%QT_QMLDIR%%/org/kde/kwin/decorations/plastik/libplastikplugin.so %%QT_QMLDIR%%/org/kde/kwin/decorations/plastik/qmldir share/knsrcfiles/aurorae.knsrc share/kwin/aurorae/AppMenuButton.qml share/kwin/aurorae/AuroraeButton.qml share/kwin/aurorae/AuroraeButtonGroup.qml share/kwin/aurorae/AuroraeMaximizeButton.qml share/kwin/aurorae/Decoration.qml share/kwin/aurorae/DecorationButton.qml share/kwin/aurorae/MenuButton.qml share/kwin/aurorae/aurorae.qml share/kwin/decorations/kwin4_decoration_qml_plastik/contents/config/main.xml share/kwin/decorations/kwin4_decoration_qml_plastik/contents/ui/PlastikButton.qml share/kwin/decorations/kwin4_decoration_qml_plastik/contents/ui/config.ui share/kwin/decorations/kwin4_decoration_qml_plastik/contents/ui/main.qml share/kwin/decorations/kwin4_decoration_qml_plastik/metadata.json share/locale/ar/LC_MESSAGES/aurorae.mo share/locale/ca/LC_MESSAGES/aurorae.mo share/locale/ca@valencia/LC_MESSAGES/aurorae.mo share/locale/de/LC_MESSAGES/aurorae.mo share/locale/en_GB/LC_MESSAGES/aurorae.mo share/locale/es/LC_MESSAGES/aurorae.mo share/locale/eu/LC_MESSAGES/aurorae.mo share/locale/fi/LC_MESSAGES/aurorae.mo share/locale/fr/LC_MESSAGES/aurorae.mo share/locale/gl/LC_MESSAGES/aurorae.mo share/locale/he/LC_MESSAGES/aurorae.mo share/locale/hu/LC_MESSAGES/aurorae.mo share/locale/ia/LC_MESSAGES/aurorae.mo share/locale/it/LC_MESSAGES/aurorae.mo share/locale/ka/LC_MESSAGES/aurorae.mo share/locale/ko/LC_MESSAGES/aurorae.mo share/locale/lv/LC_MESSAGES/aurorae.mo share/locale/nb/LC_MESSAGES/aurorae.mo share/locale/nl/LC_MESSAGES/aurorae.mo share/locale/pl/LC_MESSAGES/aurorae.mo +share/locale/ru/LC_MESSAGES/aurorae.mo share/locale/sl/LC_MESSAGES/aurorae.mo share/locale/sv/LC_MESSAGES/aurorae.mo share/locale/tr/LC_MESSAGES/aurorae.mo share/locale/uk/LC_MESSAGES/aurorae.mo share/locale/zh_CN/LC_MESSAGES/aurorae.mo share/locale/zh_TW/LC_MESSAGES/aurorae.mo diff --git a/x11-themes/plasma6-breeze-gtk/distinfo b/x11-themes/plasma6-breeze-gtk/distinfo index 98af38f29c04..3a7dbe88c758 100644 --- a/x11-themes/plasma6-breeze-gtk/distinfo +++ b/x11-themes/plasma6-breeze-gtk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010503 -SHA256 (KDE/plasma/6.4.0/breeze-gtk-6.4.0.tar.xz) = 5852632714c4d7b77548151ef5e7dedaded331f6e90111b16dd710e01bba8fad -SIZE (KDE/plasma/6.4.0/breeze-gtk-6.4.0.tar.xz) = 40764 +TIMESTAMP = 1750789624 +SHA256 (KDE/plasma/6.4.1/breeze-gtk-6.4.1.tar.xz) = e108fe9cbc76a0f51fd8df9c630d39978a3c1fb6cfaf39d9ab2f555494627b58 +SIZE (KDE/plasma/6.4.1/breeze-gtk-6.4.1.tar.xz) = 40780 diff --git a/x11-themes/plasma6-breeze/distinfo b/x11-themes/plasma6-breeze/distinfo index c89e932dec94..b12eda7b271b 100644 --- a/x11-themes/plasma6-breeze/distinfo +++ b/x11-themes/plasma6-breeze/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010503 -SHA256 (KDE/plasma/6.4.0/breeze-6.4.0.tar.xz) = cfdb38f0a4e2c428e9ca5a5fd12400b6804abcdd5359b636fa5327a35121e866 -SIZE (KDE/plasma/6.4.0/breeze-6.4.0.tar.xz) = 42559232 +TIMESTAMP = 1750789623 +SHA256 (KDE/plasma/6.4.1/breeze-6.4.1.tar.xz) = 4fe0085ffa21b2e3aef49dc4e5c862f22ef13395a9681387a990308743f01c55 +SIZE (KDE/plasma/6.4.1/breeze-6.4.1.tar.xz) = 42559720 diff --git a/x11-themes/plasma6-kde-gtk-config/distinfo b/x11-themes/plasma6-kde-gtk-config/distinfo index a4badb1aa805..40a093f71975 100644 --- a/x11-themes/plasma6-kde-gtk-config/distinfo +++ b/x11-themes/plasma6-kde-gtk-config/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010504 -SHA256 (KDE/plasma/6.4.0/kde-gtk-config-6.4.0.tar.xz) = ca066da84272280c3fd6a181970d94f39e117bec8cee91d71a2e252c2145efcf -SIZE (KDE/plasma/6.4.0/kde-gtk-config-6.4.0.tar.xz) = 79032 +TIMESTAMP = 1750789625 +SHA256 (KDE/plasma/6.4.1/kde-gtk-config-6.4.1.tar.xz) = 4bbf57e4d798a899c3f12335042959aefcf5d6af354b04895e4e8ddee8c8c43e +SIZE (KDE/plasma/6.4.1/kde-gtk-config-6.4.1.tar.xz) = 79032 diff --git a/x11-themes/plasma6-oxygen/distinfo b/x11-themes/plasma6-oxygen/distinfo index 3f09b8c7bd91..7788986bc6e2 100644 --- a/x11-themes/plasma6-oxygen/distinfo +++ b/x11-themes/plasma6-oxygen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010504 -SHA256 (KDE/plasma/6.4.0/oxygen-6.4.0.tar.xz) = a76f4d6e3a0f9ef673ab75b7b142df5136d87af1f094ccfadd2be6e6ce6c2c24 -SIZE (KDE/plasma/6.4.0/oxygen-6.4.0.tar.xz) = 2954852 +TIMESTAMP = 1750789625 +SHA256 (KDE/plasma/6.4.1/oxygen-6.4.1.tar.xz) = 6f9b223791f1511e6feec4b68ba6034e1245e03ea21d131fe18c4a84975546a5 +SIZE (KDE/plasma/6.4.1/oxygen-6.4.1.tar.xz) = 2949912 diff --git a/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo b/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo index 4dc74dbe2b25..23b31deac46b 100644 --- a/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo +++ b/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010505 -SHA256 (KDE/plasma/6.4.0/plasma-workspace-wallpapers-6.4.0.tar.xz) = cc4b353cb23adf3268b38b15c6f6fbd25a63774b4982468f80e450f600d39302 -SIZE (KDE/plasma/6.4.0/plasma-workspace-wallpapers-6.4.0.tar.xz) = 146653836 +TIMESTAMP = 1750789635 +SHA256 (KDE/plasma/6.4.1/plasma-workspace-wallpapers-6.4.1.tar.xz) = 7245e7e258f56282fe214259fae821495efc02b3b91aa9d6a39f2bed9f5e61d7 +SIZE (KDE/plasma/6.4.1/plasma-workspace-wallpapers-6.4.1.tar.xz) = 146653556 diff --git a/x11-themes/plasma6-qqc2-breeze-style/distinfo b/x11-themes/plasma6-qqc2-breeze-style/distinfo index 0df08e30a165..dcbeaca7676d 100644 --- a/x11-themes/plasma6-qqc2-breeze-style/distinfo +++ b/x11-themes/plasma6-qqc2-breeze-style/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010505 -SHA256 (KDE/plasma/6.4.0/qqc2-breeze-style-6.4.0.tar.xz) = 4be9084bd559744d80c20b3893c2bbb44dc193fd9324f4db8d27f6ad097efa4c -SIZE (KDE/plasma/6.4.0/qqc2-breeze-style-6.4.0.tar.xz) = 66300 +TIMESTAMP = 1750789635 +SHA256 (KDE/plasma/6.4.1/qqc2-breeze-style-6.4.1.tar.xz) = 608ff536d513571f3ad4acafd4960ec0b5a2abfcff3193214bac27a274796be7 +SIZE (KDE/plasma/6.4.1/qqc2-breeze-style-6.4.1.tar.xz) = 66316 diff --git a/x11-toolkits/plasma6-kdeplasma-addons/distinfo b/x11-toolkits/plasma6-kdeplasma-addons/distinfo index cff662e662c6..85bfb483e87b 100644 --- a/x11-toolkits/plasma6-kdeplasma-addons/distinfo +++ b/x11-toolkits/plasma6-kdeplasma-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010505 -SHA256 (KDE/plasma/6.4.0/kdeplasma-addons-6.4.0.tar.xz) = 5f04b71668cb8400e094bece6bb6c746b6bb9365bc116938b66d8aabd849355a -SIZE (KDE/plasma/6.4.0/kdeplasma-addons-6.4.0.tar.xz) = 939440 +TIMESTAMP = 1750789636 +SHA256 (KDE/plasma/6.4.1/kdeplasma-addons-6.4.1.tar.xz) = 894bf9d480fdbf0a3e00573391535a41e9a57cee723fbad0f8da2c16d299d2f6 +SIZE (KDE/plasma/6.4.1/kdeplasma-addons-6.4.1.tar.xz) = 939816 diff --git a/x11-wm/plasma6-kdecoration/distinfo b/x11-wm/plasma6-kdecoration/distinfo index 482616b25a9d..6e3428f7a60d 100644 --- a/x11-wm/plasma6-kdecoration/distinfo +++ b/x11-wm/plasma6-kdecoration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010505 -SHA256 (KDE/plasma/6.4.0/kdecoration-6.4.0.tar.xz) = a4cc8c4bc741d0a423d750ced66e141b9b98fcc71468ab210e54da382153b580 -SIZE (KDE/plasma/6.4.0/kdecoration-6.4.0.tar.xz) = 57868 +TIMESTAMP = 1750789637 +SHA256 (KDE/plasma/6.4.1/kdecoration-6.4.1.tar.xz) = a1b4401edaf7fe2163c3e1cab548d93c3131957b8534f21249eefceee496e122 +SIZE (KDE/plasma/6.4.1/kdecoration-6.4.1.tar.xz) = 57840 diff --git a/x11-wm/plasma6-kwin-x11/distinfo b/x11-wm/plasma6-kwin-x11/distinfo index acc0e96376df..137333c7fa3f 100644 --- a/x11-wm/plasma6-kwin-x11/distinfo +++ b/x11-wm/plasma6-kwin-x11/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010506 -SHA256 (KDE/plasma/6.4.0/kwin-x11-6.4.0.tar.xz) = 76d7c018eb6ee657292c892ab9ce74098290eee07c3fdfa9d7c531497d8e5b77 -SIZE (KDE/plasma/6.4.0/kwin-x11-6.4.0.tar.xz) = 6843036 +TIMESTAMP = 1750789638 +SHA256 (KDE/plasma/6.4.1/kwin-x11-6.4.1.tar.xz) = 798cbd6daf5fb2d7ebdb494e6b12f39a9ec0e025a27233621213966141207c0b +SIZE (KDE/plasma/6.4.1/kwin-x11-6.4.1.tar.xz) = 6859352 diff --git a/x11-wm/plasma6-kwin-x11/pkg-plist b/x11-wm/plasma6-kwin-x11/pkg-plist index 7a8dbeac2801..e660d4c645d6 100644 --- a/x11-wm/plasma6-kwin-x11/pkg-plist +++ b/x11-wm/plasma6-kwin-x11/pkg-plist @@ -1,1459 +1,1478 @@ bin/kwin_x11 include/kwin-x11/activities.h include/kwin-x11/appmenu.h include/kwin-x11/atoms.h include/kwin-x11/client_machine.h include/kwin-x11/compositor.h include/kwin-x11/config-kwin.h include/kwin-x11/core/colorlut3d.h include/kwin-x11/core/colorpipeline.h include/kwin-x11/core/colorpipelinestage.h include/kwin-x11/core/colorspace.h include/kwin-x11/core/colortransformation.h include/kwin-x11/core/drmdevice.h include/kwin-x11/core/gbmgraphicsbufferallocator.h include/kwin-x11/core/graphicsbuffer.h include/kwin-x11/core/graphicsbufferallocator.h include/kwin-x11/core/graphicsbufferview.h include/kwin-x11/core/iccprofile.h include/kwin-x11/core/inputbackend.h include/kwin-x11/core/inputdevice.h include/kwin-x11/core/output.h include/kwin-x11/core/outputbackend.h include/kwin-x11/core/outputconfiguration.h include/kwin-x11/core/outputlayer.h include/kwin-x11/core/overlaywindow.h include/kwin-x11/core/pixelgrid.h include/kwin-x11/core/renderbackend.h include/kwin-x11/core/renderjournal.h include/kwin-x11/core/renderlayer.h include/kwin-x11/core/renderlayerdelegate.h include/kwin-x11/core/renderloop.h include/kwin-x11/core/renderloop_p.h include/kwin-x11/core/rendertarget.h include/kwin-x11/core/renderviewport.h include/kwin-x11/core/session.h include/kwin-x11/core/session_consolekit.h include/kwin-x11/core/session_logind.h include/kwin-x11/core/session_noop.h include/kwin-x11/core/shmgraphicsbufferallocator.h include/kwin-x11/cursor.h include/kwin-x11/cursorsource.h include/kwin-x11/dbusinterface.h include/kwin-x11/debug_console.h include/kwin-x11/effect/animationeffect.h include/kwin-x11/effect/effect.h include/kwin-x11/effect/effecthandler.h include/kwin-x11/effect/effecttogglablestate.h include/kwin-x11/effect/effectwindow.h include/kwin-x11/effect/globals.h include/kwin-x11/effect/offscreeneffect.h include/kwin-x11/effect/offscreenquickview.h include/kwin-x11/effect/quickeffect.h include/kwin-x11/effect/timeline.h include/kwin-x11/effect/xcb.h include/kwin-x11/focuschain.h include/kwin-x11/ftrace.h include/kwin-x11/gestures.h include/kwin-x11/globalshortcuts.h include/kwin-x11/group.h include/kwin-x11/idle_inhibition.h include/kwin-x11/idledetector.h include/kwin-x11/input.h include/kwin-x11/input_event.h include/kwin-x11/input_event_spy.h include/kwin-x11/inputmethod.h include/kwin-x11/inputpanelv1integration.h include/kwin-x11/inputpanelv1window.h include/kwin-x11/internalwindow.h include/kwin-x11/keyboard_input.h include/kwin-x11/keyboard_layout.h include/kwin-x11/keyboard_layout_switching.h include/kwin-x11/keyboard_repeat.h include/kwin-x11/killwindow.h include/kwin-x11/kscreenintegration.h include/kwin-x11/kwin_export.h include/kwin-x11/layershellv1integration.h include/kwin-x11/layershellv1window.h include/kwin-x11/lidswitchtracker.h include/kwin-x11/main.h include/kwin-x11/mousebuttons.h include/kwin-x11/netinfo.h include/kwin-x11/onscreennotification.h include/kwin-x11/opengl/abstract_opengl_context_attribute_builder.h include/kwin-x11/opengl/egl_context_attribute_builder.h include/kwin-x11/opengl/eglcontext.h include/kwin-x11/opengl/egldisplay.h include/kwin-x11/opengl/eglimagetexture.h include/kwin-x11/opengl/eglnativefence.h include/kwin-x11/opengl/eglswapchain.h include/kwin-x11/opengl/eglutils_p.h include/kwin-x11/opengl/glframebuffer.h include/kwin-x11/opengl/gllut.h include/kwin-x11/opengl/gllut3D.h include/kwin-x11/opengl/glplatform.h include/kwin-x11/opengl/glrendertimequery.h include/kwin-x11/opengl/glshader.h include/kwin-x11/opengl/glshadermanager.h include/kwin-x11/opengl/gltexture.h include/kwin-x11/opengl/gltexture_p.h include/kwin-x11/opengl/glutils.h include/kwin-x11/opengl/glvertexbuffer.h include/kwin-x11/opengl/openglcontext.h include/kwin-x11/options.h include/kwin-x11/osd.h include/kwin-x11/outline.h include/kwin-x11/outputconfigurationstore.h include/kwin-x11/placeholderoutput.h include/kwin-x11/placement.h include/kwin-x11/placementtracker.h include/kwin-x11/plugin.h include/kwin-x11/pluginmanager.h include/kwin-x11/pointer_input.h include/kwin-x11/rulebooksettings.h include/kwin-x11/rules.h include/kwin-x11/scene/cursordelegate_opengl.h include/kwin-x11/scene/cursordelegate_qpainter.h include/kwin-x11/scene/cursoritem.h include/kwin-x11/scene/cursorscene.h include/kwin-x11/scene/decorationitem.h include/kwin-x11/scene/dndiconitem.h include/kwin-x11/scene/imageitem.h include/kwin-x11/scene/item.h include/kwin-x11/scene/itemgeometry.h include/kwin-x11/scene/itemrenderer.h include/kwin-x11/scene/itemrenderer_opengl.h include/kwin-x11/scene/itemrenderer_qpainter.h include/kwin-x11/scene/rootitem.h include/kwin-x11/scene/scene.h include/kwin-x11/scene/shadowitem.h include/kwin-x11/scene/surfaceitem.h include/kwin-x11/scene/surfaceitem_internal.h include/kwin-x11/scene/surfaceitem_wayland.h include/kwin-x11/scene/surfaceitem_x11.h include/kwin-x11/scene/windowitem.h include/kwin-x11/scene/workspacescene.h include/kwin-x11/scene/workspacescene_opengl.h include/kwin-x11/scene/workspacescene_qpainter.h include/kwin-x11/screenedge.h include/kwin-x11/screenlockerwatcher.h include/kwin-x11/shadow.h include/kwin-x11/sm.h include/kwin-x11/tablet_input.h include/kwin-x11/tabletmodemanager.h include/kwin-x11/touch_input.h include/kwin-x11/useractions.h include/kwin-x11/utils/c_ptr.h include/kwin-x11/utils/common.h include/kwin-x11/utils/cursortheme.h include/kwin-x11/utils/damagejournal.h include/kwin-x11/utils/drm_format_helper.h include/kwin-x11/utils/edid.h include/kwin-x11/utils/executable_path.h include/kwin-x11/utils/filedescriptor.h include/kwin-x11/utils/kernel.h include/kwin-x11/utils/memorymap.h include/kwin-x11/utils/orientationsensor.h include/kwin-x11/utils/ramfile.h include/kwin-x11/utils/realtime.h include/kwin-x11/utils/resource.h include/kwin-x11/utils/serviceutils.h include/kwin-x11/utils/softwarevsyncmonitor.h include/kwin-x11/utils/subsurfacemonitor.h include/kwin-x11/utils/udev.h include/kwin-x11/utils/version.h include/kwin-x11/utils/vsyncmonitor.h include/kwin-x11/utils/xcbutils.h include/kwin-x11/virtualdesktops.h include/kwin-x11/virtualdesktopsdbustypes.h include/kwin-x11/virtualkeyboard_dbus.h include/kwin-x11/wayland/alphamodifier_v1.h include/kwin-x11/wayland/appmenu.h include/kwin-x11/wayland/blur.h include/kwin-x11/wayland/clientconnection.h include/kwin-x11/wayland/colormanagement_v1.h include/kwin-x11/wayland/compositor.h include/kwin-x11/wayland/contenttype_v1.h include/kwin-x11/wayland/contrast.h include/kwin-x11/wayland/cursorshape_v1.h include/kwin-x11/wayland/datacontroldevice_v1.h include/kwin-x11/wayland/datacontroldevicemanager_v1.h include/kwin-x11/wayland/datacontroloffer_v1.h include/kwin-x11/wayland/datacontrolsource_v1.h include/kwin-x11/wayland/datadevice.h include/kwin-x11/wayland/datadevicemanager.h include/kwin-x11/wayland/dataoffer.h include/kwin-x11/wayland/datasource.h include/kwin-x11/wayland/display.h include/kwin-x11/wayland/dpms.h include/kwin-x11/wayland/externalbrightness_v1.h include/kwin-x11/wayland/fractionalscale_v1.h include/kwin-x11/wayland/frog_colormanagement_v1.h include/kwin-x11/wayland/idle.h include/kwin-x11/wayland/idleinhibit_v1.h include/kwin-x11/wayland/idlenotify_v1.h include/kwin-x11/wayland/inputmethod_v1.h include/kwin-x11/wayland/keyboard.h include/kwin-x11/wayland/keyboard_shortcuts_inhibit_v1.h include/kwin-x11/wayland/keystate.h include/kwin-x11/wayland/layershell_v1.h include/kwin-x11/wayland/linux_drm_syncobj_v1.h include/kwin-x11/wayland/lockscreen_overlay_v1.h include/kwin-x11/wayland/output.h include/kwin-x11/wayland/output_order_v1.h include/kwin-x11/wayland/outputdevice_v2.h include/kwin-x11/wayland/outputmanagement_v2.h include/kwin-x11/wayland/plasmashell.h include/kwin-x11/wayland/plasmavirtualdesktop.h include/kwin-x11/wayland/plasmawindowmanagement.h include/kwin-x11/wayland/pointer.h include/kwin-x11/wayland/pointerconstraints_v1.h include/kwin-x11/wayland/pointergestures_v1.h include/kwin-x11/wayland/presentationtime.h include/kwin-x11/wayland/primaryselectiondevice_v1.h include/kwin-x11/wayland/primaryselectiondevicemanager_v1.h include/kwin-x11/wayland/primaryselectionoffer_v1.h include/kwin-x11/wayland/primaryselectionsource_v1.h include/kwin-x11/wayland/quirks.h include/kwin-x11/wayland/qwayland-server-alpha-modifier-v1.h include/kwin-x11/wayland/qwayland-server-color-management-v1.h include/kwin-x11/wayland/qwayland-server-content-type-v1.h include/kwin-x11/wayland/qwayland-server-frog-color-management-v1.h include/kwin-x11/wayland/qwayland-server-kde-external-brightness-v1.h include/kwin-x11/wayland/qwayland-server-linux-drm-syncobj-v1.h include/kwin-x11/wayland/qwayland-server-presentation-time.h include/kwin-x11/wayland/relativepointer_v1.h include/kwin-x11/wayland/screencast_v1.h include/kwin-x11/wayland/screenedge_v1.h include/kwin-x11/wayland/seat.h include/kwin-x11/wayland/securitycontext_v1.h include/kwin-x11/wayland/server_decoration.h include/kwin-x11/wayland/server_decoration_palette.h include/kwin-x11/wayland/shadow.h include/kwin-x11/wayland/slide.h include/kwin-x11/wayland/subcompositor.h include/kwin-x11/wayland/surface.h include/kwin-x11/wayland/tablet_v2.h include/kwin-x11/wayland/tearingcontrol_v1.h include/kwin-x11/wayland/textinput_v1.h include/kwin-x11/wayland/textinput_v2.h include/kwin-x11/wayland/textinput_v3.h include/kwin-x11/wayland/touch.h include/kwin-x11/wayland/viewporter.h include/kwin-x11/wayland/wayland-alpha-modifier-v1-server-protocol.h include/kwin-x11/wayland/wayland-color-management-v1-server-protocol.h include/kwin-x11/wayland/wayland-content-type-v1-server-protocol.h include/kwin-x11/wayland/wayland-frog-color-management-v1-server-protocol.h include/kwin-x11/wayland/wayland-kde-external-brightness-v1-server-protocol.h include/kwin-x11/wayland/wayland-linux-drm-syncobj-v1-server-protocol.h include/kwin-x11/wayland/wayland-presentation-time-server-protocol.h include/kwin-x11/wayland/xdgactivation_v1.h include/kwin-x11/wayland/xdgdecoration_v1.h include/kwin-x11/wayland/xdgdialog_v1.h include/kwin-x11/wayland/xdgforeign_v2.h include/kwin-x11/wayland/xdgoutput_v1.h include/kwin-x11/wayland/xdgshell.h include/kwin-x11/wayland/xdgsystembell_v1.h include/kwin-x11/wayland/xdgtoplevelicon_v1.h include/kwin-x11/wayland/xwaylandkeyboardgrab_v1.h include/kwin-x11/wayland/xwaylandshell_v1.h include/kwin-x11/wayland_server.h include/kwin-x11/waylandshellintegration.h include/kwin-x11/waylandwindow.h include/kwin-x11/window.h include/kwin-x11/workspace.h include/kwin-x11/x11eventfilter.h include/kwin-x11/x11window.h include/kwin-x11/xdgactivationv1.h include/kwin-x11/xdgshellintegration.h include/kwin-x11/xdgshellwindow.h include/kwin-x11/xkb.h lib/cmake/KWinX11/KWinX11Config.cmake lib/cmake/KWinX11/KWinX11ConfigVersion.cmake lib/cmake/KWinX11/KWinX11Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KWinX11/KWinX11Targets.cmake lib/cmake/KWinX11DBusInterface/KWinX11DBusInterfaceConfig.cmake lib/kconf_update_bin/kwin-6.0-delete-desktop-switching-shortcuts-x11 lib/kconf_update_bin/kwin-6.0-remove-breeze-tabbox-default-x11 lib/kconf_update_bin/kwin-6.0-reset-active-mouse-screen-x11 lib/kconf_update_bin/kwin-6.1-remove-gridview-expose-shortcuts-x11 lib/kconf_update_bin/kwin5_update_default_rules_x11 lib/libexec/kwin-applywindowdecoration-x11 lib/libexec/kwin_killer_helper_x11 lib/libkcmkwincommon-x11.so.%%KDE_PLASMA_VERSION%% lib/libkcmkwincommon-x11.so.6 lib/libkwin-x11.so lib/libkwin-x11.so.%%KDE_PLASMA_VERSION%% lib/libkwin-x11.so.6 %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_aurorae_x11.so %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_decoration_x11.so %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_effect_x11.so %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_scripts_x11.so %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_windowswitcher_x11.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kcm_kwin4_genericscripted.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_blur_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_diminactive_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_glide_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_invert_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_magiclamp_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_magnifier_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_mouseclick_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_mousemark_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_overview_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_showpaint_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_slide_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_thumbnailaside_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_tileseditor_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_trackmouse_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_windowview_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_wobblywindows_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_zoom_config.so %%QT_PLUGINDIR%%/kwin-x11/plugins/krunnerintegration.so %%QT_PLUGINDIR%%/kwin-x11/plugins/nightlight.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_animations_x11.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwin_effects_x11.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwin_scripts_x11.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwin_virtualdesktops_x11.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwindecoration_x11.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwinrules_x11.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwinoptions_x11.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwinscreenedges_x11.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwintabbox_x11.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwintouchscreen_x11.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kwincompositing.so %%QT_QMLDIR%%/org/kde/kwin_x11/private/effects/WindowHeap.qml %%QT_QMLDIR%%/org/kde/kwin_x11/private/effects/WindowHeapDelegate.qml %%QT_QMLDIR%%/org/kde/kwin_x11/private/effects/effectsplugin.qmltypes %%QT_QMLDIR%%/org/kde/kwin_x11/private/effects/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kwin_x11/private/effects/libeffectsplugin.so %%QT_QMLDIR%%/org/kde/kwin_x11/private/effects/qmldir %%QT_QMLDIR%%/org/kde/kwin_x11/private/kdecoration/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kwin_x11/private/kdecoration/kdecorationprivatedeclarative.qmltypes %%QT_QMLDIR%%/org/kde/kwin_x11/private/kdecoration/libkdecorationprivatedeclarative.so %%QT_QMLDIR%%/org/kde/kwin_x11/private/kdecoration/qmldir @comment lib/systemd/user/plasma-kwin_x11.service share/applications/kcm_animations_x11.desktop share/applications/kcm_kwin_effects_x11.desktop share/applications/kcm_kwin_scripts_x11.desktop share/applications/kcm_kwin_virtualdesktops_x11.desktop share/applications/kcm_kwindecoration_x11.desktop share/applications/kcm_kwinoptions_x11.desktop share/applications/kcm_kwinrules_x11.desktop share/applications/kcm_kwintabbox_x11.desktop share/applications/kwincompositing.desktop share/applications/org.kde.kwin_x11.killer.desktop share/dbus-1/interfaces/kwin_x11_org.kde.KWin.NightLight.xml share/dbus-1/interfaces/kwin_x11_org.kde.KWin.Plugins.xml share/dbus-1/interfaces/kwin_x11_org.kde.KWin.TabletModeManager.xml share/dbus-1/interfaces/kwin_x11_org.kde.KWin.VirtualDesktopManager.xml share/dbus-1/interfaces/kwin_x11_org.kde.KWin.xml share/dbus-1/interfaces/kwin_x11_org.kde.kwin.Compositing.xml share/dbus-1/interfaces/kwin_x11_org.kde.kwin.Effects.xml share/dbus-1/interfaces/kwin_x11_org.kde.kwin.VirtualKeyboard.xml share/doc/HTML/ca/kcontrol/desktop-x11/index.cache.bz2 share/doc/HTML/ca/kcontrol/desktop-x11/index.docbook share/doc/HTML/ca/kcontrol/kwindecoration-x11/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwindecoration-x11/index.docbook share/doc/HTML/ca/kcontrol/kwineffects-x11/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwineffects-x11/index.docbook share/doc/HTML/ca/kcontrol/kwinscreenedges-x11/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwinscreenedges-x11/index.docbook share/doc/HTML/ca/kcontrol/kwintabbox-x11/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwintabbox-x11/index.docbook share/doc/HTML/ca/kcontrol/kwintouchscreen-x11/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwintouchscreen-x11/index.docbook share/doc/HTML/ca/kcontrol/kwinvirtualkeyboard-x11/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwinvirtualkeyboard-x11/index.docbook share/doc/HTML/ca/kcontrol/windowbehaviour-x11/index.cache.bz2 share/doc/HTML/ca/kcontrol/windowbehaviour-x11/index.docbook share/doc/HTML/ca/kcontrol/windowspecific-x11/index.cache.bz2 share/doc/HTML/ca/kcontrol/windowspecific-x11/index.docbook share/doc/HTML/en/kcontrol/desktop-x11/index.cache.bz2 share/doc/HTML/en/kcontrol/desktop-x11/index.docbook share/doc/HTML/en/kcontrol/kwindecoration-x11/button.png share/doc/HTML/en/kcontrol/kwindecoration-x11/configure.png share/doc/HTML/en/kcontrol/kwindecoration-x11/decoration.png share/doc/HTML/en/kcontrol/kwindecoration-x11/index.cache.bz2 share/doc/HTML/en/kcontrol/kwindecoration-x11/index.docbook share/doc/HTML/en/kcontrol/kwindecoration-x11/main.png share/doc/HTML/en/kcontrol/kwineffects-x11/configure-effects.png share/doc/HTML/en/kcontrol/kwineffects-x11/dialog-information.png share/doc/HTML/en/kcontrol/kwineffects-x11/index.cache.bz2 share/doc/HTML/en/kcontrol/kwineffects-x11/index.docbook share/doc/HTML/en/kcontrol/kwineffects-x11/video.png share/doc/HTML/en/kcontrol/kwinscreenedges-x11/index.cache.bz2 share/doc/HTML/en/kcontrol/kwinscreenedges-x11/index.docbook share/doc/HTML/en/kcontrol/kwintabbox-x11/index.cache.bz2 share/doc/HTML/en/kcontrol/kwintabbox-x11/index.docbook share/doc/HTML/en/kcontrol/kwintabbox-x11/taskswitcher.png share/doc/HTML/en/kcontrol/kwintouchscreen-x11/index.cache.bz2 share/doc/HTML/en/kcontrol/kwintouchscreen-x11/index.docbook share/doc/HTML/en/kcontrol/kwinvirtualkeyboard-x11/index.cache.bz2 share/doc/HTML/en/kcontrol/kwinvirtualkeyboard-x11/index.docbook share/doc/HTML/en/kcontrol/windowbehaviour-x11/index.cache.bz2 share/doc/HTML/en/kcontrol/windowbehaviour-x11/index.docbook share/doc/HTML/en/kcontrol/windowspecific-x11/Face-smile.png share/doc/HTML/en/kcontrol/windowspecific-x11/akgregator-info.png share/doc/HTML/en/kcontrol/windowspecific-x11/akregator-attributes.png share/doc/HTML/en/kcontrol/windowspecific-x11/akregator-fav.png share/doc/HTML/en/kcontrol/windowspecific-x11/config-win-behavior.png share/doc/HTML/en/kcontrol/windowspecific-x11/emacs-attribute.png share/doc/HTML/en/kcontrol/windowspecific-x11/emacs-info.png share/doc/HTML/en/kcontrol/windowspecific-x11/focus-stealing-pop2top-attribute.png share/doc/HTML/en/kcontrol/windowspecific-x11/index.cache.bz2 share/doc/HTML/en/kcontrol/windowspecific-x11/index.docbook share/doc/HTML/en/kcontrol/windowspecific-x11/knotes-attribute.png share/doc/HTML/en/kcontrol/windowspecific-x11/knotes-info.png share/doc/HTML/en/kcontrol/windowspecific-x11/kopete-attribute-2.png share/doc/HTML/en/kcontrol/windowspecific-x11/kopete-chat-attribute.png share/doc/HTML/en/kcontrol/windowspecific-x11/kopete-chat-info.png share/doc/HTML/en/kcontrol/windowspecific-x11/kopete-info.png share/doc/HTML/en/kcontrol/windowspecific-x11/kwin-detect-window.png share/doc/HTML/en/kcontrol/windowspecific-x11/kwin-kopete-rules.png share/doc/HTML/en/kcontrol/windowspecific-x11/kwin-rule-editor.png share/doc/HTML/en/kcontrol/windowspecific-x11/kwin-rules-main-n-akregator.png share/doc/HTML/en/kcontrol/windowspecific-x11/kwin-rules-main.png share/doc/HTML/en/kcontrol/windowspecific-x11/kwin-rules-ordering.png share/doc/HTML/en/kcontrol/windowspecific-x11/kwin-window-attributes.png share/doc/HTML/en/kcontrol/windowspecific-x11/kwin-window-matching.png share/doc/HTML/en/kcontrol/windowspecific-x11/pager-4-desktops.png share/doc/HTML/en/kcontrol/windowspecific-x11/tbird-compose-attribute.png share/doc/HTML/en/kcontrol/windowspecific-x11/tbird-compose-info.png share/doc/HTML/en/kcontrol/windowspecific-x11/tbird-main-attribute.png share/doc/HTML/en/kcontrol/windowspecific-x11/tbird-main-info.png share/doc/HTML/en/kcontrol/windowspecific-x11/tbird-reminder-attribute-2.png share/doc/HTML/en/kcontrol/windowspecific-x11/tbird-reminder-info.png share/doc/HTML/en/kcontrol/windowspecific-x11/window-matching-emacs.png share/doc/HTML/en/kcontrol/windowspecific-x11/window-matching-init.png share/doc/HTML/en/kcontrol/windowspecific-x11/window-matching-knotes.png share/doc/HTML/en/kcontrol/windowspecific-x11/window-matching-kopete-chat.png share/doc/HTML/en/kcontrol/windowspecific-x11/window-matching-kopete.png share/doc/HTML/en/kcontrol/windowspecific-x11/window-matching-ready-akregator.png share/doc/HTML/en/kcontrol/windowspecific-x11/window-matching-tbird-compose.png share/doc/HTML/en/kcontrol/windowspecific-x11/window-matching-tbird-main.png share/doc/HTML/en/kcontrol/windowspecific-x11/window-matching-tbird-reminder.png +share/doc/HTML/it/kcontrol/desktop-x11/index.cache.bz2 +share/doc/HTML/it/kcontrol/desktop-x11/index.docbook +share/doc/HTML/it/kcontrol/kwindecoration-x11/index.cache.bz2 +share/doc/HTML/it/kcontrol/kwindecoration-x11/index.docbook +share/doc/HTML/it/kcontrol/kwineffects-x11/index.cache.bz2 +share/doc/HTML/it/kcontrol/kwineffects-x11/index.docbook +share/doc/HTML/it/kcontrol/kwinscreenedges-x11/index.cache.bz2 +share/doc/HTML/it/kcontrol/kwinscreenedges-x11/index.docbook +share/doc/HTML/it/kcontrol/kwintabbox-x11/index.cache.bz2 +share/doc/HTML/it/kcontrol/kwintabbox-x11/index.docbook +share/doc/HTML/it/kcontrol/kwintouchscreen-x11/index.cache.bz2 +share/doc/HTML/it/kcontrol/kwintouchscreen-x11/index.docbook +share/doc/HTML/it/kcontrol/kwinvirtualkeyboard-x11/index.cache.bz2 +share/doc/HTML/it/kcontrol/kwinvirtualkeyboard-x11/index.docbook +share/doc/HTML/it/kcontrol/windowbehaviour-x11/index.cache.bz2 +share/doc/HTML/it/kcontrol/windowbehaviour-x11/index.docbook +share/doc/HTML/it/kcontrol/windowspecific-x11/index.cache.bz2 +share/doc/HTML/it/kcontrol/windowspecific-x11/index.docbook share/doc/HTML/nl/kcontrol/desktop-x11/index.cache.bz2 share/doc/HTML/nl/kcontrol/desktop-x11/index.docbook share/doc/HTML/nl/kcontrol/kwindecoration-x11/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwindecoration-x11/index.docbook share/doc/HTML/nl/kcontrol/kwineffects-x11/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwineffects-x11/index.docbook share/doc/HTML/nl/kcontrol/kwinscreenedges-x11/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwinscreenedges-x11/index.docbook share/doc/HTML/nl/kcontrol/kwintabbox-x11/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwintabbox-x11/index.docbook share/doc/HTML/nl/kcontrol/kwintouchscreen-x11/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwintouchscreen-x11/index.docbook share/doc/HTML/nl/kcontrol/kwinvirtualkeyboard-x11/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwinvirtualkeyboard-x11/index.docbook share/doc/HTML/nl/kcontrol/windowbehaviour-x11/index.cache.bz2 share/doc/HTML/nl/kcontrol/windowbehaviour-x11/index.docbook share/doc/HTML/nl/kcontrol/windowspecific-x11/index.cache.bz2 share/doc/HTML/nl/kcontrol/windowspecific-x11/index.docbook share/doc/HTML/uk/kcontrol/desktop-x11/index.cache.bz2 share/doc/HTML/uk/kcontrol/desktop-x11/index.docbook share/doc/HTML/uk/kcontrol/kwindecoration-x11/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwindecoration-x11/index.docbook share/doc/HTML/uk/kcontrol/kwineffects-x11/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwineffects-x11/index.docbook share/doc/HTML/uk/kcontrol/kwinscreenedges-x11/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwinscreenedges-x11/index.docbook share/doc/HTML/uk/kcontrol/kwintabbox-x11/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwintabbox-x11/index.docbook share/doc/HTML/uk/kcontrol/kwintouchscreen-x11/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwintouchscreen-x11/index.docbook share/doc/HTML/uk/kcontrol/kwinvirtualkeyboard-x11/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwinvirtualkeyboard-x11/index.docbook share/doc/HTML/uk/kcontrol/windowbehaviour-x11/index.cache.bz2 share/doc/HTML/uk/kcontrol/windowbehaviour-x11/index.docbook share/doc/HTML/uk/kcontrol/windowspecific-x11/index.cache.bz2 share/doc/HTML/uk/kcontrol/windowspecific-x11/index.docbook share/icons/hicolor/16x16/apps/kwin-x11.png share/icons/hicolor/32x32/apps/kwin-x11.png share/icons/hicolor/48x48/apps/kwin-x11.png share/icons/hicolor/scalable/apps/kwin-x11.svgz share/kconf_update/kwin-x11.upd share/knotifications6/kwin-x11.notifyrc share/knsrcfiles/kwineffect-x11.knsrc share/knsrcfiles/kwinscripts-x11.knsrc share/knsrcfiles/kwinswitcher-x11.knsrc share/knsrcfiles/window-decorations-x11.knsrc share/krunner/dbusplugins/kwin-runner-windows-x11.desktop %%DATADIR%%/builtin-effects/blendchanges.json %%DATADIR%%/builtin-effects/blur.json %%DATADIR%%/builtin-effects/colorblindnesscorrection.json %%DATADIR%%/builtin-effects/colorpicker.json %%DATADIR%%/builtin-effects/contrast.json %%DATADIR%%/builtin-effects/diminactive.json %%DATADIR%%/builtin-effects/fallapart.json %%DATADIR%%/builtin-effects/glide.json %%DATADIR%%/builtin-effects/highlightwindow.json %%DATADIR%%/builtin-effects/invert.json %%DATADIR%%/builtin-effects/kscreen.json %%DATADIR%%/builtin-effects/magiclamp.json %%DATADIR%%/builtin-effects/magnifier.json %%DATADIR%%/builtin-effects/mouseclick.json %%DATADIR%%/builtin-effects/mousemark.json %%DATADIR%%/builtin-effects/outputlocator.json %%DATADIR%%/builtin-effects/overview.json %%DATADIR%%/builtin-effects/screenedge.json %%DATADIR%%/builtin-effects/screenshot.json %%DATADIR%%/builtin-effects/sheet.json %%DATADIR%%/builtin-effects/showfps.json %%DATADIR%%/builtin-effects/showpaint.json %%DATADIR%%/builtin-effects/slide.json %%DATADIR%%/builtin-effects/slideback.json %%DATADIR%%/builtin-effects/slidingpopups.json %%DATADIR%%/builtin-effects/startupfeedback.json %%DATADIR%%/builtin-effects/systembell.json %%DATADIR%%/builtin-effects/thumbnailaside.json %%DATADIR%%/builtin-effects/tileseditor.json %%DATADIR%%/builtin-effects/trackmouse.json %%DATADIR%%/builtin-effects/windowview.json %%DATADIR%%/builtin-effects/wobblywindows.json %%DATADIR%%/builtin-effects/zoom.json %%DATADIR%%/effects/dialogparent/contents/code/main.js %%DATADIR%%/effects/dialogparent/metadata.json %%DATADIR%%/effects/dimscreen/contents/code/main.js %%DATADIR%%/effects/dimscreen/metadata.json %%DATADIR%%/effects/eyeonscreen/contents/code/main.js %%DATADIR%%/effects/eyeonscreen/metadata.json %%DATADIR%%/effects/fade/contents/code/main.js %%DATADIR%%/effects/fade/contents/config/main.xml %%DATADIR%%/effects/fade/metadata.json %%DATADIR%%/effects/fadedesktop/contents/code/main.js %%DATADIR%%/effects/fadedesktop/metadata.json %%DATADIR%%/effects/fadingpopups/contents/code/main.js %%DATADIR%%/effects/fadingpopups/metadata.json %%DATADIR%%/effects/frozenapp/contents/code/main.js %%DATADIR%%/effects/frozenapp/metadata.json %%DATADIR%%/effects/fullscreen/contents/code/main.js %%DATADIR%%/effects/fullscreen/metadata.json %%DATADIR%%/effects/login/contents/code/main.js %%DATADIR%%/effects/login/contents/config/main.xml %%DATADIR%%/effects/login/contents/ui/config.ui %%DATADIR%%/effects/login/metadata.json %%DATADIR%%/effects/logout/contents/code/main.js %%DATADIR%%/effects/logout/metadata.json %%DATADIR%%/effects/maximize/contents/code/main.js %%DATADIR%%/effects/maximize/metadata.json %%DATADIR%%/effects/outputlocator/qml/OutputLabel.qml %%DATADIR%%/effects/scale/contents/code/main.js %%DATADIR%%/effects/scale/contents/config/main.xml %%DATADIR%%/effects/scale/contents/ui/config.ui %%DATADIR%%/effects/scale/metadata.json %%DATADIR%%/effects/sessionquit/contents/code/main.js %%DATADIR%%/effects/sessionquit/metadata.json %%DATADIR%%/effects/showfps/qml/main-fallback.qml %%DATADIR%%/effects/showfps/qml/main.qml %%DATADIR%%/effects/squash/contents/code/main.js %%DATADIR%%/effects/squash/metadata.json %%DATADIR%%/effects/tileseditor/qml/ResizeCorner.qml %%DATADIR%%/effects/tileseditor/qml/ResizeHandle.qml %%DATADIR%%/effects/tileseditor/qml/TileDelegate.qml %%DATADIR%%/effects/tileseditor/qml/layouts.svg %%DATADIR%%/effects/tileseditor/qml/main.qml %%DATADIR%%/effects/translucency/contents/code/main.js %%DATADIR%%/effects/translucency/contents/config/main.xml %%DATADIR%%/effects/translucency/contents/ui/config.ui %%DATADIR%%/effects/translucency/metadata.json %%DATADIR%%/effects/windowaperture/contents/code/main.js %%DATADIR%%/effects/windowaperture/metadata.json %%DATADIR%%/effects/windowview/qml/main.qml %%DATADIR%%/frames/plasma/frame_none.qml %%DATADIR%%/frames/plasma/frame_styled.qml %%DATADIR%%/frames/plasma/frame_unstyled.qml %%DATADIR%%/kcm_kwintabbox/desktop.png %%DATADIR%%/kcm_kwintabbox/dolphin.png %%DATADIR%%/kcm_kwintabbox/falkon.png %%DATADIR%%/kcm_kwintabbox/kmail.png %%DATADIR%%/kcm_kwintabbox/systemsettings.png %%DATADIR%%/onscreennotification/plasma/dummydata/osd.qml %%DATADIR%%/onscreennotification/plasma/main.qml %%DATADIR%%/outline/plasma/outline.qml %%DATADIR%%/scripts/desktopchangeosd/contents/ui/main.qml %%DATADIR%%/scripts/desktopchangeosd/contents/ui/osd.qml %%DATADIR%%/scripts/desktopchangeosd/metadata.json %%DATADIR%%/scripts/minimizeall/contents/code/main.js %%DATADIR%%/scripts/minimizeall/metadata.json %%DATADIR%%/scripts/synchronizeskipswitcher/contents/code/main.js %%DATADIR%%/scripts/synchronizeskipswitcher/metadata.json %%DATADIR%%/scripts/videowall/contents/code/main.js %%DATADIR%%/scripts/videowall/contents/config/main.xml %%DATADIR%%/scripts/videowall/contents/ui/config.ui %%DATADIR%%/scripts/videowall/metadata.json %%DATADIR%%/tabbox/thumbnail_grid/contents/ui/main.qml %%DATADIR%%/tabbox/thumbnail_grid/metadata.json %%DATADIR%%/tm_inner.png %%DATADIR%%/tm_outer.png share/locale/af/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/af/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/af/LC_MESSAGES/kcmkwm_x11.mo share/locale/af/LC_MESSAGES/kwin_x11.mo share/locale/ar/LC_MESSAGES/kcm_animations_x11.mo share/locale/ar/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ar/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ar/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ar/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ar/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ar/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ar/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ar/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ar/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ar/LC_MESSAGES/kcmkwm_x11.mo share/locale/ar/LC_MESSAGES/kwin_x11.mo share/locale/as/LC_MESSAGES/kwin_x11.mo share/locale/ast/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ast/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ast/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ast/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ast/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ast/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ast/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ast/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ast/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ast/LC_MESSAGES/kcmkwm_x11.mo share/locale/ast/LC_MESSAGES/kwin_x11.mo share/locale/az/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/az/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/az/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/az/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/az/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/az/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/az/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/az/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/az/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/az/LC_MESSAGES/kcmkwm_x11.mo share/locale/az/LC_MESSAGES/kwin_x11.mo share/locale/be/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/be/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/be/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/be/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/be/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/be/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/be/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/be/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/be/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/be/LC_MESSAGES/kcmkwm_x11.mo share/locale/be/LC_MESSAGES/kwin_x11.mo share/locale/be@latin/LC_MESSAGES/kwin_x11.mo share/locale/bg/LC_MESSAGES/kcm_animations_x11.mo share/locale/bg/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/bg/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/bg/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/bg/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/bg/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/bg/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/bg/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/bg/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/bg/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/bg/LC_MESSAGES/kcmkwm_x11.mo share/locale/bg/LC_MESSAGES/kwin_x11.mo share/locale/bn/LC_MESSAGES/kcmkwm_x11.mo share/locale/bn/LC_MESSAGES/kwin_x11.mo share/locale/bn_IN/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/bn_IN/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/bn_IN/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/bn_IN/LC_MESSAGES/kcmkwm_x11.mo share/locale/bn_IN/LC_MESSAGES/kwin_x11.mo share/locale/br/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/br/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/br/LC_MESSAGES/kcmkwm_x11.mo share/locale/br/LC_MESSAGES/kwin_x11.mo share/locale/bs/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/bs/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/bs/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/bs/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/bs/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/bs/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/bs/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/bs/LC_MESSAGES/kcmkwm_x11.mo share/locale/bs/LC_MESSAGES/kwin_x11.mo share/locale/ca/LC_MESSAGES/kcm_animations_x11.mo share/locale/ca/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ca/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ca/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ca/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ca/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ca/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ca/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ca/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ca/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ca/LC_MESSAGES/kcmkwm_x11.mo share/locale/ca/LC_MESSAGES/kwin_x11.mo share/locale/ca@valencia/LC_MESSAGES/kcm_animations_x11.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwm_x11.mo share/locale/ca@valencia/LC_MESSAGES/kwin_x11.mo share/locale/cs/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/cs/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/cs/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/cs/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/cs/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/cs/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/cs/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/cs/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/cs/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/cs/LC_MESSAGES/kcmkwm_x11.mo share/locale/cs/LC_MESSAGES/kwin_x11.mo share/locale/csb/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/csb/LC_MESSAGES/kwin_x11.mo share/locale/cy/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/cy/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/cy/LC_MESSAGES/kcmkwm_x11.mo share/locale/cy/LC_MESSAGES/kwin_x11.mo share/locale/da/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/da/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/da/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/da/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/da/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/da/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/da/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/da/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/da/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/da/LC_MESSAGES/kcmkwm_x11.mo share/locale/da/LC_MESSAGES/kwin_x11.mo share/locale/de/LC_MESSAGES/kcm_animations_x11.mo share/locale/de/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/de/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/de/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/de/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/de/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/de/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/de/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/de/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/de/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/de/LC_MESSAGES/kcmkwm_x11.mo share/locale/de/LC_MESSAGES/kwin_x11.mo share/locale/el/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/el/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/el/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/el/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/el/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/el/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/el/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/el/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/el/LC_MESSAGES/kcmkwm_x11.mo share/locale/el/LC_MESSAGES/kwin_x11.mo share/locale/en_GB/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/en_GB/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/en_GB/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/en_GB/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/en_GB/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/en_GB/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/en_GB/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/en_GB/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/en_GB/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/en_GB/LC_MESSAGES/kcmkwm_x11.mo share/locale/en_GB/LC_MESSAGES/kwin_x11.mo share/locale/eo/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/eo/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/eo/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/eo/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/eo/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/eo/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/eo/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/eo/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/eo/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/eo/LC_MESSAGES/kcmkwm_x11.mo share/locale/eo/LC_MESSAGES/kwin_x11.mo share/locale/es/LC_MESSAGES/kcm_animations_x11.mo share/locale/es/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/es/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/es/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/es/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/es/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/es/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/es/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/es/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/es/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/es/LC_MESSAGES/kcmkwm_x11.mo share/locale/es/LC_MESSAGES/kwin_x11.mo share/locale/et/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/et/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/et/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/et/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/et/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/et/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/et/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/et/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/et/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/et/LC_MESSAGES/kcmkwm_x11.mo share/locale/et/LC_MESSAGES/kwin_x11.mo share/locale/eu/LC_MESSAGES/kcm_animations_x11.mo share/locale/eu/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/eu/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/eu/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/eu/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/eu/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/eu/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/eu/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/eu/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/eu/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/eu/LC_MESSAGES/kcmkwm_x11.mo share/locale/eu/LC_MESSAGES/kwin_x11.mo share/locale/fa/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/fa/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/fa/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/fa/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/fa/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/fa/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/fa/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/fa/LC_MESSAGES/kcmkwm_x11.mo share/locale/fa/LC_MESSAGES/kwin_x11.mo share/locale/fi/LC_MESSAGES/kcm_animations_x11.mo share/locale/fi/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/fi/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/fi/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/fi/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/fi/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/fi/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/fi/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/fi/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/fi/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/fi/LC_MESSAGES/kcmkwm_x11.mo share/locale/fi/LC_MESSAGES/kwin_x11.mo share/locale/fr/LC_MESSAGES/kcm_animations_x11.mo share/locale/fr/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/fr/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/fr/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/fr/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/fr/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/fr/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/fr/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/fr/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/fr/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/fr/LC_MESSAGES/kcmkwm_x11.mo share/locale/fr/LC_MESSAGES/kwin_x11.mo share/locale/fy/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/fy/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/fy/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/fy/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/fy/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/fy/LC_MESSAGES/kcmkwm_x11.mo share/locale/fy/LC_MESSAGES/kwin_x11.mo share/locale/ga/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ga/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ga/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ga/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ga/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ga/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ga/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ga/LC_MESSAGES/kcmkwm_x11.mo share/locale/ga/LC_MESSAGES/kwin_x11.mo share/locale/gl/LC_MESSAGES/kcm_animations_x11.mo share/locale/gl/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/gl/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/gl/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/gl/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/gl/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/gl/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/gl/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/gl/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/gl/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/gl/LC_MESSAGES/kcmkwm_x11.mo share/locale/gl/LC_MESSAGES/kwin_x11.mo share/locale/gu/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/gu/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/gu/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/gu/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/gu/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/gu/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/gu/LC_MESSAGES/kcmkwm_x11.mo share/locale/gu/LC_MESSAGES/kwin_x11.mo share/locale/he/LC_MESSAGES/kcm_animations_x11.mo share/locale/he/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/he/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/he/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/he/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/he/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/he/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/he/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/he/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/he/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/he/LC_MESSAGES/kcmkwm_x11.mo share/locale/he/LC_MESSAGES/kwin_x11.mo share/locale/hi/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/hi/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/hi/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/hi/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/hi/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/hi/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/hi/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/hi/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/hi/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/hi/LC_MESSAGES/kcmkwm_x11.mo share/locale/hi/LC_MESSAGES/kwin_x11.mo share/locale/hne/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/hne/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/hne/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/hne/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/hne/LC_MESSAGES/kcmkwm_x11.mo share/locale/hne/LC_MESSAGES/kwin_x11.mo share/locale/hr/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/hr/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/hr/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/hr/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/hr/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/hr/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/hr/LC_MESSAGES/kcmkwm_x11.mo share/locale/hr/LC_MESSAGES/kwin_x11.mo share/locale/hsb/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/hsb/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/hsb/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/hsb/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/hsb/LC_MESSAGES/kcmkwm_x11.mo share/locale/hsb/LC_MESSAGES/kwin_x11.mo share/locale/hu/LC_MESSAGES/kcm_animations_x11.mo share/locale/hu/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/hu/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/hu/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/hu/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/hu/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/hu/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/hu/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/hu/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/hu/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/hu/LC_MESSAGES/kcmkwm_x11.mo share/locale/hu/LC_MESSAGES/kwin_x11.mo share/locale/ia/LC_MESSAGES/kcm_animations_x11.mo share/locale/ia/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ia/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ia/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ia/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ia/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ia/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ia/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ia/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ia/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ia/LC_MESSAGES/kcmkwm_x11.mo share/locale/ia/LC_MESSAGES/kwin_x11.mo share/locale/id/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/id/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/id/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/id/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/id/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/id/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/id/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/id/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/id/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/id/LC_MESSAGES/kcmkwm_x11.mo share/locale/id/LC_MESSAGES/kwin_x11.mo share/locale/is/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/is/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/is/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/is/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/is/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/is/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/is/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/is/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/is/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/is/LC_MESSAGES/kcmkwm_x11.mo share/locale/is/LC_MESSAGES/kwin_x11.mo share/locale/it/LC_MESSAGES/kcm_animations_x11.mo share/locale/it/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/it/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/it/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/it/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/it/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/it/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/it/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/it/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/it/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/it/LC_MESSAGES/kcmkwm_x11.mo share/locale/it/LC_MESSAGES/kwin_x11.mo share/locale/ja/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ja/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ja/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ja/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ja/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ja/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ja/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ja/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ja/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ja/LC_MESSAGES/kcmkwm_x11.mo share/locale/ja/LC_MESSAGES/kwin_x11.mo share/locale/ka/LC_MESSAGES/kcm_animations_x11.mo share/locale/ka/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ka/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ka/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ka/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ka/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ka/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ka/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ka/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ka/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ka/LC_MESSAGES/kcmkwm_x11.mo share/locale/ka/LC_MESSAGES/kwin_x11.mo share/locale/kk/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/kk/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/kk/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/kk/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/kk/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/kk/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/kk/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/kk/LC_MESSAGES/kcmkwm_x11.mo share/locale/kk/LC_MESSAGES/kwin_x11.mo share/locale/km/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/km/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/km/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/km/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/km/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/km/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/km/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/km/LC_MESSAGES/kcmkwm_x11.mo share/locale/km/LC_MESSAGES/kwin_x11.mo share/locale/kn/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/kn/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/kn/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/kn/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/kn/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/kn/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/kn/LC_MESSAGES/kcmkwm_x11.mo share/locale/kn/LC_MESSAGES/kwin_x11.mo share/locale/ko/LC_MESSAGES/kcm_animations_x11.mo share/locale/ko/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ko/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ko/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ko/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ko/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ko/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ko/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ko/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ko/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ko/LC_MESSAGES/kcmkwm_x11.mo share/locale/ko/LC_MESSAGES/kwin_x11.mo share/locale/ku/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ku/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ku/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ku/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ku/LC_MESSAGES/kcmkwm_x11.mo share/locale/ku/LC_MESSAGES/kwin_x11.mo share/locale/lt/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/lt/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/lt/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/lt/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/lt/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/lt/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/lt/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/lt/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/lt/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/lt/LC_MESSAGES/kcmkwm_x11.mo share/locale/lt/LC_MESSAGES/kwin_x11.mo share/locale/lv/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/lv/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/lv/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/lv/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/lv/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/lv/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/lv/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/lv/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/lv/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/lv/LC_MESSAGES/kcmkwm_x11.mo share/locale/lv/LC_MESSAGES/kwin_x11.mo share/locale/mai/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/mai/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/mai/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/mai/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/mai/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/mai/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/mai/LC_MESSAGES/kcmkwm_x11.mo share/locale/mai/LC_MESSAGES/kwin_x11.mo share/locale/mk/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/mk/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/mk/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/mk/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/mk/LC_MESSAGES/kcmkwm_x11.mo share/locale/mk/LC_MESSAGES/kwin_x11.mo share/locale/ml/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ml/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ml/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ml/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ml/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ml/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ml/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ml/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ml/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ml/LC_MESSAGES/kcmkwm_x11.mo share/locale/ml/LC_MESSAGES/kwin_x11.mo share/locale/mr/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/mr/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/mr/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/mr/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/mr/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/mr/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/mr/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/mr/LC_MESSAGES/kcmkwm_x11.mo share/locale/mr/LC_MESSAGES/kwin_x11.mo share/locale/ms/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ms/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ms/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ms/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ms/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ms/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ms/LC_MESSAGES/kcmkwm_x11.mo share/locale/ms/LC_MESSAGES/kwin_x11.mo share/locale/nb/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/nb/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/nb/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/nb/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/nb/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/nb/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/nb/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/nb/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/nb/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/nb/LC_MESSAGES/kcmkwm_x11.mo share/locale/nb/LC_MESSAGES/kwin_x11.mo share/locale/nds/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/nds/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/nds/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/nds/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/nds/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/nds/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/nds/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/nds/LC_MESSAGES/kcmkwm_x11.mo share/locale/nds/LC_MESSAGES/kwin_x11.mo share/locale/ne/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ne/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ne/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ne/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ne/LC_MESSAGES/kcmkwm_x11.mo share/locale/ne/LC_MESSAGES/kwin_x11.mo share/locale/nl/LC_MESSAGES/kcm_animations_x11.mo share/locale/nl/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/nl/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/nl/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/nl/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/nl/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/nl/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/nl/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/nl/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/nl/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/nl/LC_MESSAGES/kcmkwm_x11.mo share/locale/nl/LC_MESSAGES/kwin_x11.mo share/locale/nn/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/nn/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/nn/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/nn/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/nn/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/nn/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/nn/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/nn/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/nn/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/nn/LC_MESSAGES/kcmkwm_x11.mo share/locale/nn/LC_MESSAGES/kwin_x11.mo share/locale/oc/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/oc/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/oc/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/oc/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/oc/LC_MESSAGES/kcmkwm_x11.mo share/locale/oc/LC_MESSAGES/kwin_x11.mo share/locale/or/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/or/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/or/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/or/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/or/LC_MESSAGES/kcmkwm_x11.mo share/locale/or/LC_MESSAGES/kwin_x11.mo share/locale/pa/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/pa/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/pa/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/pa/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/pa/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/pa/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/pa/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/pa/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/pa/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/pa/LC_MESSAGES/kcmkwm_x11.mo share/locale/pa/LC_MESSAGES/kwin_x11.mo share/locale/pl/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/pl/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/pl/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/pl/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/pl/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/pl/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/pl/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/pl/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/pl/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/pl/LC_MESSAGES/kcmkwm_x11.mo share/locale/pl/LC_MESSAGES/kwin_x11.mo share/locale/pt/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/pt/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/pt/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/pt/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/pt/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/pt/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/pt/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/pt/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/pt/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/pt/LC_MESSAGES/kcmkwm_x11.mo share/locale/pt/LC_MESSAGES/kwin_x11.mo +share/locale/pt_BR/LC_MESSAGES/kcm_animations_x11.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/pt_BR/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/pt_BR/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/pt_BR/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/pt_BR/LC_MESSAGES/kcmkwm_x11.mo share/locale/pt_BR/LC_MESSAGES/kwin_x11.mo share/locale/ro/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ro/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ro/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ro/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ro/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ro/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ro/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ro/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ro/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ro/LC_MESSAGES/kcmkwm_x11.mo share/locale/ro/LC_MESSAGES/kwin_x11.mo share/locale/ru/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ru/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ru/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ru/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ru/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ru/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ru/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ru/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ru/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ru/LC_MESSAGES/kcmkwm_x11.mo share/locale/ru/LC_MESSAGES/kwin_x11.mo share/locale/sa/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/sa/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/sa/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/sa/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/sa/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/sa/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/sa/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/sa/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/sa/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/sa/LC_MESSAGES/kcmkwm_x11.mo share/locale/sa/LC_MESSAGES/kwin_x11.mo share/locale/se/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/se/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/se/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/se/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/se/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/se/LC_MESSAGES/kcmkwm_x11.mo share/locale/se/LC_MESSAGES/kwin_x11.mo share/locale/si/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/si/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/si/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/si/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/si/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/si/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/si/LC_MESSAGES/kcmkwm_x11.mo share/locale/si/LC_MESSAGES/kwin_x11.mo share/locale/sk/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/sk/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/sk/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/sk/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/sk/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/sk/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/sk/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/sk/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/sk/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/sk/LC_MESSAGES/kcmkwm_x11.mo share/locale/sk/LC_MESSAGES/kwin_x11.mo share/locale/sl/LC_MESSAGES/kcm_animations_x11.mo share/locale/sl/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/sl/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/sl/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/sl/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/sl/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/sl/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/sl/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/sl/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/sl/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/sl/LC_MESSAGES/kcmkwm_x11.mo share/locale/sl/LC_MESSAGES/kwin_x11.mo share/locale/sq/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/sq/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/sq/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/sq/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/sq/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/sq/LC_MESSAGES/kcmkwm_x11.mo share/locale/sq/LC_MESSAGES/kwin_x11.mo share/locale/sr/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/sr/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/sr/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/sr/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/sr/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/sr/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/sr/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/sr/LC_MESSAGES/kcmkwm_x11.mo share/locale/sr/LC_MESSAGES/kwin_x11.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwm_x11.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin_x11.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwm_x11.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin_x11.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/sr@latin/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/sr@latin/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/sr@latin/LC_MESSAGES/kcmkwm_x11.mo share/locale/sr@latin/LC_MESSAGES/kwin_x11.mo share/locale/sv/LC_MESSAGES/kcm_animations_x11.mo share/locale/sv/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/sv/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/sv/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/sv/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/sv/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/sv/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/sv/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/sv/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/sv/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/sv/LC_MESSAGES/kcmkwm_x11.mo share/locale/sv/LC_MESSAGES/kwin_x11.mo share/locale/ta/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ta/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ta/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ta/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ta/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ta/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ta/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ta/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ta/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ta/LC_MESSAGES/kcmkwm_x11.mo share/locale/ta/LC_MESSAGES/kwin_x11.mo share/locale/te/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/te/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/te/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/te/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/te/LC_MESSAGES/kcmkwm_x11.mo share/locale/te/LC_MESSAGES/kwin_x11.mo share/locale/tg/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/tg/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/tg/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/tg/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/tg/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/tg/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/tg/LC_MESSAGES/kcmkwm_x11.mo share/locale/tg/LC_MESSAGES/kwin_x11.mo share/locale/th/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/th/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/th/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/th/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/th/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/th/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/th/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/th/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/th/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/th/LC_MESSAGES/kcmkwm_x11.mo share/locale/th/LC_MESSAGES/kwin_x11.mo share/locale/tok/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/tr/LC_MESSAGES/kcm_animations_x11.mo share/locale/tr/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/tr/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/tr/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/tr/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/tr/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/tr/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/tr/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/tr/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/tr/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/tr/LC_MESSAGES/kcmkwm_x11.mo share/locale/tr/LC_MESSAGES/kwin_x11.mo share/locale/ug/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ug/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ug/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ug/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ug/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ug/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ug/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ug/LC_MESSAGES/kcmkwm_x11.mo share/locale/ug/LC_MESSAGES/kwin_x11.mo share/locale/uk/LC_MESSAGES/kcm_animations_x11.mo share/locale/uk/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/uk/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/uk/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/uk/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/uk/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/uk/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/uk/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/uk/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/uk/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/uk/LC_MESSAGES/kcmkwm_x11.mo share/locale/uk/LC_MESSAGES/kwin_x11.mo share/locale/uz/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/uz/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/uz/LC_MESSAGES/kcmkwm_x11.mo share/locale/uz/LC_MESSAGES/kwin_x11.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkwm_x11.mo share/locale/uz@cyrillic/LC_MESSAGES/kwin_x11.mo share/locale/vi/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/vi/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/vi/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/vi/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/vi/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/vi/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/vi/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/vi/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/vi/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/vi/LC_MESSAGES/kcmkwm_x11.mo share/locale/vi/LC_MESSAGES/kwin_x11.mo share/locale/wa/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/wa/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/wa/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/wa/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/wa/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/wa/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/wa/LC_MESSAGES/kcmkwm_x11.mo share/locale/wa/LC_MESSAGES/kwin_x11.mo share/locale/xh/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/xh/LC_MESSAGES/kcmkwm_x11.mo share/locale/xh/LC_MESSAGES/kwin_x11.mo share/locale/zh_CN/LC_MESSAGES/kcm_animations_x11.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/zh_CN/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/zh_CN/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/zh_CN/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/zh_CN/LC_MESSAGES/kcmkwm_x11.mo share/locale/zh_CN/LC_MESSAGES/kwin_x11.mo share/locale/zh_TW/LC_MESSAGES/kcm_animations_x11.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/zh_TW/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/zh_TW/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/zh_TW/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/zh_TW/LC_MESSAGES/kcmkwm_x11.mo share/locale/zh_TW/LC_MESSAGES/kwin_x11.mo share/qlogging-categories6/org_kde_kwin_x11.categories diff --git a/x11-wm/plasma6-kwin/distinfo b/x11-wm/plasma6-kwin/distinfo index dbbc92fd47de..5e14347cd04d 100644 --- a/x11-wm/plasma6-kwin/distinfo +++ b/x11-wm/plasma6-kwin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010506 -SHA256 (KDE/plasma/6.4.0/kwin-6.4.0.tar.xz) = 0d3492317a719a645bf2893fcac21bb2979606baf3703610e556b5f7ad54de6a -SIZE (KDE/plasma/6.4.0/kwin-6.4.0.tar.xz) = 8760036 +TIMESTAMP = 1750789638 +SHA256 (KDE/plasma/6.4.1/kwin-6.4.1.tar.xz) = d4e4306c96cc2e8ba8630eac3234fbc085685b00abc5e5afc2c2c1c6c6fca4d4 +SIZE (KDE/plasma/6.4.1/kwin-6.4.1.tar.xz) = 8761128 diff --git a/x11-wm/plasma6-kwin/pkg-plist b/x11-wm/plasma6-kwin/pkg-plist index 7fa86e440be8..d0c57a961aa3 100644 --- a/x11-wm/plasma6-kwin/pkg-plist +++ b/x11-wm/plasma6-kwin/pkg-plist @@ -1,1724 +1,1725 @@ bin/kwin_wayland bin/kwin_wayland_wrapper include/kwin/activities.h include/kwin/appmenu.h include/kwin/atoms.h include/kwin/client_machine.h include/kwin/compositor.h include/kwin/config-kwin.h include/kwin/core/colorlut3d.h include/kwin/core/colorpipeline.h include/kwin/core/colorpipelinestage.h include/kwin/core/colorspace.h include/kwin/core/colortransformation.h include/kwin/core/drmdevice.h include/kwin/core/gbmgraphicsbufferallocator.h include/kwin/core/graphicsbuffer.h include/kwin/core/graphicsbufferallocator.h include/kwin/core/graphicsbufferview.h include/kwin/core/iccprofile.h include/kwin/core/inputbackend.h include/kwin/core/inputdevice.h include/kwin/core/output.h include/kwin/core/outputbackend.h include/kwin/core/outputconfiguration.h include/kwin/core/outputlayer.h include/kwin/core/pixelgrid.h include/kwin/core/renderbackend.h include/kwin/core/renderjournal.h include/kwin/core/renderlayer.h include/kwin/core/renderlayerdelegate.h include/kwin/core/renderloop.h include/kwin/core/renderloop_p.h include/kwin/core/rendertarget.h include/kwin/core/renderviewport.h include/kwin/core/session.h include/kwin/core/session_consolekit.h include/kwin/core/session_logind.h include/kwin/core/session_noop.h include/kwin/core/shmgraphicsbufferallocator.h include/kwin/cursor.h include/kwin/cursorsource.h include/kwin/dbusinterface.h include/kwin/debug_console.h include/kwin/effect/animationeffect.h include/kwin/effect/effect.h include/kwin/effect/effecthandler.h include/kwin/effect/effecttogglablestate.h include/kwin/effect/effectwindow.h include/kwin/effect/globals.h include/kwin/effect/offscreeneffect.h include/kwin/effect/offscreenquickview.h include/kwin/effect/quickeffect.h include/kwin/effect/timeline.h include/kwin/effect/xcb.h include/kwin/focuschain.h include/kwin/ftrace.h include/kwin/gestures.h include/kwin/globalshortcuts.h include/kwin/group.h include/kwin/idle_inhibition.h include/kwin/idledetector.h include/kwin/input.h include/kwin/input_event.h include/kwin/input_event_spy.h include/kwin/inputmethod.h include/kwin/inputpanelv1integration.h include/kwin/inputpanelv1window.h include/kwin/internalwindow.h include/kwin/keyboard_input.h include/kwin/keyboard_layout.h include/kwin/keyboard_layout_switching.h include/kwin/keyboard_repeat.h include/kwin/killwindow.h include/kwin/kscreenintegration.h include/kwin/kwin_export.h include/kwin/layershellv1integration.h include/kwin/layershellv1window.h include/kwin/lidswitchtracker.h include/kwin/main.h include/kwin/mousebuttons.h include/kwin/netinfo.h include/kwin/onscreennotification.h include/kwin/opengl/abstract_opengl_context_attribute_builder.h include/kwin/opengl/egl_context_attribute_builder.h include/kwin/opengl/eglcontext.h include/kwin/opengl/egldisplay.h include/kwin/opengl/eglimagetexture.h include/kwin/opengl/eglnativefence.h include/kwin/opengl/eglswapchain.h include/kwin/opengl/eglutils_p.h include/kwin/opengl/glframebuffer.h include/kwin/opengl/gllut.h include/kwin/opengl/gllut3D.h include/kwin/opengl/glplatform.h include/kwin/opengl/glrendertimequery.h include/kwin/opengl/glshader.h include/kwin/opengl/glshadermanager.h include/kwin/opengl/gltexture.h include/kwin/opengl/gltexture_p.h include/kwin/opengl/glutils.h include/kwin/opengl/glvertexbuffer.h include/kwin/options.h include/kwin/osd.h include/kwin/outline.h include/kwin/outputconfigurationstore.h include/kwin/placeholderoutput.h include/kwin/placement.h include/kwin/placementtracker.h include/kwin/plugin.h include/kwin/pluginmanager.h include/kwin/pointer_input.h include/kwin/rulebooksettings.h include/kwin/rules.h include/kwin/scene/cursordelegate_opengl.h include/kwin/scene/cursordelegate_qpainter.h include/kwin/scene/cursoritem.h include/kwin/scene/cursorscene.h include/kwin/scene/decorationitem.h include/kwin/scene/dndiconitem.h include/kwin/scene/imageitem.h include/kwin/scene/item.h include/kwin/scene/itemgeometry.h include/kwin/scene/itemrenderer.h include/kwin/scene/itemrenderer_opengl.h include/kwin/scene/itemrenderer_qpainter.h include/kwin/scene/rootitem.h include/kwin/scene/scene.h include/kwin/scene/shadowitem.h include/kwin/scene/surfaceitem.h include/kwin/scene/surfaceitem_internal.h include/kwin/scene/surfaceitem_wayland.h include/kwin/scene/windowitem.h include/kwin/scene/workspacescene.h include/kwin/screenedge.h include/kwin/screenlockerwatcher.h include/kwin/shadow.h include/kwin/sm.h include/kwin/tablet_input.h include/kwin/tabletmodemanager.h include/kwin/touch_input.h include/kwin/useractions.h include/kwin/utils/c_ptr.h include/kwin/utils/common.h include/kwin/utils/cursortheme.h include/kwin/utils/damagejournal.h include/kwin/utils/drm_format_helper.h include/kwin/utils/edid.h include/kwin/utils/executable_path.h include/kwin/utils/filedescriptor.h include/kwin/utils/kernel.h include/kwin/utils/memorymap.h include/kwin/utils/orientationsensor.h include/kwin/utils/ramfile.h include/kwin/utils/realtime.h include/kwin/utils/resource.h include/kwin/utils/serviceutils.h include/kwin/utils/softwarevsyncmonitor.h include/kwin/utils/subsurfacemonitor.h include/kwin/utils/udev.h include/kwin/utils/version.h include/kwin/utils/vsyncmonitor.h include/kwin/utils/xcbutils.h include/kwin/virtualdesktops.h include/kwin/virtualdesktopsdbustypes.h include/kwin/virtualkeyboard_dbus.h include/kwin/wayland/alphamodifier_v1.h include/kwin/wayland/appmenu.h include/kwin/wayland/blur.h include/kwin/wayland/clientconnection.h include/kwin/wayland/colormanagement_v1.h include/kwin/wayland/colorrepresentation_v1.h include/kwin/wayland/compositor.h include/kwin/wayland/contenttype_v1.h include/kwin/wayland/contrast.h include/kwin/wayland/cursorshape_v1.h include/kwin/wayland/datacontroldevice_v1.h include/kwin/wayland/datacontroldevicemanager_v1.h include/kwin/wayland/datacontroloffer_v1.h include/kwin/wayland/datacontrolsource_v1.h include/kwin/wayland/datadevice.h include/kwin/wayland/datadevicemanager.h include/kwin/wayland/dataoffer.h include/kwin/wayland/datasource.h include/kwin/wayland/display.h include/kwin/wayland/dpms.h include/kwin/wayland/drmlease_v1.h include/kwin/wayland/externalbrightness_v1.h include/kwin/wayland/fifo_v1.h include/kwin/wayland/fractionalscale_v1.h include/kwin/wayland/frog_colormanagement_v1.h include/kwin/wayland/idle.h include/kwin/wayland/idleinhibit_v1.h include/kwin/wayland/idlenotify_v1.h include/kwin/wayland/inputmethod_v1.h include/kwin/wayland/keyboard.h include/kwin/wayland/keyboard_shortcuts_inhibit_v1.h include/kwin/wayland/keystate.h include/kwin/wayland/layershell_v1.h include/kwin/wayland/linux_drm_syncobj_v1.h include/kwin/wayland/lockscreen_overlay_v1.h include/kwin/wayland/output.h include/kwin/wayland/output_order_v1.h include/kwin/wayland/outputdevice_v2.h include/kwin/wayland/outputmanagement_v2.h include/kwin/wayland/plasmashell.h include/kwin/wayland/plasmavirtualdesktop.h include/kwin/wayland/plasmawindowmanagement.h include/kwin/wayland/pointer.h include/kwin/wayland/pointerconstraints_v1.h include/kwin/wayland/pointergestures_v1.h include/kwin/wayland/presentationtime.h include/kwin/wayland/primaryselectiondevice_v1.h include/kwin/wayland/primaryselectiondevicemanager_v1.h include/kwin/wayland/primaryselectionoffer_v1.h include/kwin/wayland/primaryselectionsource_v1.h include/kwin/wayland/quirks.h include/kwin/wayland/qwayland-server-alpha-modifier-v1.h include/kwin/wayland/qwayland-server-color-management-v1.h include/kwin/wayland/qwayland-server-color-representation-v1.h include/kwin/wayland/qwayland-server-content-type-v1.h include/kwin/wayland/qwayland-server-fifo-v1.h include/kwin/wayland/qwayland-server-frog-color-management-v1.h include/kwin/wayland/qwayland-server-kde-external-brightness-v1.h include/kwin/wayland/qwayland-server-linux-drm-syncobj-v1.h include/kwin/wayland/qwayland-server-presentation-time.h include/kwin/wayland/qwayland-server-single-pixel-buffer-v1.h include/kwin/wayland/qwayland-server-xdg-toplevel-tag-v1.h include/kwin/wayland/relativepointer_v1.h include/kwin/wayland/screencast_v1.h include/kwin/wayland/screenedge_v1.h include/kwin/wayland/seat.h include/kwin/wayland/securitycontext_v1.h include/kwin/wayland/server_decoration.h include/kwin/wayland/server_decoration_palette.h include/kwin/wayland/shadow.h include/kwin/wayland/singlepixelbuffer.h include/kwin/wayland/slide.h include/kwin/wayland/subcompositor.h include/kwin/wayland/surface.h include/kwin/wayland/tablet_v2.h include/kwin/wayland/tearingcontrol_v1.h include/kwin/wayland/textinput_v1.h include/kwin/wayland/textinput_v2.h include/kwin/wayland/textinput_v3.h include/kwin/wayland/touch.h include/kwin/wayland/viewporter.h include/kwin/wayland/wayland-alpha-modifier-v1-server-protocol.h include/kwin/wayland/wayland-color-management-v1-server-protocol.h include/kwin/wayland/wayland-color-representation-v1-server-protocol.h include/kwin/wayland/wayland-content-type-v1-server-protocol.h include/kwin/wayland/wayland-fifo-v1-server-protocol.h include/kwin/wayland/wayland-frog-color-management-v1-server-protocol.h include/kwin/wayland/wayland-kde-external-brightness-v1-server-protocol.h include/kwin/wayland/wayland-linux-drm-syncobj-v1-server-protocol.h include/kwin/wayland/wayland-presentation-time-server-protocol.h include/kwin/wayland/wayland-single-pixel-buffer-v1-server-protocol.h include/kwin/wayland/wayland-xdg-toplevel-tag-v1-server-protocol.h include/kwin/wayland/xdgactivation_v1.h include/kwin/wayland/xdgdecoration_v1.h include/kwin/wayland/xdgdialog_v1.h include/kwin/wayland/xdgforeign_v2.h include/kwin/wayland/xdgoutput_v1.h include/kwin/wayland/xdgsession_v1.h include/kwin/wayland/xdgshell.h include/kwin/wayland/xdgsystembell_v1.h include/kwin/wayland/xdgtoplevelicon_v1.h include/kwin/wayland/xdgtopleveltag_v1.h include/kwin/wayland/xwaylandkeyboardgrab_v1.h include/kwin/wayland/xwaylandshell_v1.h include/kwin/wayland_server.h include/kwin/waylandshellintegration.h include/kwin/waylandwindow.h include/kwin/window.h include/kwin/workspace.h include/kwin/x11eventfilter.h include/kwin/x11window.h include/kwin/xdgactivationv1.h include/kwin/xdgshellintegration.h include/kwin/xdgshellwindow.h include/kwin/xkb.h lib/cmake/KWin/FindLibdrm.cmake lib/cmake/KWin/KWinConfig.cmake lib/cmake/KWin/KWinConfigVersion.cmake lib/cmake/KWin/KWinTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KWin/KWinTargets.cmake lib/cmake/KWinDBusInterface/KWinDBusInterfaceConfig.cmake lib/kconf_update_bin/kwin-6.0-delete-desktop-switching-shortcuts lib/kconf_update_bin/kwin-6.0-remove-breeze-tabbox-default lib/kconf_update_bin/kwin-6.0-reset-active-mouse-screen lib/kconf_update_bin/kwin-6.1-remove-gridview-expose-shortcuts lib/kconf_update_bin/kwin5_update_default_rules lib/libexec/kwin-applywindowdecoration lib/libexec/kwin-tabbox-preview lib/libexec/kwin_killer_helper lib/libkcmkwincommon.so.6 lib/libkcmkwincommon.so.%%KDE_PLASMA_VERSION%% lib/libkwin.so lib/libkwin.so.6 lib/libkwin.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_aurorae.so %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_decoration.so %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_effect.so %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_scripts.so %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_windowswitcher.so %%QT_PLUGINDIR%%/kwin/effects/configs/kcm_kwin4_genericscripted.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_blur_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_diminactive_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_glide_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_hidecursor_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_invert_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_magiclamp_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_magnifier_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_mouseclick_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_mousemark_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_overview_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_showpaint_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_slide_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_thumbnailaside_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_tileseditor_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_trackmouse_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_windowview_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_wobblywindows_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_zoom_config.so %%QT_PLUGINDIR%%/kwin/plugins/BounceKeysPlugin.so %%QT_PLUGINDIR%%/kwin/plugins/KeyNotificationPlugin.so %%QT_PLUGINDIR%%/kwin/plugins/MouseKeysPlugin.so %%QT_PLUGINDIR%%/kwin/plugins/StickyKeysPlugin.so %%QT_PLUGINDIR%%/kwin/plugins/TouchpadShortcutsPlugin.so %%QT_PLUGINDIR%%/kwin/plugins/buttonsrebind.so %%EI%%%%QT_PLUGINDIR%%/kwin/plugins/eis.so %%QT_PLUGINDIR%%/kwin/plugins/krunnerintegration.so %%QT_PLUGINDIR%%/kwin/plugins/nightlight.so %%QT_PLUGINDIR%%/kwin/plugins/screencast.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_animations.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwin_effects.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwin_scripts.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwin_virtualdesktops.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwindecoration.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwinrules.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwinxwayland.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_virtualkeyboard.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwinoptions.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwinscreenedges.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwintabbox.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwintouchscreen.so %%QT_QMLDIR%%/org/kde/kwin/private/effects/WindowHeap.qml %%QT_QMLDIR%%/org/kde/kwin/private/effects/WindowHeapDelegate.qml %%QT_QMLDIR%%/org/kde/kwin/private/effects/effectsplugin.qmltypes %%QT_QMLDIR%%/org/kde/kwin/private/effects/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kwin/private/effects/libeffectsplugin.so %%QT_QMLDIR%%/org/kde/kwin/private/effects/qmldir %%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/kdecorationprivatedeclarative.qmltypes %%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/libkdecorationprivatedeclarative.so %%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/qmldir @comment lib/systemd/user/plasma-kwin_wayland.service share/applications/kcm_animations.desktop share/applications/kcm_kwin_effects.desktop share/applications/kcm_kwin_scripts.desktop share/applications/kcm_kwin_virtualdesktops.desktop share/applications/kcm_kwindecoration.desktop share/applications/kcm_kwinoptions.desktop share/applications/kcm_kwinrules.desktop share/applications/kcm_kwintabbox.desktop share/applications/kcm_kwinxwayland.desktop share/applications/kcm_virtualkeyboard.desktop share/applications/org.kde.kwin.killer.desktop share/config.kcfg/kwin.kcfg share/config.kcfg/kwindecorationsettings.kcfg share/config.kcfg/nightlightsettings.kcfg share/config.kcfg/virtualdesktopssettings.kcfg share/dbus-1/interfaces/org.kde.KWin.NightLight.xml share/dbus-1/interfaces/org.kde.KWin.Plugins.xml share/dbus-1/interfaces/org.kde.KWin.TabletModeManager.xml share/dbus-1/interfaces/org.kde.KWin.VirtualDesktopManager.xml share/dbus-1/interfaces/org.kde.KWin.xml share/dbus-1/interfaces/org.kde.kwin.Compositing.xml share/dbus-1/interfaces/org.kde.kwin.Effects.xml share/dbus-1/interfaces/org.kde.kwin.InputDevice.xml share/dbus-1/interfaces/org.kde.kwin.VirtualKeyboard.xml share/doc/HTML/ca/kcontrol/desktop/index.cache.bz2 share/doc/HTML/ca/kcontrol/desktop/index.docbook share/doc/HTML/ca/kcontrol/kwindecoration/button.png share/doc/HTML/ca/kcontrol/kwindecoration/decoration.png share/doc/HTML/ca/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwindecoration/index.docbook share/doc/HTML/ca/kcontrol/kwindecoration/main.png share/doc/HTML/ca/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwineffects/index.docbook share/doc/HTML/ca/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/ca/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwintabbox/index.docbook share/doc/HTML/ca/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/ca/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/ca/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/ca/kcontrol/windowbehaviour/index.docbook share/doc/HTML/ca/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/ca/kcontrol/windowspecific/index.docbook share/doc/HTML/de/kcontrol/desktop/index.cache.bz2 share/doc/HTML/de/kcontrol/desktop/index.docbook share/doc/HTML/de/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/de/kcontrol/kwindecoration/index.docbook share/doc/HTML/de/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/de/kcontrol/kwineffects/index.docbook share/doc/HTML/de/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/de/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/de/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/de/kcontrol/kwintabbox/index.docbook share/doc/HTML/de/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/de/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/de/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/de/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/de/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/de/kcontrol/windowbehaviour/index.docbook share/doc/HTML/de/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/de/kcontrol/windowspecific/index.docbook share/doc/HTML/en/kcontrol/desktop/index.cache.bz2 share/doc/HTML/en/kcontrol/desktop/index.docbook share/doc/HTML/en/kcontrol/kwindecoration/button.png share/doc/HTML/en/kcontrol/kwindecoration/configure.png share/doc/HTML/en/kcontrol/kwindecoration/decoration.png share/doc/HTML/en/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/en/kcontrol/kwindecoration/index.docbook share/doc/HTML/en/kcontrol/kwindecoration/main.png share/doc/HTML/en/kcontrol/kwineffects/configure-effects.png share/doc/HTML/en/kcontrol/kwineffects/dialog-information.png share/doc/HTML/en/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/en/kcontrol/kwineffects/index.docbook share/doc/HTML/en/kcontrol/kwineffects/video.png share/doc/HTML/en/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/en/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/en/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/en/kcontrol/kwintabbox/index.docbook share/doc/HTML/en/kcontrol/kwintabbox/taskswitcher.png share/doc/HTML/en/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/en/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/en/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/en/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/en/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/en/kcontrol/windowbehaviour/index.docbook share/doc/HTML/en/kcontrol/windowspecific/Face-smile.png share/doc/HTML/en/kcontrol/windowspecific/akgregator-info.png share/doc/HTML/en/kcontrol/windowspecific/akregator-attributes.png share/doc/HTML/en/kcontrol/windowspecific/akregator-fav.png share/doc/HTML/en/kcontrol/windowspecific/config-win-behavior.png share/doc/HTML/en/kcontrol/windowspecific/emacs-attribute.png share/doc/HTML/en/kcontrol/windowspecific/emacs-info.png share/doc/HTML/en/kcontrol/windowspecific/focus-stealing-pop2top-attribute.png share/doc/HTML/en/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/en/kcontrol/windowspecific/index.docbook share/doc/HTML/en/kcontrol/windowspecific/knotes-attribute.png share/doc/HTML/en/kcontrol/windowspecific/knotes-info.png share/doc/HTML/en/kcontrol/windowspecific/kopete-attribute-2.png share/doc/HTML/en/kcontrol/windowspecific/kopete-chat-attribute.png share/doc/HTML/en/kcontrol/windowspecific/kopete-chat-info.png share/doc/HTML/en/kcontrol/windowspecific/kopete-info.png share/doc/HTML/en/kcontrol/windowspecific/kwin-detect-window.png share/doc/HTML/en/kcontrol/windowspecific/kwin-kopete-rules.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rule-editor.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rules-main-n-akregator.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rules-main.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rules-ordering.png share/doc/HTML/en/kcontrol/windowspecific/kwin-window-attributes.png share/doc/HTML/en/kcontrol/windowspecific/kwin-window-matching.png share/doc/HTML/en/kcontrol/windowspecific/pager-4-desktops.png share/doc/HTML/en/kcontrol/windowspecific/tbird-compose-attribute.png share/doc/HTML/en/kcontrol/windowspecific/tbird-compose-info.png share/doc/HTML/en/kcontrol/windowspecific/tbird-main-attribute.png share/doc/HTML/en/kcontrol/windowspecific/tbird-main-info.png share/doc/HTML/en/kcontrol/windowspecific/tbird-reminder-attribute-2.png share/doc/HTML/en/kcontrol/windowspecific/tbird-reminder-info.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-emacs.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-init.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-knotes.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-kopete-chat.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-kopete.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-ready-akregator.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-tbird-compose.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-tbird-main.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-tbird-reminder.png share/doc/HTML/es/kcontrol/desktop/index.cache.bz2 share/doc/HTML/es/kcontrol/desktop/index.docbook share/doc/HTML/es/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/es/kcontrol/kwindecoration/index.docbook share/doc/HTML/es/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/es/kcontrol/kwineffects/index.docbook share/doc/HTML/es/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/es/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/es/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/es/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/es/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/es/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/fr/kcontrol/desktop/index.cache.bz2 share/doc/HTML/fr/kcontrol/desktop/index.docbook share/doc/HTML/fr/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/fr/kcontrol/kwindecoration/index.docbook share/doc/HTML/fr/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/fr/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/fr/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/fr/kcontrol/kwintabbox/index.docbook share/doc/HTML/fr/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/fr/kcontrol/windowspecific/index.docbook share/doc/HTML/id/kcontrol/desktop/index.cache.bz2 share/doc/HTML/id/kcontrol/desktop/index.docbook share/doc/HTML/id/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/id/kcontrol/kwindecoration/index.docbook share/doc/HTML/id/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/id/kcontrol/kwineffects/index.docbook share/doc/HTML/id/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/id/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/id/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/id/kcontrol/kwintabbox/index.docbook share/doc/HTML/id/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/id/kcontrol/windowbehaviour/index.docbook share/doc/HTML/id/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/id/kcontrol/windowspecific/index.docbook share/doc/HTML/it/kcontrol/desktop/index.cache.bz2 share/doc/HTML/it/kcontrol/desktop/index.docbook share/doc/HTML/it/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/it/kcontrol/kwindecoration/index.docbook share/doc/HTML/it/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/it/kcontrol/kwineffects/index.docbook share/doc/HTML/it/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/it/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/it/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/it/kcontrol/kwintabbox/index.docbook share/doc/HTML/it/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/it/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/it/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/it/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/it/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/it/kcontrol/windowbehaviour/index.docbook share/doc/HTML/it/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/it/kcontrol/windowspecific/index.docbook share/doc/HTML/nl/kcontrol/desktop/index.cache.bz2 share/doc/HTML/nl/kcontrol/desktop/index.docbook share/doc/HTML/nl/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwindecoration/index.docbook share/doc/HTML/nl/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwineffects/index.docbook share/doc/HTML/nl/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/nl/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwintabbox/index.docbook share/doc/HTML/nl/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/nl/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/nl/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/nl/kcontrol/windowbehaviour/index.docbook share/doc/HTML/nl/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/nl/kcontrol/windowspecific/index.docbook share/doc/HTML/pt/kcontrol/desktop/index.cache.bz2 share/doc/HTML/pt/kcontrol/desktop/index.docbook share/doc/HTML/pt/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwindecoration/index.docbook share/doc/HTML/pt/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwineffects/index.docbook share/doc/HTML/pt/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/pt/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwintabbox/index.docbook share/doc/HTML/pt/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/pt/kcontrol/windowbehaviour/index.docbook share/doc/HTML/pt/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/pt/kcontrol/windowspecific/index.docbook share/doc/HTML/pt_BR/kcontrol/desktop/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/desktop/index.docbook share/doc/HTML/pt_BR/kcontrol/kwindecoration/configure.png share/doc/HTML/pt_BR/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwindecoration/index.docbook share/doc/HTML/pt_BR/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/pt_BR/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwintabbox/index.docbook share/doc/HTML/pt_BR/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/windowbehaviour/index.docbook share/doc/HTML/pt_BR/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/windowspecific/index.docbook share/doc/HTML/ru/kcontrol/desktop/index.cache.bz2 share/doc/HTML/ru/kcontrol/desktop/index.docbook share/doc/HTML/ru/kcontrol/kwindecoration/button.png share/doc/HTML/ru/kcontrol/kwindecoration/configure.png share/doc/HTML/ru/kcontrol/kwindecoration/decoration.png share/doc/HTML/ru/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwindecoration/index.docbook share/doc/HTML/ru/kcontrol/kwindecoration/main.png share/doc/HTML/ru/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwineffects/index.docbook share/doc/HTML/ru/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/ru/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwintabbox/index.docbook share/doc/HTML/ru/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/ru/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/ru/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/ru/kcontrol/windowbehaviour/index.docbook share/doc/HTML/ru/kcontrol/windowspecific/akgregator-info.png share/doc/HTML/ru/kcontrol/windowspecific/akregator-attributes.png share/doc/HTML/ru/kcontrol/windowspecific/akregator-fav.png share/doc/HTML/ru/kcontrol/windowspecific/config-win-behavior.png share/doc/HTML/ru/kcontrol/windowspecific/emacs-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/emacs-info.png share/doc/HTML/ru/kcontrol/windowspecific/focus-stealing-pop2top-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/ru/kcontrol/windowspecific/index.docbook share/doc/HTML/ru/kcontrol/windowspecific/knotes-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/knotes-info.png share/doc/HTML/ru/kcontrol/windowspecific/kopete-attribute-2.png share/doc/HTML/ru/kcontrol/windowspecific/kopete-chat-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/kopete-chat-info.png share/doc/HTML/ru/kcontrol/windowspecific/kopete-info.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-detect-window.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-kopete-rules.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-rule-editor.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-rules-main-n-akregator.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-rules-main.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-rules-ordering.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-window-attributes.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-window-matching.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-compose-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-compose-info.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-main-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-main-info.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-reminder-attribute-2.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-reminder-info.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-emacs.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-init.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-knotes.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-kopete-chat.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-kopete.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-ready-akregator.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-tbird-compose.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-tbird-main.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-tbird-reminder.png share/doc/HTML/sl/kcontrol/desktop/index.cache.bz2 share/doc/HTML/sl/kcontrol/desktop/index.docbook share/doc/HTML/sl/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/sl/kcontrol/kwindecoration/index.docbook share/doc/HTML/sl/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/sl/kcontrol/kwineffects/index.docbook share/doc/HTML/sl/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/sl/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/sl/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/sl/kcontrol/kwintabbox/index.docbook share/doc/HTML/sl/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/sl/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/sl/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/sl/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/sl/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/sl/kcontrol/windowbehaviour/index.docbook share/doc/HTML/sl/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/sl/kcontrol/windowspecific/index.docbook share/doc/HTML/sr/kcontrol/desktop/index.cache.bz2 share/doc/HTML/sr/kcontrol/desktop/index.docbook share/doc/HTML/sr@latin/kcontrol/desktop/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/desktop/index.docbook share/doc/HTML/sv/kcontrol/desktop/index.cache.bz2 share/doc/HTML/sv/kcontrol/desktop/index.docbook share/doc/HTML/sv/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwindecoration/index.docbook share/doc/HTML/sv/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwineffects/index.docbook share/doc/HTML/sv/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/sv/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwintabbox/index.docbook share/doc/HTML/sv/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/sv/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/sv/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/sv/kcontrol/windowbehaviour/index.docbook share/doc/HTML/sv/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/sv/kcontrol/windowspecific/index.docbook share/doc/HTML/tr/kcontrol/desktop/index.cache.bz2 share/doc/HTML/tr/kcontrol/desktop/index.docbook share/doc/HTML/tr/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/tr/kcontrol/kwindecoration/index.docbook share/doc/HTML/tr/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/tr/kcontrol/kwineffects/index.docbook share/doc/HTML/tr/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/tr/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/tr/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/tr/kcontrol/kwintabbox/index.docbook share/doc/HTML/tr/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/tr/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/tr/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/tr/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/tr/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/tr/kcontrol/windowbehaviour/index.docbook share/doc/HTML/tr/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/tr/kcontrol/windowspecific/index.docbook share/doc/HTML/uk/kcontrol/desktop/index.cache.bz2 share/doc/HTML/uk/kcontrol/desktop/index.docbook share/doc/HTML/uk/kcontrol/kwindecoration/button.png share/doc/HTML/uk/kcontrol/kwindecoration/decoration.png share/doc/HTML/uk/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwindecoration/index.docbook share/doc/HTML/uk/kcontrol/kwindecoration/main.png share/doc/HTML/uk/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwineffects/index.docbook share/doc/HTML/uk/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/uk/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwintabbox/index.docbook share/doc/HTML/uk/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/uk/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/uk/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/uk/kcontrol/windowbehaviour/index.docbook share/doc/HTML/uk/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/uk/kcontrol/windowspecific/index.docbook share/icons/hicolor/16x16/apps/kwin.png share/icons/hicolor/32x32/apps/kwin.png share/icons/hicolor/48x48/apps/kwin.png share/icons/hicolor/scalable/apps/kwin.svgz share/kconf_update/kwin.upd share/knotifications6/kwin.notifyrc share/knsrcfiles/kwineffect.knsrc share/knsrcfiles/kwinscripts.knsrc share/knsrcfiles/kwinswitcher.knsrc share/knsrcfiles/window-decorations.knsrc share/krunner/dbusplugins/kwin-runner-windows.desktop %%DATADIR%%-wayland/builtin-effects/blendchanges.json %%DATADIR%%-wayland/builtin-effects/blur.json %%DATADIR%%-wayland/builtin-effects/colorblindnesscorrection.json %%DATADIR%%-wayland/builtin-effects/colorpicker.json %%DATADIR%%-wayland/builtin-effects/contrast.json %%DATADIR%%-wayland/builtin-effects/diminactive.json %%DATADIR%%-wayland/builtin-effects/fallapart.json %%DATADIR%%-wayland/builtin-effects/glide.json %%DATADIR%%-wayland/builtin-effects/hidecursor.json %%DATADIR%%-wayland/builtin-effects/highlightwindow.json %%DATADIR%%-wayland/builtin-effects/invert.json %%DATADIR%%-wayland/builtin-effects/kscreen.json %%DATADIR%%-wayland/builtin-effects/magiclamp.json %%DATADIR%%-wayland/builtin-effects/magnifier.json %%DATADIR%%-wayland/builtin-effects/mouseclick.json %%DATADIR%%-wayland/builtin-effects/mousemark.json %%DATADIR%%-wayland/builtin-effects/outputlocator.json %%DATADIR%%-wayland/builtin-effects/overview.json %%DATADIR%%-wayland/builtin-effects/screenedge.json %%DATADIR%%-wayland/builtin-effects/screenshot.json %%DATADIR%%-wayland/builtin-effects/screentransform.json %%DATADIR%%-wayland/builtin-effects/shakecursor.json %%DATADIR%%-wayland/builtin-effects/sheet.json %%DATADIR%%-wayland/builtin-effects/showcompositing.json %%DATADIR%%-wayland/builtin-effects/showfps.json %%DATADIR%%-wayland/builtin-effects/showpaint.json %%DATADIR%%-wayland/builtin-effects/slide.json %%DATADIR%%-wayland/builtin-effects/slideback.json %%DATADIR%%-wayland/builtin-effects/slidingpopups.json %%DATADIR%%-wayland/builtin-effects/startupfeedback.json %%DATADIR%%-wayland/builtin-effects/systembell.json %%DATADIR%%-wayland/builtin-effects/thumbnailaside.json %%DATADIR%%-wayland/builtin-effects/tileseditor.json %%DATADIR%%-wayland/builtin-effects/touchpoints.json %%DATADIR%%-wayland/builtin-effects/trackmouse.json %%DATADIR%%-wayland/builtin-effects/windowview.json %%DATADIR%%-wayland/builtin-effects/wobblywindows.json %%DATADIR%%-wayland/builtin-effects/zoom.json %%DATADIR%%-wayland/effects/dialogparent/contents/code/main.js %%DATADIR%%-wayland/effects/dialogparent/metadata.json %%DATADIR%%-wayland/effects/dimscreen/contents/code/main.js %%DATADIR%%-wayland/effects/dimscreen/metadata.json %%DATADIR%%-wayland/effects/eyeonscreen/contents/code/main.js %%DATADIR%%-wayland/effects/eyeonscreen/metadata.json %%DATADIR%%-wayland/effects/fade/contents/code/main.js %%DATADIR%%-wayland/effects/fade/contents/config/main.xml %%DATADIR%%-wayland/effects/fade/metadata.json %%DATADIR%%-wayland/effects/fadedesktop/contents/code/main.js %%DATADIR%%-wayland/effects/fadedesktop/contents/config/main.xml %%DATADIR%%-wayland/effects/fadedesktop/contents/ui/config.ui %%DATADIR%%-wayland/effects/fadedesktop/metadata.json %%DATADIR%%-wayland/effects/fadingpopups/contents/code/main.js %%DATADIR%%-wayland/effects/fadingpopups/metadata.json %%DATADIR%%-wayland/effects/frozenapp/contents/code/main.js %%DATADIR%%-wayland/effects/frozenapp/metadata.json %%DATADIR%%-wayland/effects/fullscreen/contents/code/main.js %%DATADIR%%-wayland/effects/fullscreen/metadata.json %%DATADIR%%-wayland/effects/login/contents/code/main.js %%DATADIR%%-wayland/effects/login/contents/config/main.xml %%DATADIR%%-wayland/effects/login/contents/ui/config.ui %%DATADIR%%-wayland/effects/login/metadata.json %%DATADIR%%-wayland/effects/logout/contents/code/main.js %%DATADIR%%-wayland/effects/logout/metadata.json %%DATADIR%%-wayland/effects/maximize/contents/code/main.js %%DATADIR%%-wayland/effects/maximize/metadata.json %%DATADIR%%-wayland/effects/outputlocator/qml/OutputLabel.qml %%DATADIR%%-wayland/effects/scale/contents/code/main.js %%DATADIR%%-wayland/effects/scale/contents/config/main.xml %%DATADIR%%-wayland/effects/scale/contents/ui/config.ui %%DATADIR%%-wayland/effects/scale/metadata.json %%DATADIR%%-wayland/effects/sessionquit/contents/code/main.js %%DATADIR%%-wayland/effects/sessionquit/metadata.json %%DATADIR%%-wayland/effects/showcompositing/qml/main.qml %%DATADIR%%-wayland/effects/showfps/qml/main-fallback.qml %%DATADIR%%-wayland/effects/showfps/qml/main.qml %%DATADIR%%-wayland/effects/squash/contents/code/main.js %%DATADIR%%-wayland/effects/squash/metadata.json %%DATADIR%%-wayland/effects/tileseditor/qml/ResizeCorner.qml %%DATADIR%%-wayland/effects/tileseditor/qml/ResizeHandle.qml %%DATADIR%%-wayland/effects/tileseditor/qml/TileDelegate.qml %%DATADIR%%-wayland/effects/tileseditor/qml/layouts.svg %%DATADIR%%-wayland/effects/tileseditor/qml/main.qml %%DATADIR%%-wayland/effects/translucency/contents/code/main.js %%DATADIR%%-wayland/effects/translucency/contents/config/main.xml %%DATADIR%%-wayland/effects/translucency/contents/ui/config.ui %%DATADIR%%-wayland/effects/translucency/metadata.json %%DATADIR%%-wayland/effects/windowaperture/contents/code/main.js %%DATADIR%%-wayland/effects/windowaperture/metadata.json %%DATADIR%%-wayland/effects/windowview/qml/main.qml %%DATADIR%%-wayland/frames/plasma/frame_none.qml %%DATADIR%%-wayland/frames/plasma/frame_styled.qml %%DATADIR%%-wayland/frames/plasma/frame_unstyled.qml %%DATADIR%%-wayland/onscreennotification/plasma/dummydata/osd.qml %%DATADIR%%-wayland/onscreennotification/plasma/main.qml %%DATADIR%%-wayland/outline/plasma/outline.qml %%DATADIR%%-wayland/scripts/desktopchangeosd/contents/ui/main.qml %%DATADIR%%-wayland/scripts/desktopchangeosd/contents/ui/osd.qml %%DATADIR%%-wayland/scripts/desktopchangeosd/metadata.json %%DATADIR%%-wayland/scripts/minimizeall/contents/code/main.js %%DATADIR%%-wayland/scripts/minimizeall/metadata.json %%DATADIR%%-wayland/scripts/synchronizeskipswitcher/contents/code/main.js %%DATADIR%%-wayland/scripts/synchronizeskipswitcher/metadata.json %%DATADIR%%-wayland/scripts/videowall/contents/code/main.js %%DATADIR%%-wayland/scripts/videowall/contents/config/main.xml %%DATADIR%%-wayland/scripts/videowall/contents/ui/config.ui %%DATADIR%%-wayland/scripts/videowall/metadata.json %%DATADIR%%-wayland/tabbox/thumbnail_grid/contents/ui/main.qml %%DATADIR%%-wayland/tabbox/thumbnail_grid/metadata.json %%DATADIR%%-wayland/tm_inner.png %%DATADIR%%-wayland/tm_outer.png share/locale/af/LC_MESSAGES/kcm_kwindecoration.mo share/locale/af/LC_MESSAGES/kcm_kwinrules.mo share/locale/af/LC_MESSAGES/kcmkwm.mo share/locale/af/LC_MESSAGES/kwin.mo share/locale/ar/LC_MESSAGES/kcm_animations.mo share/locale/ar/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ar/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ar/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ar/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ar/LC_MESSAGES/kcm_kwinrules.mo share/locale/ar/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ar/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ar/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ar/LC_MESSAGES/kcmkwincommon.mo share/locale/ar/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ar/LC_MESSAGES/kcmkwm.mo share/locale/ar/LC_MESSAGES/kwin.mo share/locale/as/LC_MESSAGES/kwin.mo share/locale/ast/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ast/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ast/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ast/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ast/LC_MESSAGES/kcm_kwinrules.mo share/locale/ast/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ast/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ast/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ast/LC_MESSAGES/kcmkwincommon.mo share/locale/ast/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ast/LC_MESSAGES/kcmkwm.mo share/locale/ast/LC_MESSAGES/kwin.mo share/locale/az/LC_MESSAGES/kcm_kwin_effects.mo share/locale/az/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/az/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/az/LC_MESSAGES/kcm_kwindecoration.mo share/locale/az/LC_MESSAGES/kcm_kwinrules.mo share/locale/az/LC_MESSAGES/kcm_kwintabbox.mo share/locale/az/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/az/LC_MESSAGES/kcmkwincommon.mo share/locale/az/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/az/LC_MESSAGES/kcmkwm.mo share/locale/az/LC_MESSAGES/kwin.mo share/locale/be/LC_MESSAGES/kcm_kwin_effects.mo share/locale/be/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/be/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/be/LC_MESSAGES/kcm_kwindecoration.mo share/locale/be/LC_MESSAGES/kcm_kwinrules.mo share/locale/be/LC_MESSAGES/kcm_kwintabbox.mo share/locale/be/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/be/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/be/LC_MESSAGES/kcmkwincommon.mo share/locale/be/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/be/LC_MESSAGES/kcmkwm.mo share/locale/be/LC_MESSAGES/kwin.mo share/locale/be@latin/LC_MESSAGES/kwin.mo share/locale/bg/LC_MESSAGES/kcm_animations.mo share/locale/bg/LC_MESSAGES/kcm_kwin_effects.mo share/locale/bg/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/bg/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/bg/LC_MESSAGES/kcm_kwindecoration.mo share/locale/bg/LC_MESSAGES/kcm_kwinrules.mo share/locale/bg/LC_MESSAGES/kcm_kwintabbox.mo share/locale/bg/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/bg/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/bg/LC_MESSAGES/kcmkwincommon.mo share/locale/bg/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/bg/LC_MESSAGES/kcmkwm.mo share/locale/bg/LC_MESSAGES/kwin.mo share/locale/bn/LC_MESSAGES/kcmkwm.mo share/locale/bn/LC_MESSAGES/kwin.mo share/locale/bn_IN/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/bn_IN/LC_MESSAGES/kcm_kwindecoration.mo share/locale/bn_IN/LC_MESSAGES/kcm_kwinrules.mo share/locale/bn_IN/LC_MESSAGES/kcmkwm.mo share/locale/bn_IN/LC_MESSAGES/kwin.mo share/locale/br/LC_MESSAGES/kcm_kwindecoration.mo share/locale/br/LC_MESSAGES/kcm_kwinrules.mo share/locale/br/LC_MESSAGES/kcmkwm.mo share/locale/br/LC_MESSAGES/kwin.mo share/locale/bs/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/bs/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/bs/LC_MESSAGES/kcm_kwindecoration.mo share/locale/bs/LC_MESSAGES/kcm_kwinrules.mo share/locale/bs/LC_MESSAGES/kcm_kwintabbox.mo share/locale/bs/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/bs/LC_MESSAGES/kcmkwm.mo share/locale/bs/LC_MESSAGES/kwin.mo share/locale/ca/LC_MESSAGES/kcm_animations.mo share/locale/ca/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ca/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ca/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ca/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ca/LC_MESSAGES/kcm_kwinrules.mo share/locale/ca/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ca/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ca/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ca/LC_MESSAGES/kcmkwincommon.mo share/locale/ca/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ca/LC_MESSAGES/kcmkwm.mo share/locale/ca/LC_MESSAGES/kwin.mo share/locale/ca@valencia/LC_MESSAGES/kcm_animations.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwinrules.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ca@valencia/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwincommon.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwm.mo share/locale/ca@valencia/LC_MESSAGES/kwin.mo share/locale/cs/LC_MESSAGES/kcm_kwin_effects.mo share/locale/cs/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/cs/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/cs/LC_MESSAGES/kcm_kwindecoration.mo share/locale/cs/LC_MESSAGES/kcm_kwinrules.mo share/locale/cs/LC_MESSAGES/kcm_kwintabbox.mo share/locale/cs/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/cs/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/cs/LC_MESSAGES/kcmkwincommon.mo share/locale/cs/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/cs/LC_MESSAGES/kcmkwm.mo share/locale/cs/LC_MESSAGES/kwin.mo share/locale/csb/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/csb/LC_MESSAGES/kwin.mo share/locale/cy/LC_MESSAGES/kcm_kwindecoration.mo share/locale/cy/LC_MESSAGES/kcm_kwinrules.mo share/locale/cy/LC_MESSAGES/kcmkwm.mo share/locale/cy/LC_MESSAGES/kwin.mo share/locale/da/LC_MESSAGES/kcm_kwin_effects.mo share/locale/da/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/da/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/da/LC_MESSAGES/kcm_kwindecoration.mo share/locale/da/LC_MESSAGES/kcm_kwinrules.mo share/locale/da/LC_MESSAGES/kcm_kwintabbox.mo share/locale/da/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/da/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/da/LC_MESSAGES/kcmkwincommon.mo share/locale/da/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/da/LC_MESSAGES/kcmkwm.mo share/locale/da/LC_MESSAGES/kwin.mo share/locale/de/LC_MESSAGES/kcm_animations.mo share/locale/de/LC_MESSAGES/kcm_kwin_effects.mo share/locale/de/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/de/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/de/LC_MESSAGES/kcm_kwindecoration.mo share/locale/de/LC_MESSAGES/kcm_kwinrules.mo share/locale/de/LC_MESSAGES/kcm_kwintabbox.mo share/locale/de/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/de/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/de/LC_MESSAGES/kcmkwincommon.mo share/locale/de/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/de/LC_MESSAGES/kcmkwm.mo share/locale/de/LC_MESSAGES/kwin.mo share/locale/el/LC_MESSAGES/kcm_kwin_effects.mo share/locale/el/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/el/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/el/LC_MESSAGES/kcm_kwindecoration.mo share/locale/el/LC_MESSAGES/kcm_kwinrules.mo share/locale/el/LC_MESSAGES/kcm_kwintabbox.mo share/locale/el/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/el/LC_MESSAGES/kcmkwm.mo share/locale/el/LC_MESSAGES/kwin.mo share/locale/en_GB/LC_MESSAGES/kcm_kwin_effects.mo share/locale/en_GB/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/en_GB/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/en_GB/LC_MESSAGES/kcm_kwindecoration.mo share/locale/en_GB/LC_MESSAGES/kcm_kwinrules.mo share/locale/en_GB/LC_MESSAGES/kcm_kwintabbox.mo share/locale/en_GB/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/en_GB/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/en_GB/LC_MESSAGES/kcmkwincommon.mo share/locale/en_GB/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/en_GB/LC_MESSAGES/kcmkwm.mo share/locale/en_GB/LC_MESSAGES/kwin.mo share/locale/eo/LC_MESSAGES/kcm_kwin_effects.mo share/locale/eo/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/eo/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/eo/LC_MESSAGES/kcm_kwindecoration.mo share/locale/eo/LC_MESSAGES/kcm_kwinrules.mo share/locale/eo/LC_MESSAGES/kcm_kwintabbox.mo share/locale/eo/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/eo/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/eo/LC_MESSAGES/kcmkwincommon.mo share/locale/eo/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/eo/LC_MESSAGES/kcmkwm.mo share/locale/eo/LC_MESSAGES/kwin.mo share/locale/es/LC_MESSAGES/kcm_animations.mo share/locale/es/LC_MESSAGES/kcm_kwin_effects.mo share/locale/es/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/es/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/es/LC_MESSAGES/kcm_kwindecoration.mo share/locale/es/LC_MESSAGES/kcm_kwinrules.mo share/locale/es/LC_MESSAGES/kcm_kwintabbox.mo share/locale/es/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/es/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/es/LC_MESSAGES/kcmkwincommon.mo share/locale/es/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/es/LC_MESSAGES/kcmkwm.mo share/locale/es/LC_MESSAGES/kwin.mo share/locale/et/LC_MESSAGES/kcm_kwin_effects.mo share/locale/et/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/et/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/et/LC_MESSAGES/kcm_kwindecoration.mo share/locale/et/LC_MESSAGES/kcm_kwinrules.mo share/locale/et/LC_MESSAGES/kcm_kwintabbox.mo share/locale/et/LC_MESSAGES/kcmkwincommon.mo share/locale/et/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/et/LC_MESSAGES/kcmkwm.mo share/locale/et/LC_MESSAGES/kwin.mo share/locale/eu/LC_MESSAGES/kcm_animations.mo share/locale/eu/LC_MESSAGES/kcm_kwin_effects.mo share/locale/eu/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/eu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/eu/LC_MESSAGES/kcm_kwindecoration.mo share/locale/eu/LC_MESSAGES/kcm_kwinrules.mo share/locale/eu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/eu/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/eu/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/eu/LC_MESSAGES/kcmkwincommon.mo share/locale/eu/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/eu/LC_MESSAGES/kcmkwm.mo share/locale/eu/LC_MESSAGES/kwin.mo share/locale/fa/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/fa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fa/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fa/LC_MESSAGES/kcm_kwinrules.mo share/locale/fa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/fa/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fa/LC_MESSAGES/kcmkwm.mo share/locale/fa/LC_MESSAGES/kwin.mo share/locale/fi/LC_MESSAGES/kcm_animations.mo share/locale/fi/LC_MESSAGES/kcm_kwin_effects.mo share/locale/fi/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/fi/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fi/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fi/LC_MESSAGES/kcm_kwinrules.mo share/locale/fi/LC_MESSAGES/kcm_kwintabbox.mo share/locale/fi/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/fi/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/fi/LC_MESSAGES/kcmkwincommon.mo share/locale/fi/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fi/LC_MESSAGES/kcmkwm.mo share/locale/fi/LC_MESSAGES/kwin.mo share/locale/fr/LC_MESSAGES/kcm_animations.mo share/locale/fr/LC_MESSAGES/kcm_kwin_effects.mo share/locale/fr/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/fr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fr/LC_MESSAGES/kcm_kwinrules.mo share/locale/fr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/fr/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/fr/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/fr/LC_MESSAGES/kcmkwincommon.mo share/locale/fr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fr/LC_MESSAGES/kcmkwm.mo share/locale/fr/LC_MESSAGES/kwin.mo share/locale/fy/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fy/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fy/LC_MESSAGES/kcm_kwinrules.mo share/locale/fy/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fy/LC_MESSAGES/kcmkwm.mo share/locale/fy/LC_MESSAGES/kwin.mo share/locale/ga/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ga/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ga/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ga/LC_MESSAGES/kcm_kwinrules.mo share/locale/ga/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ga/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ga/LC_MESSAGES/kcmkwm.mo share/locale/ga/LC_MESSAGES/kwin.mo share/locale/gl/LC_MESSAGES/kcm_animations.mo share/locale/gl/LC_MESSAGES/kcm_kwin_effects.mo share/locale/gl/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/gl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/gl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/gl/LC_MESSAGES/kcm_kwinrules.mo share/locale/gl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/gl/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/gl/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/gl/LC_MESSAGES/kcmkwincommon.mo share/locale/gl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/gl/LC_MESSAGES/kcmkwm.mo share/locale/gl/LC_MESSAGES/kwin.mo share/locale/gu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/gu/LC_MESSAGES/kcm_kwindecoration.mo share/locale/gu/LC_MESSAGES/kcm_kwinrules.mo share/locale/gu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/gu/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/gu/LC_MESSAGES/kcmkwm.mo share/locale/gu/LC_MESSAGES/kwin.mo share/locale/he/LC_MESSAGES/kcm_animations.mo share/locale/he/LC_MESSAGES/kcm_kwin_effects.mo share/locale/he/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/he/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/he/LC_MESSAGES/kcm_kwindecoration.mo share/locale/he/LC_MESSAGES/kcm_kwinrules.mo share/locale/he/LC_MESSAGES/kcm_kwintabbox.mo share/locale/he/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/he/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/he/LC_MESSAGES/kcmkwincommon.mo share/locale/he/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/he/LC_MESSAGES/kcmkwm.mo share/locale/he/LC_MESSAGES/kwin.mo share/locale/hi/LC_MESSAGES/kcm_kwin_effects.mo share/locale/hi/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/hi/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hi/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hi/LC_MESSAGES/kcm_kwinrules.mo share/locale/hi/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hi/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/hi/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/hi/LC_MESSAGES/kcmkwincommon.mo share/locale/hi/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/hi/LC_MESSAGES/kcmkwm.mo share/locale/hi/LC_MESSAGES/kwin.mo share/locale/hne/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hne/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hne/LC_MESSAGES/kcm_kwinrules.mo share/locale/hne/LC_MESSAGES/kcmkwm.mo share/locale/hne/LC_MESSAGES/kwin.mo share/locale/hr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hr/LC_MESSAGES/kcm_kwinrules.mo share/locale/hr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/hr/LC_MESSAGES/kcmkwm.mo share/locale/hr/LC_MESSAGES/kwin.mo share/locale/hsb/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hsb/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hsb/LC_MESSAGES/kcm_kwinrules.mo share/locale/hsb/LC_MESSAGES/kcmkwm.mo share/locale/hsb/LC_MESSAGES/kwin.mo share/locale/hu/LC_MESSAGES/kcm_animations.mo share/locale/hu/LC_MESSAGES/kcm_kwin_effects.mo share/locale/hu/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/hu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hu/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hu/LC_MESSAGES/kcm_kwinrules.mo share/locale/hu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hu/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/hu/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/hu/LC_MESSAGES/kcmkwincommon.mo share/locale/hu/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/hu/LC_MESSAGES/kcmkwm.mo share/locale/hu/LC_MESSAGES/kwin.mo share/locale/ia/LC_MESSAGES/kcm_animations.mo share/locale/ia/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ia/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ia/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ia/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ia/LC_MESSAGES/kcm_kwinrules.mo share/locale/ia/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ia/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ia/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ia/LC_MESSAGES/kcmkwincommon.mo share/locale/ia/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ia/LC_MESSAGES/kcmkwm.mo share/locale/ia/LC_MESSAGES/kwin.mo share/locale/id/LC_MESSAGES/kcm_kwin_effects.mo share/locale/id/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/id/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/id/LC_MESSAGES/kcm_kwindecoration.mo share/locale/id/LC_MESSAGES/kcm_kwinrules.mo share/locale/id/LC_MESSAGES/kcm_kwintabbox.mo share/locale/id/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/id/LC_MESSAGES/kcmkwincommon.mo share/locale/id/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/id/LC_MESSAGES/kcmkwm.mo share/locale/id/LC_MESSAGES/kwin.mo share/locale/is/LC_MESSAGES/kcm_kwin_effects.mo share/locale/is/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/is/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/is/LC_MESSAGES/kcm_kwindecoration.mo share/locale/is/LC_MESSAGES/kcm_kwinrules.mo share/locale/is/LC_MESSAGES/kcm_kwintabbox.mo share/locale/is/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/is/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/is/LC_MESSAGES/kcmkwincommon.mo share/locale/is/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/is/LC_MESSAGES/kcmkwm.mo share/locale/is/LC_MESSAGES/kwin.mo share/locale/it/LC_MESSAGES/kcm_animations.mo share/locale/it/LC_MESSAGES/kcm_kwin_effects.mo share/locale/it/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/it/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/it/LC_MESSAGES/kcm_kwindecoration.mo share/locale/it/LC_MESSAGES/kcm_kwinrules.mo share/locale/it/LC_MESSAGES/kcm_kwintabbox.mo share/locale/it/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/it/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/it/LC_MESSAGES/kcmkwincommon.mo share/locale/it/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/it/LC_MESSAGES/kcmkwm.mo share/locale/it/LC_MESSAGES/kwin.mo share/locale/ja/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ja/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ja/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ja/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ja/LC_MESSAGES/kcm_kwinrules.mo share/locale/ja/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ja/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ja/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ja/LC_MESSAGES/kcmkwincommon.mo share/locale/ja/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ja/LC_MESSAGES/kcmkwm.mo share/locale/ja/LC_MESSAGES/kwin.mo share/locale/ka/LC_MESSAGES/kcm_animations.mo share/locale/ka/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ka/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ka/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ka/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ka/LC_MESSAGES/kcm_kwinrules.mo share/locale/ka/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ka/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ka/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ka/LC_MESSAGES/kcmkwincommon.mo share/locale/ka/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ka/LC_MESSAGES/kcmkwm.mo share/locale/ka/LC_MESSAGES/kwin.mo share/locale/kk/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/kk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/kk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/kk/LC_MESSAGES/kcm_kwinrules.mo share/locale/kk/LC_MESSAGES/kcm_kwintabbox.mo share/locale/kk/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/kk/LC_MESSAGES/kcmkwm.mo share/locale/kk/LC_MESSAGES/kwin.mo share/locale/km/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/km/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/km/LC_MESSAGES/kcm_kwindecoration.mo share/locale/km/LC_MESSAGES/kcm_kwinrules.mo share/locale/km/LC_MESSAGES/kcm_kwintabbox.mo share/locale/km/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/km/LC_MESSAGES/kcmkwm.mo share/locale/km/LC_MESSAGES/kwin.mo share/locale/kn/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/kn/LC_MESSAGES/kcm_kwindecoration.mo share/locale/kn/LC_MESSAGES/kcm_kwinrules.mo share/locale/kn/LC_MESSAGES/kcm_kwintabbox.mo share/locale/kn/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/kn/LC_MESSAGES/kcmkwm.mo share/locale/kn/LC_MESSAGES/kwin.mo share/locale/ko/LC_MESSAGES/kcm_animations.mo share/locale/ko/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ko/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ko/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ko/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ko/LC_MESSAGES/kcm_kwinrules.mo share/locale/ko/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ko/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ko/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ko/LC_MESSAGES/kcmkwincommon.mo share/locale/ko/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ko/LC_MESSAGES/kcmkwm.mo share/locale/ko/LC_MESSAGES/kwin.mo share/locale/ku/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ku/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ku/LC_MESSAGES/kcm_kwinrules.mo share/locale/ku/LC_MESSAGES/kcmkwm.mo share/locale/ku/LC_MESSAGES/kwin.mo share/locale/lt/LC_MESSAGES/kcm_kwin_effects.mo share/locale/lt/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/lt/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/lt/LC_MESSAGES/kcm_kwindecoration.mo share/locale/lt/LC_MESSAGES/kcm_kwinrules.mo share/locale/lt/LC_MESSAGES/kcm_kwintabbox.mo share/locale/lt/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/lt/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/lt/LC_MESSAGES/kcmkwincommon.mo share/locale/lt/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/lt/LC_MESSAGES/kcmkwm.mo share/locale/lt/LC_MESSAGES/kwin.mo share/locale/lv/LC_MESSAGES/kcm_animations.mo share/locale/lv/LC_MESSAGES/kcm_kwin_effects.mo share/locale/lv/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/lv/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/lv/LC_MESSAGES/kcm_kwindecoration.mo share/locale/lv/LC_MESSAGES/kcm_kwinrules.mo share/locale/lv/LC_MESSAGES/kcm_kwintabbox.mo share/locale/lv/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/lv/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/lv/LC_MESSAGES/kcmkwincommon.mo share/locale/lv/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/lv/LC_MESSAGES/kcmkwm.mo share/locale/lv/LC_MESSAGES/kwin.mo share/locale/mai/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/mai/LC_MESSAGES/kcm_kwindecoration.mo share/locale/mai/LC_MESSAGES/kcm_kwinrules.mo share/locale/mai/LC_MESSAGES/kcm_kwintabbox.mo share/locale/mai/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/mai/LC_MESSAGES/kcmkwm.mo share/locale/mai/LC_MESSAGES/kwin.mo share/locale/mk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/mk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/mk/LC_MESSAGES/kcm_kwinrules.mo share/locale/mk/LC_MESSAGES/kcmkwm.mo share/locale/mk/LC_MESSAGES/kwin.mo share/locale/ml/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ml/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ml/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ml/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ml/LC_MESSAGES/kcm_kwinrules.mo share/locale/ml/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ml/LC_MESSAGES/kcmkwincommon.mo share/locale/ml/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ml/LC_MESSAGES/kcmkwm.mo share/locale/ml/LC_MESSAGES/kwin.mo share/locale/mr/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/mr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/mr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/mr/LC_MESSAGES/kcm_kwinrules.mo share/locale/mr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/mr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/mr/LC_MESSAGES/kcmkwm.mo share/locale/mr/LC_MESSAGES/kwin.mo share/locale/ms/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ms/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ms/LC_MESSAGES/kcm_kwinrules.mo share/locale/ms/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ms/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ms/LC_MESSAGES/kcmkwm.mo share/locale/ms/LC_MESSAGES/kwin.mo share/locale/nb/LC_MESSAGES/kcm_kwin_effects.mo share/locale/nb/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/nb/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nb/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nb/LC_MESSAGES/kcm_kwinrules.mo share/locale/nb/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nb/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/nb/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/nb/LC_MESSAGES/kcmkwincommon.mo share/locale/nb/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nb/LC_MESSAGES/kcmkwm.mo share/locale/nb/LC_MESSAGES/kwin.mo share/locale/nds/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/nds/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nds/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nds/LC_MESSAGES/kcm_kwinrules.mo share/locale/nds/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nds/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nds/LC_MESSAGES/kcmkwm.mo share/locale/nds/LC_MESSAGES/kwin.mo share/locale/ne/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ne/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ne/LC_MESSAGES/kcm_kwinrules.mo share/locale/ne/LC_MESSAGES/kcmkwm.mo share/locale/ne/LC_MESSAGES/kwin.mo share/locale/nl/LC_MESSAGES/kcm_animations.mo share/locale/nl/LC_MESSAGES/kcm_kwin_effects.mo share/locale/nl/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/nl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nl/LC_MESSAGES/kcm_kwinrules.mo share/locale/nl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nl/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/nl/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/nl/LC_MESSAGES/kcmkwincommon.mo share/locale/nl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nl/LC_MESSAGES/kcmkwm.mo share/locale/nl/LC_MESSAGES/kwin.mo share/locale/nn/LC_MESSAGES/kcm_kwin_effects.mo share/locale/nn/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/nn/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nn/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nn/LC_MESSAGES/kcm_kwinrules.mo share/locale/nn/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nn/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/nn/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/nn/LC_MESSAGES/kcmkwincommon.mo share/locale/nn/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nn/LC_MESSAGES/kcmkwm.mo share/locale/nn/LC_MESSAGES/kwin.mo share/locale/oc/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/oc/LC_MESSAGES/kcm_kwindecoration.mo share/locale/oc/LC_MESSAGES/kcm_kwinrules.mo share/locale/oc/LC_MESSAGES/kcmkwm.mo share/locale/oc/LC_MESSAGES/kwin.mo share/locale/or/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/or/LC_MESSAGES/kcm_kwindecoration.mo share/locale/or/LC_MESSAGES/kcm_kwinrules.mo share/locale/or/LC_MESSAGES/kcmkwm.mo share/locale/or/LC_MESSAGES/kwin.mo share/locale/pa/LC_MESSAGES/kcm_kwin_effects.mo share/locale/pa/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/pa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pa/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pa/LC_MESSAGES/kcm_kwinrules.mo share/locale/pa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pa/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/pa/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/pa/LC_MESSAGES/kcmkwincommon.mo share/locale/pa/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pa/LC_MESSAGES/kcmkwm.mo share/locale/pa/LC_MESSAGES/kwin.mo share/locale/pl/LC_MESSAGES/kcm_kwin_effects.mo share/locale/pl/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/pl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pl/LC_MESSAGES/kcm_kwinrules.mo share/locale/pl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pl/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/pl/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/pl/LC_MESSAGES/kcmkwincommon.mo share/locale/pl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pl/LC_MESSAGES/kcmkwm.mo share/locale/pl/LC_MESSAGES/kwin.mo share/locale/pt/LC_MESSAGES/kcm_kwin_effects.mo share/locale/pt/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/pt/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pt/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pt/LC_MESSAGES/kcm_kwinrules.mo share/locale/pt/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pt/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/pt/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/pt/LC_MESSAGES/kcmkwincommon.mo share/locale/pt/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pt/LC_MESSAGES/kcmkwm.mo share/locale/pt/LC_MESSAGES/kwin.mo +share/locale/pt_BR/LC_MESSAGES/kcm_animations.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwin_effects.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwinrules.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/pt_BR/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/pt_BR/LC_MESSAGES/kcmkwincommon.mo share/locale/pt_BR/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pt_BR/LC_MESSAGES/kcmkwm.mo share/locale/pt_BR/LC_MESSAGES/kwin.mo share/locale/ro/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ro/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ro/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ro/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ro/LC_MESSAGES/kcm_kwinrules.mo share/locale/ro/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ro/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ro/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ro/LC_MESSAGES/kcmkwincommon.mo share/locale/ro/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ro/LC_MESSAGES/kcmkwm.mo share/locale/ro/LC_MESSAGES/kwin.mo share/locale/ru/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ru/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ru/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ru/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ru/LC_MESSAGES/kcm_kwinrules.mo share/locale/ru/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ru/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ru/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ru/LC_MESSAGES/kcmkwincommon.mo share/locale/ru/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ru/LC_MESSAGES/kcmkwm.mo share/locale/ru/LC_MESSAGES/kwin.mo share/locale/sa/LC_MESSAGES/kcm_kwin_effects.mo share/locale/sa/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sa/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sa/LC_MESSAGES/kcm_kwinrules.mo share/locale/sa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sa/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/sa/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/sa/LC_MESSAGES/kcmkwincommon.mo share/locale/sa/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sa/LC_MESSAGES/kcmkwm.mo share/locale/sa/LC_MESSAGES/kwin.mo share/locale/se/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/se/LC_MESSAGES/kcm_kwindecoration.mo share/locale/se/LC_MESSAGES/kcm_kwinrules.mo share/locale/se/LC_MESSAGES/kcmkwincommon.mo share/locale/se/LC_MESSAGES/kcmkwm.mo share/locale/se/LC_MESSAGES/kwin.mo share/locale/si/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/si/LC_MESSAGES/kcm_kwindecoration.mo share/locale/si/LC_MESSAGES/kcm_kwinrules.mo share/locale/si/LC_MESSAGES/kcm_kwintabbox.mo share/locale/si/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/si/LC_MESSAGES/kcmkwm.mo share/locale/si/LC_MESSAGES/kwin.mo share/locale/sk/LC_MESSAGES/kcm_kwin_effects.mo share/locale/sk/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sk/LC_MESSAGES/kcm_kwinrules.mo share/locale/sk/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sk/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/sk/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/sk/LC_MESSAGES/kcmkwincommon.mo share/locale/sk/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sk/LC_MESSAGES/kcmkwm.mo share/locale/sk/LC_MESSAGES/kwin.mo share/locale/sl/LC_MESSAGES/kcm_animations.mo share/locale/sl/LC_MESSAGES/kcm_kwin_effects.mo share/locale/sl/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sl/LC_MESSAGES/kcm_kwinrules.mo share/locale/sl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sl/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/sl/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/sl/LC_MESSAGES/kcmkwincommon.mo share/locale/sl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sl/LC_MESSAGES/kcmkwm.mo share/locale/sl/LC_MESSAGES/kwin.mo share/locale/sq/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sq/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sq/LC_MESSAGES/kcm_kwinrules.mo share/locale/sq/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sq/LC_MESSAGES/kcmkwm.mo share/locale/sq/LC_MESSAGES/kwin.mo share/locale/sr/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sr/LC_MESSAGES/kcm_kwinrules.mo share/locale/sr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr/LC_MESSAGES/kcmkwm.mo share/locale/sr/LC_MESSAGES/kwin.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwinrules.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwm.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwinrules.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwm.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwinrules.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr@latin/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr@latin/LC_MESSAGES/kcmkwm.mo share/locale/sr@latin/LC_MESSAGES/kwin.mo share/locale/sv/LC_MESSAGES/kcm_animations.mo share/locale/sv/LC_MESSAGES/kcm_kwin_effects.mo share/locale/sv/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sv/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sv/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sv/LC_MESSAGES/kcm_kwinrules.mo share/locale/sv/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sv/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/sv/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/sv/LC_MESSAGES/kcmkwincommon.mo share/locale/sv/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sv/LC_MESSAGES/kcmkwm.mo share/locale/sv/LC_MESSAGES/kwin.mo share/locale/ta/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ta/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ta/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ta/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ta/LC_MESSAGES/kcm_kwinrules.mo share/locale/ta/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ta/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ta/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ta/LC_MESSAGES/kcmkwincommon.mo share/locale/ta/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ta/LC_MESSAGES/kcmkwm.mo share/locale/ta/LC_MESSAGES/kwin.mo share/locale/te/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/te/LC_MESSAGES/kcm_kwindecoration.mo share/locale/te/LC_MESSAGES/kcm_kwinrules.mo share/locale/te/LC_MESSAGES/kcmkwm.mo share/locale/te/LC_MESSAGES/kwin.mo share/locale/tg/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/tg/LC_MESSAGES/kcm_kwindecoration.mo share/locale/tg/LC_MESSAGES/kcm_kwinrules.mo share/locale/tg/LC_MESSAGES/kcmkwincommon.mo share/locale/tg/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/tg/LC_MESSAGES/kcmkwm.mo share/locale/tg/LC_MESSAGES/kwin.mo share/locale/th/LC_MESSAGES/kcm_kwin_effects.mo share/locale/th/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/th/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/th/LC_MESSAGES/kcm_kwindecoration.mo share/locale/th/LC_MESSAGES/kcm_kwinrules.mo share/locale/th/LC_MESSAGES/kcm_kwintabbox.mo share/locale/th/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/th/LC_MESSAGES/kcmkwincommon.mo share/locale/th/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/th/LC_MESSAGES/kcmkwm.mo share/locale/th/LC_MESSAGES/kwin.mo share/locale/tok/LC_MESSAGES/kcm_kwinrules.mo share/locale/tr/LC_MESSAGES/kcm_animations.mo share/locale/tr/LC_MESSAGES/kcm_kwin_effects.mo share/locale/tr/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/tr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/tr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/tr/LC_MESSAGES/kcm_kwinrules.mo share/locale/tr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/tr/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/tr/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/tr/LC_MESSAGES/kcmkwincommon.mo share/locale/tr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/tr/LC_MESSAGES/kcmkwm.mo share/locale/tr/LC_MESSAGES/kwin.mo share/locale/ug/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ug/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ug/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ug/LC_MESSAGES/kcm_kwinrules.mo share/locale/ug/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ug/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ug/LC_MESSAGES/kcmkwm.mo share/locale/ug/LC_MESSAGES/kwin.mo share/locale/uk/LC_MESSAGES/kcm_animations.mo share/locale/uk/LC_MESSAGES/kcm_kwin_effects.mo share/locale/uk/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/uk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/uk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/uk/LC_MESSAGES/kcm_kwinrules.mo share/locale/uk/LC_MESSAGES/kcm_kwintabbox.mo share/locale/uk/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/uk/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/uk/LC_MESSAGES/kcmkwincommon.mo share/locale/uk/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/uk/LC_MESSAGES/kcmkwm.mo share/locale/uk/LC_MESSAGES/kwin.mo share/locale/uz/LC_MESSAGES/kcm_kwindecoration.mo share/locale/uz/LC_MESSAGES/kcm_kwinrules.mo share/locale/uz/LC_MESSAGES/kcmkwm.mo share/locale/uz/LC_MESSAGES/kwin.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_kwindecoration.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_kwinrules.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkwm.mo share/locale/uz@cyrillic/LC_MESSAGES/kwin.mo share/locale/vi/LC_MESSAGES/kcm_kwin_effects.mo share/locale/vi/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/vi/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/vi/LC_MESSAGES/kcm_kwindecoration.mo share/locale/vi/LC_MESSAGES/kcm_kwinrules.mo share/locale/vi/LC_MESSAGES/kcm_kwintabbox.mo share/locale/vi/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/vi/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/vi/LC_MESSAGES/kcmkwincommon.mo share/locale/vi/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/vi/LC_MESSAGES/kcmkwm.mo share/locale/vi/LC_MESSAGES/kwin.mo share/locale/wa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/wa/LC_MESSAGES/kcm_kwindecoration.mo share/locale/wa/LC_MESSAGES/kcm_kwinrules.mo share/locale/wa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/wa/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/wa/LC_MESSAGES/kcmkwm.mo share/locale/wa/LC_MESSAGES/kwin.mo share/locale/xh/LC_MESSAGES/kcm_kwindecoration.mo share/locale/xh/LC_MESSAGES/kcmkwm.mo share/locale/xh/LC_MESSAGES/kwin.mo share/locale/zh_CN/LC_MESSAGES/kcm_animations.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwin_effects.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwindecoration.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwinrules.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwintabbox.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/zh_CN/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/zh_CN/LC_MESSAGES/kcmkwincommon.mo share/locale/zh_CN/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/zh_CN/LC_MESSAGES/kcmkwm.mo share/locale/zh_CN/LC_MESSAGES/kwin.mo share/locale/zh_TW/LC_MESSAGES/kcm_animations.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwin_effects.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwindecoration.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwinrules.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwintabbox.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/zh_TW/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/zh_TW/LC_MESSAGES/kcmkwincommon.mo share/locale/zh_TW/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/zh_TW/LC_MESSAGES/kcmkwm.mo share/locale/zh_TW/LC_MESSAGES/kwin.mo share/qlogging-categories6/org_kde_kwin.categories diff --git a/x11/plasma6-kactivitymanagerd/distinfo b/x11/plasma6-kactivitymanagerd/distinfo index 316a9917e1d8..678fcaf569ad 100644 --- a/x11/plasma6-kactivitymanagerd/distinfo +++ b/x11/plasma6-kactivitymanagerd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010506 -SHA256 (KDE/plasma/6.4.0/kactivitymanagerd-6.4.0.tar.xz) = cd569fe25b0d6701c330e08fc3ede57d57ff82e96ec6d347e7575bb32faababb -SIZE (KDE/plasma/6.4.0/kactivitymanagerd-6.4.0.tar.xz) = 101580 +TIMESTAMP = 1750789639 +SHA256 (KDE/plasma/6.4.1/kactivitymanagerd-6.4.1.tar.xz) = b6dd5c1b84d3d2e70db79f16ecefe23acaf53c45fd5c2babb2ee994b466cac99 +SIZE (KDE/plasma/6.4.1/kactivitymanagerd-6.4.1.tar.xz) = 101584 diff --git a/x11/plasma6-kgamma/distinfo b/x11/plasma6-kgamma/distinfo index 83c87100c509..2794f1c1220e 100644 --- a/x11/plasma6-kgamma/distinfo +++ b/x11/plasma6-kgamma/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010507 -SHA256 (KDE/plasma/6.4.0/kgamma-6.4.0.tar.xz) = 211421faf8d9001dc936092fd1f4f21153485af434f0071f55d228bd1a39c548 -SIZE (KDE/plasma/6.4.0/kgamma-6.4.0.tar.xz) = 87676 +TIMESTAMP = 1750789640 +SHA256 (KDE/plasma/6.4.1/kgamma-6.4.1.tar.xz) = cc2941c546321c0f40087a81e2c3d8d44ea3845034c164179a6384b54ef0fb90 +SIZE (KDE/plasma/6.4.1/kgamma-6.4.1.tar.xz) = 87692 diff --git a/x11/plasma6-kglobalacceld/distinfo b/x11/plasma6-kglobalacceld/distinfo index 3aca2a280ed6..1db0e63e3b2c 100644 --- a/x11/plasma6-kglobalacceld/distinfo +++ b/x11/plasma6-kglobalacceld/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010507 -SHA256 (KDE/plasma/6.4.0/kglobalacceld-6.4.0.tar.xz) = f7e67a7367b60bd4530558ef91980dfa16bb500d5516eb689eb50041e10b0f32 -SIZE (KDE/plasma/6.4.0/kglobalacceld-6.4.0.tar.xz) = 56412 +TIMESTAMP = 1750789640 +SHA256 (KDE/plasma/6.4.1/kglobalacceld-6.4.1.tar.xz) = 3ee38af4c9551de640a1867d278352d81714692cf7000c20d19dc262e04bf433 +SIZE (KDE/plasma/6.4.1/kglobalacceld-6.4.1.tar.xz) = 56500 diff --git a/x11/plasma6-kscreen/distinfo b/x11/plasma6-kscreen/distinfo index f39b2d098f41..1aa09269ebb5 100644 --- a/x11/plasma6-kscreen/distinfo +++ b/x11/plasma6-kscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010507 -SHA256 (KDE/plasma/6.4.0/kscreen-6.4.0.tar.xz) = e4cee0890a534053151fa5e85372ad82e9269b94cd3dc332b737c36c4711727f -SIZE (KDE/plasma/6.4.0/kscreen-6.4.0.tar.xz) = 31774604 +TIMESTAMP = 1750789641 +SHA256 (KDE/plasma/6.4.1/kscreen-6.4.1.tar.xz) = c3a28569c4f092def84564e9162eb8a7fa681a8f4658a14d82436ea21754dc5b +SIZE (KDE/plasma/6.4.1/kscreen-6.4.1.tar.xz) = 31775808 diff --git a/x11/plasma6-kscreen/pkg-plist b/x11/plasma6-kscreen/pkg-plist index 50f312cc2c99..7bb17cb2cd19 100644 --- a/x11/plasma6-kscreen/pkg-plist +++ b/x11/plasma6-kscreen/pkg-plist @@ -1,197 +1,198 @@ bin/hdrcalibrator bin/kscreen-console lib/libexec/kscreen_osd_service %%DATADIR%%/graz.png %%QT_PLUGINDIR%%/kf6/kded/kscreen.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.kscreen.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kscreen.so @comment lib/systemd/user/plasma-kscreen-osd.service share/applications/kcm_kscreen.desktop share/dbus-1/services/org.kde.kscreen.osdService.service share/kglobalaccel/org.kde.kscreen.desktop share/locale/ar/LC_MESSAGES/hdrcalibrator.mo share/locale/ar/LC_MESSAGES/kcm_kscreen.mo share/locale/ar/LC_MESSAGES/kscreen_common.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ast/LC_MESSAGES/kcm_kscreen.mo share/locale/ast/LC_MESSAGES/kscreen_common.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/az/LC_MESSAGES/kcm_kscreen.mo share/locale/az/LC_MESSAGES/kscreen_common.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/bg/LC_MESSAGES/hdrcalibrator.mo share/locale/bg/LC_MESSAGES/kcm_kscreen.mo share/locale/bg/LC_MESSAGES/kscreen_common.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/bs/LC_MESSAGES/kcm_kscreen.mo share/locale/ca/LC_MESSAGES/hdrcalibrator.mo share/locale/ca/LC_MESSAGES/kcm_kscreen.mo share/locale/ca/LC_MESSAGES/kscreen_common.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ca@valencia/LC_MESSAGES/hdrcalibrator.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kscreen.mo share/locale/ca@valencia/LC_MESSAGES/kscreen_common.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/cs/LC_MESSAGES/kcm_kscreen.mo share/locale/cs/LC_MESSAGES/kscreen_common.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/da/LC_MESSAGES/kcm_kscreen.mo share/locale/da/LC_MESSAGES/kscreen_common.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/de/LC_MESSAGES/hdrcalibrator.mo share/locale/de/LC_MESSAGES/kcm_kscreen.mo share/locale/de/LC_MESSAGES/kscreen_common.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/el/LC_MESSAGES/kcm_kscreen.mo share/locale/el/LC_MESSAGES/kscreen_common.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/en_GB/LC_MESSAGES/kcm_kscreen.mo share/locale/en_GB/LC_MESSAGES/kscreen_common.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/eo/LC_MESSAGES/kcm_kscreen.mo share/locale/eo/LC_MESSAGES/kscreen_common.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/es/LC_MESSAGES/hdrcalibrator.mo share/locale/es/LC_MESSAGES/kcm_kscreen.mo share/locale/es/LC_MESSAGES/kscreen_common.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/et/LC_MESSAGES/kcm_kscreen.mo share/locale/et/LC_MESSAGES/kscreen_common.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/eu/LC_MESSAGES/hdrcalibrator.mo share/locale/eu/LC_MESSAGES/kcm_kscreen.mo share/locale/eu/LC_MESSAGES/kscreen_common.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/fi/LC_MESSAGES/hdrcalibrator.mo share/locale/fi/LC_MESSAGES/kcm_kscreen.mo share/locale/fi/LC_MESSAGES/kscreen_common.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/fr/LC_MESSAGES/hdrcalibrator.mo share/locale/fr/LC_MESSAGES/kcm_kscreen.mo share/locale/fr/LC_MESSAGES/kscreen_common.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/gl/LC_MESSAGES/hdrcalibrator.mo share/locale/gl/LC_MESSAGES/kcm_kscreen.mo share/locale/gl/LC_MESSAGES/kscreen_common.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/he/LC_MESSAGES/hdrcalibrator.mo share/locale/he/LC_MESSAGES/kcm_kscreen.mo share/locale/he/LC_MESSAGES/kscreen_common.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/hi/LC_MESSAGES/kcm_kscreen.mo share/locale/hi/LC_MESSAGES/kscreen_common.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/hsb/LC_MESSAGES/kcm_kscreen.mo share/locale/hsb/LC_MESSAGES/kscreen_common.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/hu/LC_MESSAGES/hdrcalibrator.mo share/locale/hu/LC_MESSAGES/kcm_kscreen.mo share/locale/hu/LC_MESSAGES/kscreen_common.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ia/LC_MESSAGES/hdrcalibrator.mo share/locale/ia/LC_MESSAGES/kcm_kscreen.mo share/locale/ia/LC_MESSAGES/kscreen_common.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/id/LC_MESSAGES/kcm_kscreen.mo share/locale/id/LC_MESSAGES/kscreen_common.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/is/LC_MESSAGES/kcm_kscreen.mo share/locale/is/LC_MESSAGES/kscreen_common.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/it/LC_MESSAGES/hdrcalibrator.mo share/locale/it/LC_MESSAGES/kcm_kscreen.mo share/locale/it/LC_MESSAGES/kscreen_common.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ja/LC_MESSAGES/kcm_kscreen.mo share/locale/ja/LC_MESSAGES/kscreen_common.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ka/LC_MESSAGES/hdrcalibrator.mo share/locale/ka/LC_MESSAGES/kcm_kscreen.mo share/locale/ka/LC_MESSAGES/kscreen_common.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ko/LC_MESSAGES/hdrcalibrator.mo share/locale/ko/LC_MESSAGES/kcm_kscreen.mo share/locale/ko/LC_MESSAGES/kscreen_common.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/lt/LC_MESSAGES/kcm_kscreen.mo share/locale/lt/LC_MESSAGES/kscreen_common.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/lv/LC_MESSAGES/kcm_kscreen.mo share/locale/lv/LC_MESSAGES/kscreen_common.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ml/LC_MESSAGES/kcm_kscreen.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/nb/LC_MESSAGES/kcm_kscreen.mo share/locale/nb/LC_MESSAGES/kscreen_common.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/nl/LC_MESSAGES/hdrcalibrator.mo share/locale/nl/LC_MESSAGES/kcm_kscreen.mo share/locale/nl/LC_MESSAGES/kscreen_common.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/nn/LC_MESSAGES/kcm_kscreen.mo share/locale/nn/LC_MESSAGES/kscreen_common.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/pa/LC_MESSAGES/kcm_kscreen.mo share/locale/pa/LC_MESSAGES/kscreen_common.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/pl/LC_MESSAGES/hdrcalibrator.mo share/locale/pl/LC_MESSAGES/kcm_kscreen.mo share/locale/pl/LC_MESSAGES/kscreen_common.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/pt/LC_MESSAGES/kcm_kscreen.mo share/locale/pt/LC_MESSAGES/kscreen_common.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/pt_BR/LC_MESSAGES/hdrcalibrator.mo share/locale/pt_BR/LC_MESSAGES/kcm_kscreen.mo share/locale/pt_BR/LC_MESSAGES/kscreen_common.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ro/LC_MESSAGES/kcm_kscreen.mo share/locale/ro/LC_MESSAGES/kscreen_common.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ru/LC_MESSAGES/kcm_kscreen.mo share/locale/ru/LC_MESSAGES/kscreen_common.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/sa/LC_MESSAGES/kcm_kscreen.mo share/locale/sa/LC_MESSAGES/kscreen_common.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/sk/LC_MESSAGES/kcm_kscreen.mo share/locale/sk/LC_MESSAGES/kscreen_common.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/sl/LC_MESSAGES/hdrcalibrator.mo share/locale/sl/LC_MESSAGES/kcm_kscreen.mo share/locale/sl/LC_MESSAGES/kscreen_common.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/sr/LC_MESSAGES/kcm_kscreen.mo share/locale/sr/LC_MESSAGES/kscreen_common.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kscreen.mo share/locale/sr@ijekavian/LC_MESSAGES/kscreen_common.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kscreen.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kscreen_common.mo share/locale/sr@latin/LC_MESSAGES/kcm_kscreen.mo share/locale/sr@latin/LC_MESSAGES/kscreen_common.mo share/locale/sv/LC_MESSAGES/hdrcalibrator.mo share/locale/sv/LC_MESSAGES/kcm_kscreen.mo share/locale/sv/LC_MESSAGES/kscreen_common.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ta/LC_MESSAGES/kcm_kscreen.mo share/locale/ta/LC_MESSAGES/kscreen_common.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/tg/LC_MESSAGES/kcm_kscreen.mo share/locale/tg/LC_MESSAGES/kscreen_common.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/tr/LC_MESSAGES/hdrcalibrator.mo share/locale/tr/LC_MESSAGES/kcm_kscreen.mo share/locale/tr/LC_MESSAGES/kscreen_common.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/uk/LC_MESSAGES/hdrcalibrator.mo share/locale/uk/LC_MESSAGES/kcm_kscreen.mo share/locale/uk/LC_MESSAGES/kscreen_common.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/zh_CN/LC_MESSAGES/hdrcalibrator.mo share/locale/zh_CN/LC_MESSAGES/kcm_kscreen.mo share/locale/zh_CN/LC_MESSAGES/kscreen_common.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/zh_TW/LC_MESSAGES/hdrcalibrator.mo share/locale/zh_TW/LC_MESSAGES/kcm_kscreen.mo share/locale/zh_TW/LC_MESSAGES/kscreen_common.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/qlogging-categories6/kscreen.categories diff --git a/x11/plasma6-kwayland/distinfo b/x11/plasma6-kwayland/distinfo index 5fbceb5c7817..fc66736e9cb3 100644 --- a/x11/plasma6-kwayland/distinfo +++ b/x11/plasma6-kwayland/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010508 -SHA256 (KDE/plasma/6.4.0/kwayland-6.4.0.tar.xz) = 0a649a7d50237022c9b0c0f3efdf2a7bfbeb794e37cf375ca2190e64b5d1db1f -SIZE (KDE/plasma/6.4.0/kwayland-6.4.0.tar.xz) = 132852 +TIMESTAMP = 1750789642 +SHA256 (KDE/plasma/6.4.1/kwayland-6.4.1.tar.xz) = 7f8f284122ffda44c5e1d64427be9059ca23f5a9fbf092e2a1de6d41de458625 +SIZE (KDE/plasma/6.4.1/kwayland-6.4.1.tar.xz) = 132828 diff --git a/x11/plasma6-layer-shell-qt/distinfo b/x11/plasma6-layer-shell-qt/distinfo index 177a9422acb7..642eabcb5fc7 100644 --- a/x11/plasma6-layer-shell-qt/distinfo +++ b/x11/plasma6-layer-shell-qt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010508 -SHA256 (KDE/plasma/6.4.0/layer-shell-qt-6.4.0.tar.xz) = 2b9e4133d09be858e2ee6107a568abd31a160b466545ab4b66311c68395c77b0 -SIZE (KDE/plasma/6.4.0/layer-shell-qt-6.4.0.tar.xz) = 35728 +TIMESTAMP = 1750789642 +SHA256 (KDE/plasma/6.4.1/layer-shell-qt-6.4.1.tar.xz) = e781cadec00b4c389b9143cb3a40df7788aa4d4d211c8847f6b9b65176e6e9ce +SIZE (KDE/plasma/6.4.1/layer-shell-qt-6.4.1.tar.xz) = 35732 diff --git a/x11/plasma6-libkscreen/distinfo b/x11/plasma6-libkscreen/distinfo index caab4c3f2335..52eba07990e8 100644 --- a/x11/plasma6-libkscreen/distinfo +++ b/x11/plasma6-libkscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010510 -SHA256 (KDE/plasma/6.4.0/libkscreen-6.4.0.tar.xz) = e240476e15c57e85a79107fefbdccb07082889a494b57aa5c7c4e6f208e9121a -SIZE (KDE/plasma/6.4.0/libkscreen-6.4.0.tar.xz) = 122360 +TIMESTAMP = 1750789645 +SHA256 (KDE/plasma/6.4.1/libkscreen-6.4.1.tar.xz) = 74153c1940ddeec099ba120c7a79bbcb39ffe36344e7cd5c43608776af5b2d14 +SIZE (KDE/plasma/6.4.1/libkscreen-6.4.1.tar.xz) = 122348 diff --git a/x11/plasma6-libplasma/distinfo b/x11/plasma6-libplasma/distinfo index 70d9044a9e6f..cf49afc6a4e2 100644 --- a/x11/plasma6-libplasma/distinfo +++ b/x11/plasma6-libplasma/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010511 -SHA256 (KDE/plasma/6.4.0/libplasma-6.4.0.tar.xz) = ff86f0d906254bbc9f9107f383b19fbb5ba7db243fab7f2d7d278fe83146354c -SIZE (KDE/plasma/6.4.0/libplasma-6.4.0.tar.xz) = 1970432 +TIMESTAMP = 1750789646 +SHA256 (KDE/plasma/6.4.1/libplasma-6.4.1.tar.xz) = 3ba4f1f8a9968b1d339564f91b33818e80e612de7e534591117246963d2c717b +SIZE (KDE/plasma/6.4.1/libplasma-6.4.1.tar.xz) = 1970196 diff --git a/x11/plasma6-plasma-activities-stats/distinfo b/x11/plasma6-plasma-activities-stats/distinfo index 8d0560e3ecc8..60b54f411add 100644 --- a/x11/plasma6-plasma-activities-stats/distinfo +++ b/x11/plasma6-plasma-activities-stats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010515 -SHA256 (KDE/plasma/6.4.0/plasma-activities-stats-6.4.0.tar.xz) = 9313658906d81bf296d9e98ac19790b83e888ba89f1123c62b0a72f938f28ee6 -SIZE (KDE/plasma/6.4.0/plasma-activities-stats-6.4.0.tar.xz) = 83016 +TIMESTAMP = 1750789650 +SHA256 (KDE/plasma/6.4.1/plasma-activities-stats-6.4.1.tar.xz) = adf5f4bfa758ff41309978ef50bbf5ff0a596eaf9137386d4b870e7bcc2330b7 +SIZE (KDE/plasma/6.4.1/plasma-activities-stats-6.4.1.tar.xz) = 83032 diff --git a/x11/plasma6-plasma-activities/distinfo b/x11/plasma6-plasma-activities/distinfo index c44989a64985..19c830908b28 100644 --- a/x11/plasma6-plasma-activities/distinfo +++ b/x11/plasma6-plasma-activities/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010513 -SHA256 (KDE/plasma/6.4.0/plasma-activities-6.4.0.tar.xz) = 1a8f034bb895c757798c5be87a20db54696f45eede3d71b8b815cf666cfceb8c -SIZE (KDE/plasma/6.4.0/plasma-activities-6.4.0.tar.xz) = 66388 +TIMESTAMP = 1750789648 +SHA256 (KDE/plasma/6.4.1/plasma-activities-6.4.1.tar.xz) = 0ec0692b5dcb05fc82d1e7f7285ab82da2269ddb7d0318b8f4a61038da44d963 +SIZE (KDE/plasma/6.4.1/plasma-activities-6.4.1.tar.xz) = 66368 diff --git a/x11/plasma6-plasma-desktop/distinfo b/x11/plasma6-plasma-desktop/distinfo index ca47c6c10655..5163a3d948c0 100644 --- a/x11/plasma6-plasma-desktop/distinfo +++ b/x11/plasma6-plasma-desktop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010516 -SHA256 (KDE/plasma/6.4.0/plasma-desktop-6.4.0.tar.xz) = 18e114033c182d263c937f5bc41793252931dcdac22b04d49d33a0109bb2aeb2 -SIZE (KDE/plasma/6.4.0/plasma-desktop-6.4.0.tar.xz) = 16745856 +TIMESTAMP = 1750789651 +SHA256 (KDE/plasma/6.4.1/plasma-desktop-6.4.1.tar.xz) = b5cf7bf560c8a4aff5a1219cfa417a876b982071a3bb801d2aff53dbf18a0584 +SIZE (KDE/plasma/6.4.1/plasma-desktop-6.4.1.tar.xz) = 16748588 diff --git a/x11/plasma6-plasma-integration/distinfo b/x11/plasma6-plasma-integration/distinfo index d84cb957f668..3eab4c119048 100644 --- a/x11/plasma6-plasma-integration/distinfo +++ b/x11/plasma6-plasma-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010516 -SHA256 (KDE/plasma/6.4.0/plasma-integration-6.4.0.tar.xz) = a7186820528def6f887b642efa7bfb4c4e148d14e65ef0ab787fc35a62e281d0 -SIZE (KDE/plasma/6.4.0/plasma-integration-6.4.0.tar.xz) = 97876 +TIMESTAMP = 1750789652 +SHA256 (KDE/plasma/6.4.1/plasma-integration-6.4.1.tar.xz) = 12813db0d66855505701a9a6222e6a513a5557890325f10ca1fcbf787d91ede3 +SIZE (KDE/plasma/6.4.1/plasma-integration-6.4.1.tar.xz) = 97872 diff --git a/x11/plasma6-plasma-workspace/Makefile b/x11/plasma6-plasma-workspace/Makefile index 82bf81e8ba03..c083fcb7630d 100644 --- a/x11/plasma6-plasma-workspace/Makefile +++ b/x11/plasma6-plasma-workspace/Makefile @@ -1,63 +1,62 @@ PORTNAME= plasma-workspace DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-plasma COMMENT= KDE Plasma Workspace MAINTAINER= kde@FreeBSD.org BUILD_DEPENDS= wayland-protocols>=0:graphics/wayland-protocols LIB_DEPENDS= libcanberra.so:audio/libcanberra \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libicui18n.so:devel/icu \ libpipewire-0.3.so:multimedia/pipewire \ libqalculate.so:math/libqalculate \ libudev.so:devel/libudev-devd \ libwayland-client.so:graphics/wayland \ libxcb-image.so:x11/xcb-util-image \ libxcb-util.so:x11/xcb-util \ libxkbcommon.so:x11/libxkbcommon \ libQCoro6Core.so:devel/qcoro@qt6 RUN_DEPENDS= kio-extras>=24.12.3:devel/kio-extras \ kio-fuse>=5.1.0_1:filesystems/kio-fuse \ mkfontscale:x11-fonts/mkfontscale \ oxygen-icons>=0:x11-themes/oxygen-icons \ xmessage:x11/xmessage \ xrdb:x11/xrdb \ xset:x11/xset USES= cmake desktop-file-utils gettext gl kde:6 pkgconfig python \ qt:6 shebangfix tar:xz xorg USE_GL= gl opengl USE_KDE= activities activities-stats archive attica auth baloo \ bookmarks colorscheme completion config configwidgets \ coreaddons crash dbusaddons doctools filemetadata globalaccel \ guiaddons holidays i18n iconthemes idletime itemmodels \ itemviews jobwidgets kcmutils kdeclarative kio kirigami-addons \ kirigami2 kpipewire kquickcharts kscreenlocker kwin \ layer-shell-qt libkexiv2 libkscreen libksysguard libplasma \ newstuff notifications notifyconfig package parts phonon \ plasma5support prison runner service solid sonnet \ statusnotifieritem svg syntaxhighlighting texteditor \ textwidgets unitconversion userfeedback wallet wayland \ widgetsaddons windowsystem xmlgui \ ecm:build plasma-wayland-protocols:build \ kwin-x11:run USE_QT= 5compat base declarative location svg wayland USE_XORG= ice sm x11 xau xcb xcursor xext xfixes xft xi xrender xtst SHEBANG_FILES= components/calendar/kconf_update/migrate-calendar-to-plugin-id.py.in CMAKE_ON= PLASMA_X11_DEFAULT_SESSION OPTIONS_DEFINE= GTK GTK_DESC= Global menu bar support for GTK applications GTK_RUN_DEPENDS= appmenu-gtk-module>0:x11/gtk-app-menu post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${PATCH_WRKSRC}/startkde/startplasma.cpp \ ${PATCH_WRKSRC}/login-sessions/plasmawayland.desktop.cmake .include diff --git a/x11/plasma6-plasma-workspace/distinfo b/x11/plasma6-plasma-workspace/distinfo index 5bf58df9b83f..e7d4ef190044 100644 --- a/x11/plasma6-plasma-workspace/distinfo +++ b/x11/plasma6-plasma-workspace/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750010517 -SHA256 (KDE/plasma/6.4.0/plasma-workspace-6.4.0.tar.xz) = 961ef54f7fd21f212f8d633300f1bb0520524aa9794e433ae1abe16ac0560b2b -SIZE (KDE/plasma/6.4.0/plasma-workspace-6.4.0.tar.xz) = 20820964 +TIMESTAMP = 1750789653 +SHA256 (KDE/plasma/6.4.1/plasma-workspace-6.4.1.tar.xz) = 2067b539e57445bb35fc3b589a4f5f7aee31549906e220e88d8790d7af32aee4 +SIZE (KDE/plasma/6.4.1/plasma-workspace-6.4.1.tar.xz) = 20821012