diff --git a/.forgejo/workflows/build-rpms.yml b/.forgejo/workflows/build-rpms.yml index e7fe5f4..d95b93d 100644 --- a/.forgejo/workflows/build-rpms.yml +++ b/.forgejo/workflows/build-rpms.yml @@ -8,7 +8,7 @@ on: jobs: build: - runs-on: almalinux10 + runs-on: almalinux-10 strategy: fail-fast: false matrix: @@ -26,33 +26,64 @@ jobs: dnf install -y \ rpm-build \ rpmdevtools \ - dnf-plugins-core \ + mock \ curl + - name: Add runner user to mock group + run: usermod -aG mock $(whoami) || true + - name: Setup RPM build tree run: rpmdev-setuptree - - name: Install build dependencies for ${{ matrix.spec }} - run: | - dnf builddep -y ${{ matrix.spec }} - - name: Download sources for ${{ matrix.spec }} run: | - spectool -g -R ${{ matrix.spec }} + spectool -g -C ~/rpmbuild/SOURCES/ ${{ matrix.spec }} - - name: Build RPM from ${{ matrix.spec }} + - name: Build SRPM from ${{ matrix.spec }} run: | - rpmbuild -ba \ + rpmbuild -bs \ --define "_topdir ${HOME}/rpmbuild" \ + --define "_disable_source_fetch 0" \ ${{ matrix.spec }} + PKGNAME=$(rpmspec -q --srpm --queryformat "%{NAME}-%{VERSION}-%{RELEASE}.src.rpm" ${{ matrix.spec }}) + echo "SRPM_PATH=${HOME}/rpmbuild/SRPMS/${PKGNAME}" >> "$GITHUB_ENV" + + - name: Build RPM with mock + run: | + cat > /etc/mock/custom.cfg <<'MOCKEOF' + include('/etc/mock/alma+epel-10-x86_64.cfg') + config_opts['root'] = 'custom' + config_opts['yum.conf'] += """ + [sonicde-rpm] + name=SonicDE RPM + baseurl=https://pc-rytteren.dk/forge/api/packages/anders/rpm + enabled=1 + gpgcheck=0 + + [xlibre-xserver] + name=Copr xlibre-xserver + baseurl=https://download.copr.fedorainfracloud.org/results/@xlibre/xlibre-xserver/rhel+epel-10-$basearch/ + type=rpm-md + skip_if_unavailable=True + gpgcheck=1 + gpgkey=https://download.copr.fedorainfracloud.org/results/@xlibre/xlibre-xserver/pubkey.gpg + repo_gpgcheck=0 + enabled=1 + """ + MOCKEOF + + mock --root custom --scrub=all || true + mock --root custom --init + mock --root custom --chroot 'groupadd -g 135 mock 2>/dev/null || true; useradd -u 135 -g 135 -d /builddir -s /bin/bash mockbuild 2>/dev/null || true' + mock --root custom --resultdir "${HOME}/mock-results" --no-clean --rebuild "${{ env.SRPM_PATH }}" - name: Upload RPMs to Forgejo Package Registry run: | - FORGEJO_URL="${{ env.GITHUB_SERVER_URL }}" + FORGEJO_URL="${{ github.server_url }}" OWNER="${{ github.repository_owner }}" TOKEN="${{ secrets.PACKAGE_TOKEN }}" - find "${HOME}/rpmbuild/RPMS" -name "*.rpm" | while read rpm; do + find "${HOME}/mock-results" -name "*.rpm" ! -name "*.src.rpm" | while read rpm; do FILENAME=$(basename "$rpm") echo "Uploading $FILENAME ..." curl --fail-with-body \ @@ -60,3 +91,9 @@ jobs: --upload-file "$rpm" \ "${FORGEJO_URL}/api/packages/${OWNER}/rpm/upload" done + + - name: Clean up build artifacts + if: always() + run: | + rm -rf "${HOME}/mock-results" + rm -rf "${HOME}/rpmbuild/SRPMS" diff --git a/SDL2/SDL2-2.0.22-prefer-wayland.patch b/SDL2/SDL2-2.0.22-prefer-wayland.patch new file mode 100644 index 0000000..af8a745 --- /dev/null +++ b/SDL2/SDL2-2.0.22-prefer-wayland.patch @@ -0,0 +1,81 @@ +From 68d8a2c6b4f732920df40bd79dc3c18b71a4a349 Mon Sep 17 00:00:00 2001 +From: Neal Gompa +Date: Fri, 29 Apr 2022 23:39:39 -0400 +Subject: [PATCH] Revert "Revert "video: Prefer Wayland over X11"" + +For Fedora/RHEL, we want to continue using Wayland by default. + +The majority of issues around Wayland by default seem to center +around cases that are issues for the Steam Runtime's bundled +copy of SDL and proprietary games that depend on that runtime. + +These issues do not apply to us. + +This reverts commit 254fcc90eb22bb159ab365ad956222a9c5632841. +--- + src/video/SDL_video.c | 24 ++++++++++++------------ + 1 file changed, 12 insertions(+), 12 deletions(-) + +diff --git a/src/video/SDL_video.c b/src/video/SDL_video.c +index 2b896c44b..6f31f4c9e 100644 +--- a/src/video/SDL_video.c ++++ b/src/video/SDL_video.c +@@ -61,12 +61,12 @@ static VideoBootStrap *bootstrap[] = { + #if SDL_VIDEO_DRIVER_COCOA + &COCOA_bootstrap, + #endif +-#if SDL_VIDEO_DRIVER_X11 +- &X11_bootstrap, +-#endif + #if SDL_VIDEO_DRIVER_WAYLAND + &Wayland_bootstrap, + #endif ++#if SDL_VIDEO_DRIVER_X11 ++ &X11_bootstrap, ++#endif + #if SDL_VIDEO_DRIVER_VIVANTE + &VIVANTE_bootstrap, + #endif +@@ -4275,12 +4275,12 @@ SDL_IsScreenKeyboardShown(SDL_Window *window) + #if SDL_VIDEO_DRIVER_UIKIT + #include "uikit/SDL_uikitmessagebox.h" + #endif +-#if SDL_VIDEO_DRIVER_X11 +-#include "x11/SDL_x11messagebox.h" +-#endif + #if SDL_VIDEO_DRIVER_WAYLAND + #include "wayland/SDL_waylandmessagebox.h" + #endif ++#if SDL_VIDEO_DRIVER_X11 ++#include "x11/SDL_x11messagebox.h" ++#endif + #if SDL_VIDEO_DRIVER_HAIKU + #include "haiku/SDL_bmessagebox.h" + #endif +@@ -4388,17 +4388,17 @@ SDL_ShowMessageBox(const SDL_MessageBoxData *messageboxdata, int *buttonid) + retval = 0; + } + #endif +-#if SDL_VIDEO_DRIVER_X11 ++#if SDL_VIDEO_DRIVER_WAYLAND + if (retval == -1 && +- SDL_MessageboxValidForDriver(messageboxdata, SDL_SYSWM_X11) && +- X11_ShowMessageBox(messageboxdata, buttonid) == 0) { ++ SDL_MessageboxValidForDriver(messageboxdata, SDL_SYSWM_WAYLAND) && ++ Wayland_ShowMessageBox(messageboxdata, buttonid) == 0) { + retval = 0; + } + #endif +-#if SDL_VIDEO_DRIVER_WAYLAND ++#if SDL_VIDEO_DRIVER_X11 + if (retval == -1 && +- SDL_MessageboxValidForDriver(messageboxdata, SDL_SYSWM_WAYLAND) && +- Wayland_ShowMessageBox(messageboxdata, buttonid) == 0) { ++ SDL_MessageboxValidForDriver(messageboxdata, SDL_SYSWM_X11) && ++ X11_ShowMessageBox(messageboxdata, buttonid) == 0) { + retval = 0; + } + #endif +-- +2.35.1 + diff --git a/SDL2/SDL2.spec b/SDL2/SDL2.spec new file mode 100644 index 0000000..42ca5ce --- /dev/null +++ b/SDL2/SDL2.spec @@ -0,0 +1,478 @@ +# For the generated library symbol suffix +%if 0%{?__isa_bits} == 32 +%global libsymbolsuffix %{nil} +%else +%global libsymbolsuffix ()(%{__isa_bits}bit) +%endif + +# For declaring rich dependency on libdecor +%global libdecor_majver 0 + +Name: SDL2 +Version: 2.28.5 +Release: 6%{?dist} +Summary: Cross-platform multimedia library +License: Zlib AND MIT AND Apache-2.0 AND (Apache-2.0 OR MIT) +URL: https://www.libsdl.org/ +Source0: https://www.libsdl.org/release/%{name}-%{version}.tar.gz +Source1: SDL_config.h +Source2: SDL_revision.h + +Patch0: multilib.patch +# Prefer Wayland by default +Patch1: SDL2-2.0.22-prefer-wayland.patch + +BuildRequires: git-core +BuildRequires: cmake +BuildRequires: make +BuildRequires: gcc +BuildRequires: gcc-c++ +BuildRequires: alsa-lib-devel +BuildRequires: mesa-libGL-devel +BuildRequires: mesa-libGLU-devel +BuildRequires: mesa-libEGL-devel +BuildRequires: mesa-libGLES-devel +BuildRequires: libXext-devel +BuildRequires: libX11-devel +BuildRequires: libXi-devel +BuildRequires: libXrandr-devel +BuildRequires: libXrender-devel +BuildRequires: libXinerama-devel +BuildRequires: libXcursor-devel +BuildRequires: systemd-devel +BuildRequires: pkgconfig(libusb-1.0) +# PulseAudio +BuildRequires: pkgconfig(libpulse-simple) +# Jack +BuildRequires: pkgconfig(jack) +# PipeWire +BuildRequires: pkgconfig(libpipewire-0.3) +# D-Bus +BuildRequires: pkgconfig(dbus-1) +# IBus +BuildRequires: pkgconfig(ibus-1.0) +# Wayland +BuildRequires: pkgconfig(libdecor-%{libdecor_majver}) +BuildRequires: pkgconfig(wayland-client) +BuildRequires: pkgconfig(wayland-egl) +BuildRequires: pkgconfig(wayland-cursor) +BuildRequires: pkgconfig(wayland-protocols) +BuildRequires: pkgconfig(wayland-scanner) +BuildRequires: pkgconfig(xkbcommon) +# Vulkan +BuildRequires: vulkan-devel +# KMS +BuildRequires: mesa-libgbm-devel +BuildRequires: libdrm-devel + +# Ensure libdecor is pulled in when libwayland-client is (rhbz#1992804) +Requires: (libdecor-%{libdecor_majver}.so.%{libdecor_majver}%{libsymbolsuffix} if libwayland-client) + +%description +Simple DirectMedia Layer (SDL) is a cross-platform multimedia library designed +to provide fast access to the graphics frame buffer and audio device. + +%package devel +Summary: Files needed to develop Simple DirectMedia Layer applications +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: mesa-libEGL-devel%{?_isa} +Requires: mesa-libGLES-devel%{?_isa} +Requires: libX11-devel%{?_isa} +# Conflict with versions before libSDLmain moved here +Conflicts: %{name}-static < 2.0.18-4 + +%description devel +Simple DirectMedia Layer (SDL) is a cross-platform multimedia library designed +to provide fast access to the graphics frame buffer and audio device. This +package provides the libraries, include files, and other resources needed for +developing SDL applications. + +%package static +Summary: Static libraries for SDL2 +# Needed to keep CMake happy +Requires: %{name}-devel%{?_isa} = %{version}-%{release} +# Conflict with versions before libSDLmain moved to -devel +Conflicts: %{name}-devel < 2.0.18-4 + +%description static +Static libraries for SDL2. + +%prep +%autosetup -S git +sed -i -e 's/\r//g' TODO.txt README.md WhatsNew.txt BUGS.txt LICENSE.txt CREDITS.txt README-SDL.txt + +%build +# Deal with new CMake policy around whitespace in LDFLAGS... +export LDFLAGS="%{shrink:%{build_ldflags}}" + +%cmake \ + -DSDL_DLOPEN=ON \ + -DSDL_VIDEO_KMSDRM=ON \ + -DSDL_ARTS=OFF \ + -DSDL_ESD=OFF \ + -DSDL_NAS=OFF \ + -DSDL_PULSEAUDIO_SHARED=ON \ + -DSDL_JACK_SHARED=ON \ + -DSDL_PIPEWIRE=OFF \ + -DSDL_ALSA=ON \ + -DSDL_VIDEO_WAYLAND=ON \ + -DSDL_LIBDECOR_SHARED=ON \ + -DSDL_VIDEO_VULKAN=ON \ + -DSDL_SSE3=OFF \ + -DSDL_RPATH=OFF \ + -DSDL_STATIC=ON \ + -DSDL_STATIC_PIC=ON \ +%ifarch ppc64le + -DSDL_ALTIVEC=OFF \ +%endif + +%cmake_build + +%install +%cmake_install + +# Rename SDL_config.h to SDL_config-.h to avoid file conflicts on +# multilib systems and install SDL_config.h wrapper +mv %{buildroot}%{_includedir}/SDL2/SDL_config.h %{buildroot}%{_includedir}/SDL2/SDL_config-%{_arch}.h +install -p -m 644 %{SOURCE1} %{buildroot}%{_includedir}/SDL2/SDL_config.h + +# Rename SDL_revision.h to SDL_revision-.h to avoid file conflicts on +# multilib systems and install SDL_revision.h wrapper +# TODO: Figure out how in the hell the SDL_REVISION changes between architectures on the same SRPM. +mv %{buildroot}%{_includedir}/SDL2/SDL_revision.h %{buildroot}%{_includedir}/SDL2/SDL_revision-%{_arch}.h +install -p -m 644 %{SOURCE2} %{buildroot}%{_includedir}/SDL2/SDL_revision.h + +%files +%license LICENSE.txt +%doc BUGS.txt CREDITS.txt README-SDL.txt +%{_libdir}/libSDL2-2.0.so.0* + +%files devel +%doc README.md TODO.txt WhatsNew.txt +%{_bindir}/*-config +%{_libdir}/lib*.so +%{_libdir}/libSDL2main.a +%{_libdir}/pkgconfig/sdl2.pc +%dir %{_libdir}/cmake/SDL2 +%{_libdir}/cmake/SDL2/SDL2Config*.cmake +%{_libdir}/cmake/SDL2/SDL2Targets*.cmake +%{_libdir}/cmake/SDL2/SDL2mainTargets*.cmake +%{_libdir}/cmake/SDL2/sdlfind.cmake +%{_includedir}/SDL2 +%{_datadir}/aclocal/* +%{_libdir}/libSDL2_test.a +%{_libdir}/cmake/SDL2/SDL2testTargets*.cmake + +%files static +%license LICENSE.txt +%{_libdir}/libSDL2.a +%{_libdir}/cmake/SDL2/SDL2staticTargets*.cmake + +%changelog +* Tue Oct 29 2024 Troy Dawson - 2.28.5-6 +- Bump release for October 2024 mass rebuild: + Resolves: RHEL-64018 + +* Mon Jun 24 2024 Troy Dawson - 2.28.5-5 +- Bump release for June 2024 mass rebuild + +* Tue Jun 04 2024 Wim Taymans - 2.28.5-4 +- Bump version after removing BR: libXScrnSaver-devel + +* Mon Jan 22 2024 Fedora Release Engineering - 2.28.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Fri Jan 19 2024 Fedora Release Engineering - 2.28.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Nov 5 2023 Tom Callaway - 2.28.5-1 +- update to 2.28.5 + +* Mon Oct 2 2023 Tom Callaway - 2.28.4-1 +- update to 2.28.4 + +* Wed Jul 19 2023 Fedora Release Engineering - 2.26.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Mon May 1 2023 Tom Callaway - 2.26.5-1 +- update to 2.26.5 + +* Tue Mar 14 2023 Tom Callaway - 2.26.4-1 +- update to 2.26.4 + +* Wed Feb 8 2023 Tom Callaway - 2.26.3-1 +- update to 2.26.3 + +* Sat Jan 21 2023 Tom Callaway - 2.26.2-1 +- update to 2.26.2 + +* Wed Jan 18 2023 Fedora Release Engineering - 2.26.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Tue Nov 22 2022 Neal Gompa - 2.26.0-1 +- Update to 2.26.0 + +* Fri Aug 19 2022 Neal Gompa - 2.24.0-1 +- Update to 2.24.0 +- Drop backported patches included in this release + +* Wed Jul 20 2022 Fedora Release Engineering - 2.0.22-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Thu Jul 07 2022 Ian Mullins - 2.0.22-3 +- Fix assumption that DRI_DEVNAME begins at 0 patch + +* Sat Apr 30 2022 Neal Gompa - 2.0.22-2 +- Use the correct BR for libusb + +* Sat Apr 30 2022 Neal Gompa - 2.0.22-1 +- Update to 2.0.22 +- Drop backported patches included in this release + +* Tue Feb 08 2022 Neal Gompa - 2.0.20-3 +- Backport Wayland and PipeWire fixes from upstream + +* Wed Jan 19 2022 Fedora Release Engineering - 2.0.20-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Tue Jan 11 2022 Neal Gompa - 2.0.20-1 +- Update to 2.0.20 +- Drop backported patches included in this release + +* Fri Jan 07 2022 Neal Gompa - 2.0.18-5 +- Refresh SDL target split patch to include targets correctly + +* Fri Jan 07 2022 Neal Gompa - 2.0.18-4 +- Move libSDLmain from -static to -devel + +* Tue Jan 04 2022 Neal Gompa - 2.0.18-3 +- Backport fix for building against wayland-1.20+ +- Add patch to split SDL2 CMake targets for static libraries + +* Wed Dec 01 2021 Neal Gompa - 2.0.18-2 +- Use correct build options + +* Wed Dec 01 2021 Neal Gompa - 2.0.18-1 +- Update to 2.0.18 + +* Wed Oct 6 2021 Tom Callaway - 2.0.16-4 +- fix multilib conflict with SDL_revision.h (bz 2008838) + +* Sun Sep 26 2021 Neal Gompa - 2.0.16-3 +- Backport select fixes from upstream + + Support legacy 'pulse' alias for PulseAudio driver + + Fix handling of Ctrl key on Wayland + + Add support for HiDPI cursors on Wayland + + Fix keymap support on Wayland (rhbz#2007969) + + Use EGL_EXT_present_opaque when available on Wayland + + Expose xdg_toplevel to SysWM on Wayland + +* Sun Aug 22 2021 Neal Gompa - 2.0.16-2 +- Ensure libdecor is pulled in when libwayland-client is (rhbz#1992804) + +* Tue Aug 10 2021 Neal Gompa - 2.0.16-1 +- Update to 2.0.16 + +* Wed Jul 21 2021 Fedora Release Engineering - 2.0.14-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Thu Jun 3 2021 Tom Callaway - 2.0.14-5 +- add -static Requires to -devel to make CMake stop failing on missing files (bz1965359) + +* Mon May 17 2021 Neal Gompa - 2.0.14-4 +- Switch to CMake to build SDL2 +- Build JACK support unconditionally since PipeWire-JACK exists in RHEL 9 + +* Mon Feb 22 2021 Hans de Goede - 2.0.14-3 +- SDL2 no longer uses audiofile, drop the audiofile-devel BuildRequires + +* Mon Jan 25 2021 Fedora Release Engineering - 2.0.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Thu Jan 21 2021 Pete Walter - 2.0.14-1 +- Update to 2.0.14 +- Rebase multilib.patch +- Don't use globs in the form of libFOO.so.* for listing files + +* Tue Jan 12 2021 Wim Taymans - 2.0.12-5 +- Disable JACK on rhel >= 8 + +* Sat Aug 01 2020 Fedora Release Engineering - 2.0.12-4 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon Jul 27 2020 Fedora Release Engineering - 2.0.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon Jul 13 2020 Tom Stellard - 2.0.12-2 +- Use make macros +- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro + +* Wed Mar 11 2020 Pete Walter - 2.0.12-1 +- Update to 2.0.12 + +* Tue Feb 11 2020 Tom Callaway - 2.0.10-3 +- apply upstream fix for FTBFS + +* Tue Jan 28 2020 Fedora Release Engineering - 2.0.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Fri Jul 26 2019 Pete Walter - 2.0.10-1 +- Update to 2.0.10 + +* Wed Jul 24 2019 Fedora Release Engineering - 2.0.9-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Fri Feb 15 2019 Tom Callaway - 2.0.9-3 +- use khrplatform defines, not ptrdiff_t + +* Thu Jan 31 2019 Fedora Release Engineering - 2.0.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Fri Nov 2 2018 Tom Callaway - 2.0.9-1 +- update to 2.0.9 + +* Thu Jul 12 2018 Fedora Release Engineering - 2.0.8-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Mon May 21 2018 Adam Jackson - 2.0.8-5 +- Backport a crash/hang fix from 2.0.9 (#1580541) + +* Wed Apr 11 2018 Tom Callaway - 2.0.8-4 +- enable video-kmsdrm + +* Fri Mar 30 2018 David Abdurachmanov - 2.0.8-3 +- Add riscv64 to SDL_config.h + +* Sun Mar 04 2018 Miro Hrončok - 2.0.8-2 +- Disable altivec on ppc64le (RHBZ #1551338) + +* Sun Mar 4 2018 Peter Robinson 2.0.8-1 +- Update to 2.0.8 + +* Wed Feb 07 2018 Fedora Release Engineering - 2.0.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Wed Jan 31 2018 Igor Gnatenko - 2.0.7-3 +- Switch to %%ldconfig_scriptlets + +* Sun Nov 05 2017 Igor Gnatenko - 2.0.7-2 +- Fix IBus + +* Tue Oct 24 2017 Igor Gnatenko - 2.0.7-1 +- Update to 2.0.7 + +* Thu Oct 19 2017 Igor Gnatenko - 2.0.6-4 +- Fully fix last overflow + +* Wed Oct 11 2017 Igor Gnatenko - 2.0.6-3 +- Fix potential overflow in surface allocation + +* Thu Oct 05 2017 Igor Gnatenko - 2.0.6-2 +- Fix invalid dbus arguments + +* Sat Sep 23 2017 Igor Gnatenko - 2.0.6-1 +- Update to 2.0.6 + +* Wed Aug 02 2017 Fedora Release Engineering - 2.0.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 2.0.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Feb 10 2017 Fedora Release Engineering - 2.0.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Fri Jan 27 2017 Igor Gnatenko - 2.0.5-3 +- Fix NULL dereference (RHBZ #1416945) + +* Wed Oct 26 2016 Dan Horák - 2.0.5-2 +- fix FTBFS on ppc64/ppc64le + +* Thu Oct 20 2016 Igor Gnatenko - 2.0.5-1 +- Update to 2.0.5 (RHBZ #1387238) + +* Mon Sep 05 2016 Kalev Lember - 2.0.4-9 +- Backport Wayland fixes from upstream + +* Sun Aug 14 2016 Igor Gnatenko - 2.0.4-8 +- Fix whitespaces in CMake file (RHBZ #1366868) + +* Sun Jul 10 2016 Igor Gnatenko - 2.0.4-7 +- Remove useless Requirements from -devel subpkg + +* Sun Jul 10 2016 Igor Gnatenko - 2.0.4-6 +- Add ibus support + +* Sun Jul 10 2016 Joseph Mullally - 2.0.4-5 +- fix Wayland dynamic symbol loading (bz1354155) + +* Thu Feb 25 2016 Tom Callaway - 2.0.4-4 +- enable static subpackage (bz1253930) + +* Fri Feb 5 2016 Tom Callaway - 2.0.4-3 +- fix compile against latest wayland + +* Wed Feb 03 2016 Fedora Release Engineering - 2.0.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Mon Jan 04 2016 Tom Callaway - 2.0.4-1 +- update to 2.0.4 + +* Fri Sep 04 2015 Michal Toman - 2.0.3-7 +- Add support for MIPS architecture to SDL_config.h + +* Tue Jun 16 2015 Fedora Release Engineering - 2.0.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Tue Jun 2 2015 Tom Callaway - 2.0.3-5 +- remove code preventing builds with ancient gcc + +* Fri Aug 15 2014 Fedora Release Engineering - 2.0.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Wed Jun 11 2014 Karsten Hopp 2.0.3-3 +- fix filename of SDL_config.h for ppc64le + +* Fri Jun 06 2014 Fedora Release Engineering - 2.0.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Wed Mar 19 2014 Igor Gnatenko - 2.0.3-1 +- 2.0.3 upstream release + +* Sat Mar 08 2014 Igor Gnatenko - 2.0.2-1 +- 2.0.2 upstream release +- Enable wayland backend + +* Tue Dec 10 2013 Igor Gnatenko - 2.0.1-2 +- Add libXinerama, libudev, libXcursor support (RHBZ #1039702) + +* Thu Oct 24 2013 Tom Callaway - 2.0.1-1 +- update to 2.0.1 + +* Sat Aug 24 2013 Igor Gnatenko - 2.0.0-3 +- Fix multilib issues + +* Tue Aug 13 2013 Igor Gnatenko - 2.0.0-2 +- SDL2 is released. Announce: +- http://lists.libsdl.org/pipermail/sdl-libsdl.org/2013-August/089854.html + +* Sat Aug 10 2013 Igor Gnatenko - 2.0.0-1.rc4 +- Update to latest SDL2 (08.08.2013) + +* Tue Jul 30 2013 Igor Gnatenko - 2.0.0-1.rc3 +- Fix Licenses +- some cleanups in spec + +* Tue Jul 30 2013 Igor Gnatenko - 2.0.0-1.rc2 +- Delete -static package +- Fix License tag +- Fix end-of-line in documents +- Remove all spike-nails EL-specify (if someone will want to do - 'patches are welcome') +- Change Release tag to .rcX%%{?dist} (maintainer has changed released tarballs) + +* Mon Jul 29 2013 Igor Gnatenko - 2.0.0-1.rc1 +- Some fixes in spec and cleanup + +* Mon Jul 29 2013 Jon Ciesla - 2.0.0-1 +- Ported from SDL 1.2.15-10 diff --git a/SDL2/SDL_config.h b/SDL2/SDL_config.h new file mode 100644 index 0000000..7862549 --- /dev/null +++ b/SDL2/SDL_config.h @@ -0,0 +1,83 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2013 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * This SDL_config.h is a wrapper include file for the original SDL_config.h, + * which has been renamed to SDL_config-.h. There are conflicts for the + * original SDL_config.h on multilib systems, which result from arch-specific + * configuration options. Please do not use the arch-specific file directly. + * + * Copyright (C) 2013 Igor Gnatenko + * Igor Gnatenko + */ + +/** + * \file SDL_config.h + */ + +#ifdef SDL_config_wrapper_h +#error "SDL_config_wrapper_h should not be defined!" +#endif +#define SDL_config_wrapper_h + +#if defined(__i386__) +#include "SDL_config-i386.h" +#elif defined(__ia64__) +#include "SDL_config-ia64.h" +#elif defined(__powerpc64__) +# if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ +#include "SDL_config-ppc64.h" +# else +#include "SDL_config-ppc64le.h" +# endif +#elif defined(__powerpc__) +#include "SDL_config-ppc.h" +#elif defined(__s390x__) +#include "SDL_config-s390x.h" +#elif defined(__s390__) +#include "SDL_config-s390.h" +#elif defined(__x86_64__) +#include "SDL_config-x86_64.h" +#elif defined(__arm__) +#include "SDL_config-arm.h" +#elif defined(__alpha__) +#include "SDL_config-alpha.h" +#elif defined(__sparc__) && defined (__arch64__) +#include "SDL_config-sparc64.h" +#elif defined(__sparc__) +#include "SDL_config-sparc.h" +#elif defined(__aarch64__) +#include "SDL_config-aarch64.h" +#elif defined(__mips64) && defined(__MIPSEL__) +#include "SDL_config-mips64el.h" +#elif defined(__mips64) +#include "SDL_config-mips64.h" +#elif defined(__mips) && defined(__MIPSEL__) +#include "SDL_config-mipsel.h" +#elif defined(__mips) +#include "SDL_config-mips.h" +#elif defined(__riscv) && defined(__riscv_xlen) && __riscv_xlen == 64 +#include "SDL_config-riscv64.h" +#else +#error "The SDL2-devel package is not usable with the architecture." +#endif + +#undef SDL_config_wrapper_h diff --git a/SDL2/SDL_revision.h b/SDL2/SDL_revision.h new file mode 100644 index 0000000..e43c4ec --- /dev/null +++ b/SDL2/SDL_revision.h @@ -0,0 +1,83 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2020 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * This SDL_revision.h is a wrapper include file for the original SDL_revision.h, + * which has been renamed to SDL_revision-.h. There are conflicts for the + * original SDL_revision.h on multilib systems, which result from REVISION + * inconsistency between architecture builds, though, I'm not sure why. + * Computers are weird. + * + * Copyright (C) 2021 Tom Callaway + */ + +/** + * \file SDL_revision.h + */ + +#ifdef SDL_revision_wrapper_h +#error "SDL_revision_wrapper_h should not be defined!" +#endif +#define SDL_revision_wrapper_h + +#if defined(__i386__) +#include "SDL_revision-i386.h" +#elif defined(__ia64__) +#include "SDL_revision-ia64.h" +#elif defined(__powerpc64__) +# if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ +#include "SDL_revision-ppc64.h" +# else +#include "SDL_revision-ppc64le.h" +# endif +#elif defined(__powerpc__) +#include "SDL_revision-ppc.h" +#elif defined(__s390x__) +#include "SDL_revision-s390x.h" +#elif defined(__s390__) +#include "SDL_revision-s390.h" +#elif defined(__x86_64__) +#include "SDL_revision-x86_64.h" +#elif defined(__arm__) +#include "SDL_revision-arm.h" +#elif defined(__alpha__) +#include "SDL_revision-alpha.h" +#elif defined(__sparc__) && defined (__arch64__) +#include "SDL_revision-sparc64.h" +#elif defined(__sparc__) +#include "SDL_revision-sparc.h" +#elif defined(__aarch64__) +#include "SDL_revision-aarch64.h" +#elif defined(__mips64) && defined(__MIPSEL__) +#include "SDL_revision-mips64el.h" +#elif defined(__mips64) +#include "SDL_revision-mips64.h" +#elif defined(__mips) && defined(__MIPSEL__) +#include "SDL_revision-mipsel.h" +#elif defined(__mips) +#include "SDL_revision-mips.h" +#elif defined(__riscv) && defined(__riscv_xlen) && __riscv_xlen == 64 +#include "SDL_revision-riscv64.h" +#else +#error "The SDL2-devel package is not usable with the architecture." +#endif + +#undef SDL_revision_wrapper_h diff --git a/SDL2/multilib.patch b/SDL2/multilib.patch new file mode 100644 index 0000000..db59b08 --- /dev/null +++ b/SDL2/multilib.patch @@ -0,0 +1,27 @@ +diff --git a/sdl2-config.in b/sdl2-config.in +index f6eca7668..93460f7ae 100644 +--- a/sdl2-config.in ++++ b/sdl2-config.in +@@ -7,7 +7,6 @@ bindir=$(cd -P -- "$(dirname -- "$0")" && printf '%s\n' "$(pwd -P)") + prefix=$(cd -P -- "$bindir/@bin_prefix_relpath@" && printf '%s\n' "$(pwd -P)") + exec_prefix=@exec_prefix@ + exec_prefix_set=no +-libdir=@libdir@ + + @ENABLE_STATIC_FALSE@usage="\ + @ENABLE_STATIC_FALSE@Usage: $0 [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--cflags] [--libs]" +@@ -49,12 +48,11 @@ while test $# -gt 0; do + echo -I@includedir@/SDL2 @SDL_CFLAGS@ + ;; + @ENABLE_SHARED_TRUE@ --libs) +-@ENABLE_SHARED_TRUE@ echo -L@libdir@ @SDL_RLD_FLAGS@ @SDL_LIBS@ ++@ENABLE_SHARED_TRUE@ echo @SDL_RLD_FLAGS@ @SDL_LIBS@ + @ENABLE_SHARED_TRUE@ ;; + @ENABLE_STATIC_TRUE@@ENABLE_SHARED_TRUE@ --static-libs) + @ENABLE_STATIC_TRUE@@ENABLE_SHARED_FALSE@ --libs|--static-libs) +-@ENABLE_STATIC_TRUE@ sdl_static_libs=$(echo "@SDL_LIBS@ @SDL_STATIC_LIBS@" | sed -E "s#-lSDL2[ $]#$libdir/libSDL2.a #g") +-@ENABLE_STATIC_TRUE@ echo -L@libdir@ $sdl_static_libs ++@ENABLE_STATIC_TRUE@ echo @SDL_LIBS@ @SDL_STATIC_LIBS@ + @ENABLE_STATIC_TRUE@ ;; + *) + echo "${usage}" 1>&2 diff --git a/SonicDE-package-mapping.xlsx b/SonicDE-package-mapping.xlsx new file mode 100644 index 0000000..aede892 Binary files /dev/null and b/SonicDE-package-mapping.xlsx differ diff --git a/copr-build.sh b/copr-build.sh new file mode 100755 index 0000000..fd71aef --- /dev/null +++ b/copr-build.sh @@ -0,0 +1,126 @@ +#!/bin/bash +set -e + +COPR="andersrh/sonicDE" +GIT_URL="https://pc-rytteren.dk/forge/anders/SonicDE-rpmspecs.git" +BRANCH="10_2" +METHOD="rpkg" + +# Build order tiers (sequential within tier for dependency safety) +TIER1=( + sonic-silver-theme + sonic-frameworks-keybind + sonic-frameworks-windowsystem + sonic-keybind-daemon + sonic-sysguard-library + sonic-screen-library + sonic-interface-libraries + sonic-system-info + sonic-login-manager +) + +TIER2=( + sonic-screen + sonic-screenlocker +) + +TIER3=( + sonic-win +) + +TIER4=( + sonic-workspace +) + +TIER5=( + sonic-desktop-interface +) + +# Submit SCM build to Copr (blocks until completion by default) +submit_scm() { + local pkg=$1 + echo "=== Bygger $pkg i Copr (SCM) ===" + copr-cli buildscm "$COPR" \ + --clone-url "$GIT_URL" \ + --commit "$BRANCH" \ + --subdir "$pkg" \ + --spec "$pkg.spec" \ + --method "$METHOD" +} + +# Submit tier in parallel +submit_tier() { + local -n tier=$1 + local tier_name=$2 + local pids=() + + echo "" + echo "========================================" + echo " $tier_name" + echo "========================================" + + for pkg in "${tier[@]}"; do + submit_scm "$pkg" & + pids+=($!) + done + + # Wait for all builds in this tier + for pid in "${pids[@]}"; do + wait $pid || { echo "FEJL: Bygning fejlede i $tier_name"; exit 1; } + done + echo " $tier_name færdig" +} + +usage() { + echo "Brug: $0 [tier1|tier2|tier3|tier4|tier5|all ...]" + echo " tier1 - Byg Tier 1 pakker (uden afhængigheder)" + echo " tier2 - Byg Tier 2 pakker" + echo " tier3 - Byg Tier 3 pakker" + echo " tier4 - Byg Tier 4 pakker" + echo " tier5 - Byg Tier 5 pakker" + echo " all - Byg alle tiers (default hvis intet angivet)" + echo "" + echo "Eksempler:" + echo " $0 tier2 # Kør kun Tier 2" + echo " $0 tier1 tier2 # Kør Tier 1 og 2" + exit 1 +} + +# Determine which tiers to run +if [ $# -eq 0 ]; then + set -- all +fi + +# Validate args +for arg; do + case "$arg" in + tier1|tier2|tier3|tier4|tier5|all) ;; + *) echo "Ukendt argument: $arg"; usage ;; + esac +done + +echo "Bygger SonicDE pakker i Copr fra git repo" +echo "COPR: $COPR" +echo "GIT: $GIT_URL" +echo "Branch: $BRANCH" +echo "" + +for arg; do + case "$arg" in + tier1) submit_tier TIER1 "Tier 1" ;; + tier2) submit_tier TIER2 "Tier 2" ;; + tier3) submit_tier TIER3 "Tier 3" ;; + tier4) submit_tier TIER4 "Tier 4" ;; + tier5) submit_tier TIER5 "Tier 5" ;; + all) + submit_tier TIER1 "Tier 1" + submit_tier TIER2 "Tier 2" + submit_tier TIER3 "Tier 3" + submit_tier TIER4 "Tier 4" + submit_tier TIER5 "Tier 5" + ;; + esac +done + +echo "" +echo "Kørsel færdig." diff --git a/kde-to-sonic.csv b/kde-to-sonic.csv new file mode 100755 index 0000000..a2c6d84 --- /dev/null +++ b/kde-to-sonic.csv @@ -0,0 +1,16 @@ +kf6-kglobalaccel,sonic-frameworks-keybind,ok +kf6-kwindowsystem,sonic-frameworks-windowsystem,ok +libksysguard,sonic-sysguard-library,ok +kinfocenter,sonic-system-info,maybe rebuild with lang oldname +libkscreen,sonic-screen-library,ok +kglobalacceld,sonic-keybind-daemon,ok +libplasma,sonic-interface-libraries,ok +kscreen,sonic-screen,maybe rebuild with lang oldname +kscreenlocker,sonic-screenlocker,! patch version number to 6.6.4 +kwin,sonic-win,ok +plasma-workspace,sonic-workspace,ok +plasma-login-manager,sonic-login-manager,postponed + +--- + +plasma-desktop,sonic-desktop-interface diff --git a/sonic-desktop-interface/breeze-fedora-0.3.tar.gz b/sonic-desktop-interface/breeze-fedora-0.3.tar.gz new file mode 100644 index 0000000..a4d0433 Binary files /dev/null and b/sonic-desktop-interface/breeze-fedora-0.3.tar.gz differ diff --git a/sonic-desktop-interface/hide-virtual-keyboard-indicator-on-sddm.patch b/sonic-desktop-interface/hide-virtual-keyboard-indicator-on-sddm.patch new file mode 100644 index 0000000..c57b940 --- /dev/null +++ b/sonic-desktop-interface/hide-virtual-keyboard-indicator-on-sddm.patch @@ -0,0 +1,13 @@ +diff --git a/sddm-theme/Main.qml b/sddm-theme/Main.qml +index 884165299..cb187da2f 100644 +--- a/sddm-theme/Main.qml ++++ b/sddm-theme/Main.qml +@@ -452,7 +452,7 @@ Item { + userListComponent.mainPasswordBox.forceActiveFocus(); + inputPanel.showHide() + } +- visible: inputPanel.status === Loader.Ready ++ visible: false + + Layout.fillHeight: true + containmentMask: Item { diff --git a/sonic-desktop-interface/sonic-desktop-interface.spec b/sonic-desktop-interface/sonic-desktop-interface.spec new file mode 100644 index 0000000..90bf202 --- /dev/null +++ b/sonic-desktop-interface/sonic-desktop-interface.spec @@ -0,0 +1,1573 @@ +%global scim 1 +%if 0%{?rhel} && 0%{?rhel} > 7 +%undefine scim +%endif + +%define _disable_source_fetch 0 +%define debug_package %{nil} +%define oldname plasma-desktop + + +Name: sonic-desktop-interface +Summary: Plasma Desktop shell +Version: 6.6.4 +Release: 11%{?dist} + +License: BSD-2-Clause AND BSD-3-Clause AND CC0-1.0 AND GPL-2.0-only AND GPL-2.0-or-later AND GPL-3.0-only AND LGPL-2.0-only AND LGPL-2.0-or-later AND LGPL-2.1-only AND LGPL-2.1-or-later AND LGPL-3.0-only AND (GPL-2.0-only OR GPL-3.0-only) AND (LGPL-2.1-only OR LGPL-3.0-only) +#URL: https://invent.kde.org/plasma/%{name} +URL: https://github.com/Sonic-DE/%{name} + +#Source0: https://download.kde.org/%{stable_kf6}/plasma/%{maj_ver_kf6}.%{min_ver_kf6}.%{bug_ver_kf6}/%{name}-%{version}.tar.xz +#Source1: https://download.kde.org/%{stable_kf6}/plasma/%{maj_ver_kf6}.%{min_ver_kf6}.%{bug_ver_kf6}/%{name}-%{version}.tar.xz.sig +Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz + +# breeze fedora sddm theme components +# includes f40-based preview (better than breeze or nothing at least) +Source20: breeze-fedora-0.3.tar.gz + +## upstream patches + +## downstream patches +# default kickoff/kicker favorites: +kwrite +konsole +# Patch100: plasma-desktop-5.90.0-default_favorites.patch + +# Hide virtual keyboard indicator on sddm. +# Do not remove this as it breaks Fedora's QA policy +Patch101: hide-virtual-keyboard-indicator-on-sddm.patch + +## upstreamable patches + +BuildRequires: pkgconfig(libusb) +BuildRequires: fontconfig-devel +BuildRequires: libX11-devel +BuildRequires: libxkbfile-devel +BuildRequires: libxcb-devel +BuildRequires: xcb-util-keysyms-devel +BuildRequires: xcb-util-image-devel +BuildRequires: xcb-util-renderutil-devel +BuildRequires: xcb-util-devel +BuildRequires: libxkbcommon-devel +BuildRequires: pkgconfig(xkeyboard-config) + +BuildRequires: qt6-qtbase-devel +BuildRequires: qt6-qtbase-private-devel +BuildRequires: qt6-qtsvg-devel +BuildRequires: qt6-qtdeclarative-devel +BuildRequires: qt6-qtwayland-devel +BuildRequires: cmake(Qt6ShaderTools) +BuildRequires: cmake(Qt6Core5Compat) +BuildRequires: cmake(Phonon4Qt6) +BuildRequires: wayland-protocols-devel + +BuildRequires: ibus-devel +%if 0%{?scim} +BuildRequires: scim-devel +%endif + +BuildRequires: kf6-rpm-macros +BuildRequires: extra-cmake-modules +BuildRequires: cmake(KF6DocTools) +BuildRequires: cmake(KF6I18n) +BuildRequires: cmake(KF6KCMUtils) +BuildRequires: cmake(KF6GlobalAccel) +BuildRequires: cmake(KF6NewStuff) +BuildRequires: cmake(KF6NotifyConfig) +BuildRequires: cmake(KF6Su) +BuildRequires: cmake(KF6Attica) +BuildRequires: cmake(KF6Wallet) +BuildRequires: cmake(KF6Runner) +BuildRequires: cmake(KF6Baloo) +BuildRequires: cmake(KF6Declarative) +BuildRequires: cmake(KF6People) +BuildRequires: cmake(KF6Crash) +BuildRequires: cmake(KF6Notifications) +BuildRequires: cmake(KF6GuiAddons) +BuildRequires: cmake(KF6DBusAddons) +BuildRequires: cmake(KF6Sonnet) +BuildRequires: cmake(KF6Svg) +BuildRequires: cmake(KF6ItemModels) +BuildRequires: cmake(KF6KDED) +BuildRequires: cmake(KF6KIO) + +BuildRequires: cmake(KSysGuard) +BuildRequires: cmake(Plasma5Support) +BuildRequires: sonic-screenlocker-devel +BuildRequires: sonic-win-devel +BuildRequires: plasma-breeze-qt6 +BuildRequires: sonic-workspace-devel + +BuildRequires: cmake(PlasmaActivities) +BuildRequires: cmake(PlasmaActivitiesStats) +BuildRequires: cmake(Plasma) + +# For theming info +# /usr/share/backgrounds/default.{jxl,png} +BuildRequires: desktop-backgrounds-compat + + +# Optional +%if 0%{?fedora} +BuildRequires: cmake(AppStreamQt) +%endif +BuildRequires: intltool +BuildRequires: cmake(KAccounts6) +BuildRequires: PackageKit-Qt6-devel +BuildRequires: libcanberra-devel +BuildRequires: boost-devel +BuildRequires: pulseaudio-libs-devel +BuildRequires: SDL2-devel +BuildRequires: chrpath +BuildRequires: desktop-file-utils +BuildRequires: pkgconfig(libwacom) + +BuildRequires: xdg-user-dirs + +# RHEL10 has no xorg-x11-server or -drv, skip this part for now +%if %[!(0%{?rhel} >= 10)] +# xorg-x11 doesn't have hw_server and disable for s390/s390x +%ifnarch s390 s390x +# KCM touchpad has been merged to plasma-desktop in 5.3 +Provides: kcm_touchpad = %{version}-%{release} +Obsoletes: kcm_touchpad < 5.3.0 +# for xserver-properties +BuildRequires: xorg-x11-server-devel +Requires: kf6-kded + +# for kcm_keyboard +BuildRequires: pkgconfig(libudev) +Requires: iso-codes + +# for kcm_input, kcm_touchpad +BuildRequires: pkgconfig(xorg-evdev) +BuildRequires: pkgconfig(xorg-libinput) + +%endif +%endif + +# kcm_users +Requires: accountsservice +# kcm_clock +Requires: qt6-qtlocation%{?_isa} + +# Desktop +Requires: sonic-workspace + +# xdg-utils integration +Requires: xdg-utils >= 1.2.0~ +Requires: kde-cli-tools + +# Qt Integration (brings in Breeze) +Requires: plasma-integration + +# Install systemsettings, full set of KIO slaves and write() notifications +Requires: plasma-systemsettings +Requires: kio-extras +Requires: kwrited + +# Install KWin +Requires: sonic-win + +# kickoff -> edit applications (#1229393) +Requires: kmenuedit + +BuildRequires: cmake(KF6Kirigami) +Requires: kf6-kirigami%{?_isa} +BuildRequires: cmake(KF6KirigamiAddons) +Requires: kf6-kirigami-addons%{?_isa} +BuildRequires: kf6-qqc2-desktop-style +Requires: kf6-qqc2-desktop-style%{?_isa} +BuildRequires: kpipewire +Requires: kpipewire%{?_isa} +BuildRequires: signon-plugin-oauth2-devel +Requires: signon-plugin-oauth2%{?_isa} + +# applets/kickoff/KickoffSingleton.qml unconditionally imports org.kde.plasma.plasma5support +Requires: qt6qml(org.kde.plasma.plasma5support) + +# for kimpanel-ibus-panel and kimpanel-ibus-panel-launcher +Recommends: ibus + +# for drawing tablet support +Recommends: udev-hid-bpf-stable + +# Virtual provides for plasma-workspace +Provides: plasmashell(desktop) = %{version}-%{release} +Provides: plasmashell = %{version}-%{release} + +Obsoletes: kde-workspace < 5.0.0-1 + +Obsoletes: kactivities-workspace < 5.6.0 +Provides: kactivities-workspace = %{version}-%{release} + +Obsoletes: plasma-user-manager < 5.19.50 +Provides: plasma-user-manager = %{version}-%{release} + +# kimpanel moved here from kdeplasma-addons-5.5.x +Conflicts: kdeplasma-addons < 5.6.0 + +# kcm_activities.mo moved here (#1325724) +Conflicts: kde-l10n < 15.12.3-4 + +# See https://pagure.io/fedora-kde/SIG/issue/455 for more information +Conflicts: kde-settings < 39.1-7 + +Conflicts: plasma-desktop +Obsoletes: plasma-desktop < %{version}-%{release} + +%description +%{summary}. + +%package kimpanel-scim +Summary: SCIM backend for kimpanel +Requires: %{name} = %{version}-%{release} +%description kimpanel-scim +A backend for the kimpanel panel icon for input methods using the SCIM input +method framework. + +%package doc +Summary: Documentation and user manuals for %{name} +# when conflicting HTML docs were removed +Conflicts: kcm_colors < 1:4.11.16-10 +# when conflicting HTML docs were removed +Conflicts: kde-runtime-docs < 17.08.3-6 +# when made noarch +Obsoletes: plasma-desktop-doc < 5.3.1-2 +BuildArch: noarch +Conflicts: plasma-desktop-doc +%description doc +%{summary}. + + +%package -n sddm-breeze +Summary: SDDM breeze theme +Requires: kde-settings-sddm +# upgrade path, when sddm-breeze was split out +Obsoletes: plasma-workspace < 5.3.2-8 +# theme files from breeze plasma +#Requires: libplasma +Requires: sonic-interface-libraries +# QML imports: +# QtQuick.VirtualKeyboard +Requires: qt6-qtvirtualkeyboard +# QML imports: +# org.kde.plasma.breeze.components +# org.kde.plasma.* +# The dependency is with 3 version numbers due to upstream occasional respins containing an etra number (i.e: 6.0.5.1) +Requires: sonic-workspace >= %{maj_ver_kf6}.%{min_ver_kf6} +# /usr/share/backgrounds/default.{jxl,png} +Requires: desktop-backgrounds-compat +# for jxl support +Requires: kf6-kimageformats +BuildArch: noarch + +%description -n sddm-breeze +%{summary}. + + +%prep +%autosetup -a 20 -p1 + + +%build +%cmake_kf6 \ +%if %[(0%{?rhel} >= 10)] + -DBUILD_KCM_MOUSE_X11=OFF \ + -DBUILD_KCM_TOUCHPAD_X11=OFF +%endif + +%cmake_build + + +%install +%cmake_install +%find_lang %{name} --with-html --all-name + +grep "%{_kf6_docdir}" %{name}.lang > %{name}-doc.lang +cat %{name}.lang %{name}-doc.lang | sort | uniq -u > plasmadesktop6.lang + +# make fedora-breeze sddm theme variant. +cp -alf %{buildroot}%{_datadir}/sddm/themes/breeze/ \ + %{buildroot}%{_datadir}/sddm/themes/01-breeze-fedora +# replace items +install -m644 -p breeze-fedora/* \ + %{buildroot}%{_datadir}/sddm/themes/01-breeze-fedora/ +# Set Fedora background +bg_file_ext="jxl" +if [ -f "/usr/share/backgrounds/default.png" ]; then +bg_file_ext="png" +fi +sed -i -e "s|^background=.*$|background=/usr/share/backgrounds/default.${bg_file_ext}|g" %{buildroot}%{_datadir}/sddm/themes/01-breeze-fedora/theme.conf +# Set Fedora distro vendor logo +sed -i -e 's|^showlogo=.*$|showlogo=shown|g' %{buildroot}%{_datadir}/sddm/themes/01-breeze-fedora/theme.conf +sed -i -e 's|^logo=.*$|logo=%{_datadir}/pixmaps/fedora_whitelogo.svg|g' %{buildroot}%{_datadir}/sddm/themes/01-breeze-fedora/theme.conf + + +%check +#,mouse,touchpad +desktop-file-validate %{buildroot}/%{_datadir}/applications/kcm_{keyboard,access,clock,splashscreen,landingpage,keys,smserver,desktoppaths,gamecontroller,activities,recentFiles,kded,krunnersettings,plasmasearch,qtquicksettings,tablet,touchscreen,workspace,baloofile,solid_actions}.desktop +desktop-file-validate %{buildroot}/%{_datadir}/applications/kcmspellchecking.desktop +desktop-file-validate %{buildroot}/%{_datadir}/applications/org.kde.knetattach.desktop +desktop-file-validate %{buildroot}/%{_datadir}/applications/org.kde.plasma.emojier.desktop +desktop-file-validate %{buildroot}/%{_datadir}/applications/kaccess.desktop + +%files -f plasmadesktop6.lang +%license LICENSES +%{_bindir}/kaccess +%{_bindir}/knetattach +%{_bindir}/solid-action-desktop-gen +%{_bindir}/plasma-emojier +%{_bindir}/tastenbrett +%{_bindir}/krunner-plugininstaller +%{_kf6_libexecdir}/kauth/kcmdatetimehelper +%{_libexecdir}/kimpanel-ibus-panel +%{_libexecdir}/kimpanel-ibus-panel-launcher +%{_kf6_qmldir}/org/kde/plasma/private +%{_kf6_qtplugindir}/attica_kde.so +%{_kf6_qtplugindir}/plasma/kcms/desktop/kcm_krunnersettings.so +%{_kf6_qtplugindir}/plasma/kcms/systemsettings/*.so +%{_kf6_qtplugindir}/plasma/kcms/systemsettings_qwidgets/*.so +# due to missing xorg-libinput +#%{_kf6_qtplugindir}/plasma/kcminit/kcm_touchpad_init.so +%{_kf6_plugindir}/kded/*.so +%{_kf6_plugindir}/krunner/krunner*.so +%{_kf6_qmldir}/org/kde/plasma/activityswitcher +%{_kf6_qmldir}/org/kde/plasma/emoji/ +%{_kf6_qmldir}/org/kde/private/desktopcontainment/* +%{_kf6_datadir}/plasma/* +%{_kf6_datadir}/applications/kde-mimeapps.list +%if %[!(0%{?rhel} >= 10)] +%ifnarch s390 s390x +# kcminput +%{_kf6_bindir}/kapplymousetheme +%{_kf6_bindir}/kcm-touchpad-list-devices +%endif +%endif +# due to missing xorg-libinput +#%{_kf6_datadir}/kcmmouse/ +#%{_kf6_qtplugindir}/plasma/kcminit/kcm_mouse_init.so +%{_datadir}/config.kcfg/*.kcfg +%{_datadir}/kglobalaccel/org.kde.plasma.emojier.desktop +# due to missing xorg-libinput +#%{_datadir}/kglobalaccel/org.kde.touchpadshortcuts.desktop +%{_datadir}/qlogging-categories6/*.categories +# due to missing xorg-libinput +#%{_kf6_datadir}/dbus-1/interfaces/org.kde.touchpad.xml +%{_kf6_datadir}/kcmkeys +%{_kf6_datadir}/knsrcfiles/ +%{_kf6_datadir}/kcmsolidactions/ +%{_kf6_datadir}/solid/devices/*.desktop +%{_kf6_datadir}/dbus-1/system.d/*.conf +%{_kf6_datadir}/knotifications6/*.notifyrc +# Non-existent for an unknown reason +#%{_datadir}/icons/hicolor/*/*/* +%{_kf6_metainfodir}/*.xml +%{_datadir}/applications/*.desktop +%{_datadir}/dbus-1/system-services/*.service +%{_datadir}/polkit-1/actions/org.kde.kcontrol.kcmclock.policy +%{_sysconfdir}/xdg/autostart/*.desktop +%{_kf6_datadir}/accounts/providers/kde/*.provider +%{_kf6_datadir}/accounts/services/kde/*.service +%{_kf6_datadir}/kcm_recentFiles/workspace/settings/qml/recentFiles/ExcludedApplicationView.qml +# How to include these in the .lang file? +%{_kf6_datadir}/locale/sr/LC_SCRIPTS/kfontinst/kfontinst.js +%{_kf6_datadir}/locale/sr@ijekavian/LC_SCRIPTS/kfontinst/kfontinst.js +%{_kf6_datadir}/locale/sr@ijekavianlatin/LC_SCRIPTS/kfontinst/kfontinst.js +%{_kf6_datadir}/locale/sr@latin/LC_SCRIPTS/kfontinst/kfontinst.js +%{_userunitdir}/plasma-kaccess.service +%{_libdir}/libkglobalaccelmodel.so.6 +%{_libdir}/libkglobalaccelmodel.so.%{version} +%{_kf6_qtplugindir}/plasma/applets/org.kde.*.so + + +%files -n sddm-breeze +%{_datadir}/sddm/themes/breeze/ +%{_datadir}/sddm/themes/01-breeze-fedora/ + + +%if 0%{?scim} +%files kimpanel-scim +%{_libexecdir}/kimpanel-scim-panel +%endif + +%files doc -f %{name}-doc.lang + + +%changelog +* Fri Apr 10 2026 Steve Cossette - 6.6.4-1 +- 6.6.4 + +* Tue Mar 17 2026 Steve Cossette - 6.6.3-1 +- 6.6.3 + +* Tue Mar 03 2026 Steve Cossette - 6.6.2-1 +- 6.6.2 + +* Tue Feb 24 2026 Steve Cossette - 6.6.1-1 +- 6.6.1 + +* Thu Feb 12 2026 Steve Cossette - 6.6.0-1 +- 6.6.0 + +* Mon Feb 09 2026 Adam Williamson - 6.5.91-2 +- Require plasma5support (applets/kickoff/KickoffSingleton.qml needs it) + +* Tue Jan 27 2026 Steve Cossette - 6.5.91-1 +- 6.5.91 + +* Sat Jan 17 2026 Fedora Release Engineering - 6.5.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + +* Tue Jan 13 2026 farchord@gmail.com - 6.5.90-1 +- 6.5.90 + +* Tue Jan 13 2026 farchord@gmail.com - 6.5.5-1 +- 6.5.5 + +* Tue Dec 16 2025 Neal Gompa - 6.5.4-2 +- Add weak dependency on udev-hid-bpf-stable for tablet support + +* Tue Dec 09 2025 Steve Cossette - 6.5.4-1 +- 6.5.4 + +* Thu Nov 27 2025 Steve Cossette - 6.5.3-2 +- Rebuild for possible issues with the Qt 6.10.1 update + +* Tue Nov 18 2025 Steve Cossette - 6.5.3-1 +- 6.5.3 + +* Tue Nov 04 2025 Steve Cossette - 6.5.2-1 +- 6.5.2 + +* Tue Oct 28 2025 Steve Cossette - 6.5.1-1 +- 6.5.1 + +* Fri Oct 17 2025 Steve Cossette - 6.5.0-1 +- 6.5.0 + +* Sat Oct 04 2025 Steve Cossette - 6.4.91-2 +- Another rebuild for PackageKit-Qt Update + +* Thu Oct 02 2025 Steve Cossette - 6.4.91-1 +- 6.4.91 + +* Tue Sep 30 2025 Jan Grulich - 6.4.5-2 +- Rebuild (qt6) + +* Thu Sep 25 2025 Steve Cossette - 6.4.90-1 +- 6.4.90 + +* Tue Sep 16 2025 farchord@gmail.com - 6.4.5-1 +- 6.4.5 + +* Wed Aug 06 2025 Steve Cossette - 6.4.4-1 +- 6.4.4 + +* Fri Jul 25 2025 Fedora Release Engineering - 6.4.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + +* Tue Jul 15 2025 Steve Cossette - 6.4.3-1 +- 6.4.3 + +* Sat Jul 05 2025 Timothée Ravier - 6.4.2-2 +- Require qt6-qtlocation for kcm_clock + +* Thu Jul 03 2025 Steve Cossette - 6.4.2-1 +- 6.4.2 + +* Tue Jun 24 2025 Marc Deop i Argemí - 6.4.1-1 +- 6.4.1 + +* Sun Jun 22 2025 Steve Cossette - 6.4.0-2 +- Fix an issue with icons not being clickable when specific alignment is set + +* Mon Jun 16 2025 Steve Cossette - 6.4.0-1 +- 6.4.0 + +* Sat May 31 2025 Marc Deop i Argemí - 6.3.91-2 +- Add signature file + +* Fri May 30 2025 Steve Cossette - 6.3.91-1 +- 6.3.91 + +* Thu May 15 2025 Marc Deop i Argemí - 6.3.90-1 +- 6.3.90 + +* Tue May 06 2025 Steve Cossette - 6.3.5-1 +- 6.3.5 + +* Mon Apr 14 2025 Jan Grulich - 6.3.4-2 +- Rebuild (qt6) + +* Wed Apr 02 2025 Marc Deop i Argemí - 6.3.4-1 +- 6.3.4 + +* Tue Mar 25 2025 Jan Grulich - 6.3.3-2 +- Rebuild (qt6) + +* Tue Mar 11 2025 Steve Cossette - 6.3.3-1 +- 6.3.3 + +* Tue Feb 25 2025 Steve Cossette - 6.3.2-1 +- 6.3.2 + +* Wed Feb 19 2025 Steve Cossette - 6.3.1.1-1 +- 6.3.1.1 + +* Tue Feb 18 2025 Steve Cossette - 6.3.1-1 +- 6.3.1 + +* Sat Feb 15 2025 Neal Gompa - 6.3.0-2 +- Adapt to backgrounds in JPEG-XL format + +* Thu Feb 06 2025 Marc Deop i Argemí - 6.3.0-1 +- 6.3.0 + +* Fri Jan 24 2025 Steve Cossette - 6.2.91.1-1 +- Update to 6.2.91.1 + +* Thu Jan 23 2025 Steve Cossette - 6.2.91-1 +- 6.2.91 + +* Sat Jan 18 2025 Fedora Release Engineering - 6.2.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + +* Thu Jan 09 2025 Steve Cossette - 6.2.90-1 +- Beta 6.2.90 + +* Tue Dec 31 2024 Steve Cossette - 6.2.5-1 +- 6.2.5 + +* Sun Dec 08 2024 Pete Walter - 6.2.4-2 +- Rebuild for ICU 76 + +* Tue Nov 26 2024 Marc Deop i Argemí - 6.2.4-1 +- 6.2.4 + +* Tue Nov 05 2024 Steve Cossette - 6.2.3-1 +- 6.2.3 + +* Wed Oct 30 2024 Jan Grulich - 6.2.2-2 +- Rebuild (qt6) + +* Tue Oct 22 2024 Steve Cossette - 6.2.2-1 +- 6.2.2 + +* Tue Oct 15 2024 Steve Cossette - 6.2.1-1 +- 6.2.1 + +* Mon Oct 14 2024 Jan Grulich - 6.2.0-2 +- Rebuild (qt6) + +* Thu Oct 03 2024 Marc Deop i Argemí - 6.2.0-1 +- 6.2.0 + +* Thu Sep 26 2024 Steve Cossette - 6.1.90-2 +- Fix kaccess crash on 6.1.90 + +* Thu Sep 12 2024 Marc Deop i Argemí - 6.1.90-1 +- 6.1.90 + +* Tue Sep 10 2024 Marc Deop i Argemí - 6.1.5-1 +- 6.1.5 + +* Fri Aug 09 2024 Steve Cossette - 6.1.4-1 +- 6.1.4 + +* Wed Jul 24 2024 Marc Deop i Argemí - 6.1.3-4 +- rebuilt + +* Wed Jul 24 2024 Steve Cossette - 6.1.3-3 +- Rebuild for change in plasma-workspace +- Experimental change to try to relax sddm-breeze version dependancy because of rebuild issues + +* Fri Jul 19 2024 Fedora Release Engineering - 6.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Tue Jul 16 2024 Marc Deop i Argemí - 6.1.3-1 +- 6.1.3 + +* Wed Jul 03 2024 Marc Deop i Argemí - 6.1.2-1 +- 6.1.2 + +* Tue Jun 25 2024 Marc Deop i Argemí - 6.1.1-1 +- 6.1.1 + +* Tue Jun 18 2024 Marc Deop i Argemí - 6.1.0-3 +- Rebuild to sort dependencies with plasma-workspace + +* Tue Jun 18 2024 Marc Deop i Argemí - 6.1.0-2 +- Soften dependency on plasma-workspace + +* Thu Jun 13 2024 Marc Deop i Argemí - 6.1.0-1 +- 6.1.0 + +* Fri May 24 2024 Marc Deop i Argemí - 6.0.90-1 +- 6.0.90 + +* Wed May 22 2024 Marc Deop i Argemí - 6.0.5-1 +- 6.0.5 + +* Tue Apr 16 2024 Marc Deop i Argemí - 6.0.4-1 +- 6.0.4 + +* Thu Apr 04 2024 Jan Grulich - 6.0.3-2 +- Rebuild (qt6) + +* Tue Mar 26 2024 Marc Deop i Argemí - 6.0.3-1 +- 6.0.3 + +* Tue Mar 12 2024 Marc Deop i Argemí - 6.0.2-1 +- 6.0.2 + +* Wed Mar 06 2024 Marc Deop i Argemí - 6.0.1-1 +- 6.0.1 + +* Tue Feb 27 2024 Marie Loise Nolden - 6.0.0-2 +- minor BR fixes + +* Wed Feb 21 2024 Marc Deop i Argemí - 6.0.0-1 +- 6.0.0 + +* Fri Feb 16 2024 Jan Grulich - 5.93.0-2 +- Rebuild (qt6) + +* Wed Jan 31 2024 Marc Deop i Argemí - 5.93.0-1 +- 5.93.0 + +* Wed Jan 31 2024 Pete Walter - 5.92.0-4 +- Rebuild for ICU 74 + +* Thu Jan 25 2024 Fedora Release Engineering - 5.92.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Jan 21 2024 Fedora Release Engineering - 5.92.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Wed Jan 10 2024 Marc Deop i Argemí - 5.92.0-1 +- 5.92.0 + +* Tue Dec 26 2023 Alessandro Astone - 5.91.0-2 +- Re-enable optional dependency on KAccounts6 +- Add missing QML dependency on org.kde.pipewire + +* Thu Dec 21 2023 Marc Deop i Argemí - 5.91.0-1 +- 5.91.0 + +* Tue Dec 19 2023 Neal Gompa - 5.90.0-2 +- Refresh and apply default favorites patch + +* Sun Dec 03 2023 Justin Zobel - 5.90.0-1 +- Update to 5.90.0 + +* Wed Nov 29 2023 Jan Grulich - 5.27.80-5 +- Rebuild (qt6) + +* Mon Nov 27 2023 Alessandro Astone - 5.27.80-4 +- Backport patch to fix desktop settings shortcut + +* Sat Nov 25 2023 Alessandro Astone - 5.27.80-3 +- kio-extras is KF6 + +* Sat Nov 18 2023 Alessandro Astone - 5.27.80-2 +- Fix Plasma 6 runtime requirements + +* Sat Nov 18 2023 Steve Cossette - 5.27.80-1 +- 5.27.80 + +* Tue Oct 24 2023 Steve Cossette - 5.27.9-1 +- 5.27.9 + +* Tue Sep 12 2023 justin.zobel@gmail.com - 5.27.8-1 +- 5.27.8 + +* Tue Aug 01 2023 Marc Deop i Argemí - 5.27.7-1 +- 5.27.7 + +* Fri Jul 21 2023 Fedora Release Engineering - 5.27.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Sun Jun 25 2023 Marc Deop i Argemí - 5.27.6-1 +- 5.27.6 + +* Wed May 10 2023 Marc Deop i Argemí - 5.27.5-1 +- 5.27.5 + +* Tue Apr 04 2023 Marc Deop i Argemí - 5.27.4-1 +- 5.27.4 + +* Tue Mar 14 2023 Marc Deop i Argemí - 5.27.3-1 +- 5.27.3 + +* Tue Feb 28 2023 Marc Deop i Argemí - 5.27.2-1 +- 5.27.2 + +* Tue Feb 21 2023 Marc Deop i Argemí - 5.27.1-1 +- 5.27.1 + +* Tue Feb 14 2023 Marc Deop - 5.27.0-2 +- Rebuild against new sources + +* Thu Feb 09 2023 Marc Deop - 5.27.0-1 +- 5.27.0 + +* Fri Jan 20 2023 Marc Deop - 5.26.90-1 +- 5.26.90 + +* Fri Jan 20 2023 Fedora Release Engineering - 5.26.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Thu Jan 05 2023 Justin Zobel - 5.26.5-1 +- Update to 5.26.5 + +* Tue Nov 29 2022 Marc Deop - 5.26.4-1 +- 5.26.4 + +* Wed Nov 09 2022 Marc Deop - 5.26.3-1 +- 5.26.3 + +* Wed Oct 26 2022 Marc Deop - 5.26.2-1 +- 5.26.2 + +* Tue Oct 18 2022 Marc Deop - 5.26.1-1 +- 5.26.1 + +* Thu Oct 06 2022 Marc Deop - 5.26.0-1 +- 5.26.0 + +* Sat Sep 17 2022 Marc Deop - 5.25.90-1 +- 5.25.90 + +* Wed Sep 07 2022 Marc Deop - 5.25.5-1 +- 5.25.5 + +* Wed Aug 03 2022 Justin Zobel - 5.25.4-1 +- Update to 5.25.4 + +* Fri Jul 22 2022 Fedora Release Engineering - 5.25.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Tue Jul 12 2022 Marc Deop - 5.25.3-1 +- 5.25.3 + +* Tue Jun 28 2022 Marc Deop - 5.25.2-1 +- 5.25.2 + +* Tue Jun 21 2022 Marc Deop - 5.25.1-1 +- 5.25.1 + +* Thu Jun 09 2022 Marc Deop - 5.25.0-1 +- 5.25.0 + +* Fri May 20 2022 Marc Deop - 5.24.90-1 +- 5.24.90 + +* Tue May 03 2022 Marc Deop - 5.24.5-1 +- 5.24.5 + +* Thu Mar 31 2022 Justin Zobel - 5.24.4-1 +- Update to 5.24.4 + +* Tue Mar 08 2022 Marc Deop - 5.24.3-1 +- 5.24.3 + +* Tue Feb 22 2022 Rex Dieter - 5.24.2-1 +- 5.24.2 + +* Tue Feb 15 2022 Marc Deop - 5.24.1-1 +- 5.24.1 + +* Thu Feb 03 2022 Marc Deop - 5.24.0-1 +- 5.24.0 + +* Fri Jan 21 2022 Fedora Release Engineering - 5.23.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Thu Jan 13 2022 Marc Deop - 5.23.90-1 +- 5.23.90 + +* Tue Jan 04 2022 Marc Deop - 5.23.5-1 +- 5.23.5 + +* Tue Dec 14 2021 Marc Deop - 5.23.4-1 +- 5.23.4 + +* Wed Nov 10 2021 Rex Dieter - 5.23.3-1 +- 5.23.3 + +* Wed Oct 27 2021 Rex Dieter - 5.23.2.1-1 +- 5.23.2.1 + +* Tue Oct 26 2021 Rex Dieter - 5.23.2-1 +- 5.23.2 + +* Sat Oct 23 2021 Marc Deop - 5.23.1-1 +- 5.23.1 + +* Fri Oct 08 2021 Marc Deop - 5.23.0-1 +- 5.23.0 + +* Mon Sep 20 2021 Marc Deop - 5.22.90-2 +- Adjust license +- Adjust files section + +* Fri Sep 17 2021 Marc Deop - 5.22.90-1 +- 5.22.90 + +* Tue Aug 31 2021 Jan Grulich - 5.22.5-1 +- 5.22.5 + +* Tue Jul 27 2021 Jan Grulich - 5.22.4-1 +- 5.22.4 + +* Tue Jul 27 2021 Fedora Release Engineering - 5.22.3-2 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Mon Jul 12 2021 Jan Grulich - 5.22.3-1 +- 5.22.3 + +* Tue Jun 22 2021 Jan Grulich - 5.22.2.1-1 +- 5.22.2.1 + +* Tue Jun 22 2021 Jan Grulich - 5.22.2-1 +- 5.22.2 + +* Tue Jun 15 2021 Jan Grulich - 5.22.1-1 +- 5.22.1 + +* Sun Jun 06 2021 Jan Grulich - 5.22.0-1 +- 5.22.0 + +* Thu May 20 2021 Rex Dieter - 5.21.90-3 +- pull in some upstream fixes + +* Sun May 16 2021 Rex Dieter - 5.21.90-2 +- s/kf5-ksysguard/libksysguard/ + +* Fri May 14 2021 Rex Dieter - 5.21.90-1 +- 5.21.90 + +* Tue May 04 2021 Jan Grulich - 5.21.5-1 +- 5.21.5 + +* Tue Apr 06 2021 Jan Grulich - 5.21.4-1 +- 5.21.4 + +* Tue Mar 16 2021 Jan Grulich - 5.21.3-1 +- 5.21.3 + +* Tue Mar 02 2021 Jan Grulich - 5.21.2-1 +- 5.21.2 + +* Tue Feb 23 2021 Jan Grulich - 5.21.1-1 +- 5.21.1 + +* Mon Feb 15 2021 Jan Grulich - 5.21.0-2 +- Tarball respin + +* Thu Feb 11 2021 Jan Grulich - 5.21.0-1 +- 5.21.0 + +* Thu Jan 28 2021 Rex Dieter - 5.20.90-3 +- ibus-ui-emojier-plasma: +Recommends: ibus + +* Tue Jan 26 2021 Rex Dieter - 5.20.90-2 +- for ibus-ui-emojier-plasma: +Recommends: ibus-uniemoji +- fix URL + +* Thu Jan 21 2021 Jan Grulich - 5.20.90-1 +- 5.20.90 (beta) + +* Tue Jan 5 16:03:32 CET 2021 Jan Grulich - 5.20.5-1 +- 5.20.5 + +* Thu Dec 31 2020 Rex Dieter - 5.20.4-2 +- Requires: accountsservice (kde#430916) + +* Tue Dec 1 09:42:59 CET 2020 Jan Grulich - 5.20.4-1 +- 5.20.4 + +* Wed Nov 11 08:22:41 CET 2020 Jan Grulich - 5.20.3-1 +- 5.20.3 + +* Tue Oct 27 14:23:44 CET 2020 Jan Grulich - 5.20.2-1 +- 5.20.2 + +* Tue Oct 20 15:29:34 CEST 2020 Jan Grulich - 5.20.1-1 +- 5.20.1 + +* Sun Oct 11 19:50:04 CEST 2020 Jan Grulich - 5.20.0-1 +- 5.20.0 + +* Fri Sep 18 2020 Jan Grulich - 5.19.90-1 +- 5.19.90 + +* Tue Sep 01 2020 Jan Grulich - 5.19.5-1 +- 5.19.5 + +* Tue Jul 28 2020 Fedora Release Engineering - 5.19.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue Jul 28 2020 Jan Grulich - 5.19.4-1 +- 5.19.4 + +* Tue Jul 07 2020 Jan Grulich - 5.19.3-1 +- 5.19.3 + +* Tue Jun 23 2020 Jan Grulich - 5.19.2-1 +- 5.19.2 + +* Wed Jun 17 2020 Martin Kyral - 5.19.1-1 +- 5.19.1 + +* Wed Jun 10 2020 Rex Dieter - 5.19.0-2 +- adjust synaptics hacks (for rhel8), bump kf5 dep + +* Tue Jun 9 2020 Martin Kyral - 5.19.0-1 +- 5.19.0 + +* Fri May 15 2020 Martin Kyral - 5.18.90-1 +- 5.18.90 + +* Tue May 05 2020 Jan Grulich - 5.18.5-1 +- 5.18.5 + +* Sat May 02 2020 Rex Dieter - 5.18.4.1-2 +- use bundled synaptics header, if needed +- fix feature macro logic (defined as 1 on, undefined off) +- minor cleanups + +* Sat Apr 04 2020 Rex Dieter - 5.18.4.1-1 +- 5.18.4.1 + +* Tue Mar 31 2020 Jan Grulich - 5.18.4-1 +- 5.18.4 + +* Tue Mar 10 2020 Jan Grulich - 5.18.3-1 +- 5.18.3 + +* Tue Feb 25 2020 Jan Grulich - 5.18.2-1 +- 5.18.2 + +* Tue Feb 18 2020 Jan Grulich - 5.18.1-1 +- 5.18.1 + +* Mon Feb 17 2020 Rex Dieter - 5.18.0-2 +- pull in upstream kcm_fonts fix + +* Tue Feb 11 2020 Jan Grulich - 5.18.0-1 +- 5.18.0 + +* Thu Jan 30 2020 Fedora Release Engineering - 5.17.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Jan 16 2020 Jan Grulich - 5.17.90-1 +- 5.17.90 + +* Wed Jan 08 2020 Jan Grulich - 5.17.5-1 +- 5.17.5 + +* Fri Dec 27 2019 Rex Dieter - 5.17.4-2 +- pull in upstream pager fix + +* Thu Dec 05 2019 Jan Grulich - 5.17.4-1 +- 5.17.4 + +* Wed Nov 13 2019 Martin Kyral - 5.17.3-1 +- 5.17.3 + +* Wed Oct 30 2019 Jan Grulich - 5.17.2-1 +- 5.17.2 + +* Wed Oct 23 2019 Jan Grulich - 5.17.1-1 +- 5.17.1 + +* Wed Oct 16 2019 Jan Grulich - 5.17.0-2 +- Updated tarball + +* Thu Oct 10 2019 Jan Grulich - 5.17.0-1 +- 5.17.0 + +* Fri Sep 20 2019 Martin Kyral - 5.16.90-1 +- 5.16.90 + +* Fri Sep 06 2019 Martin Kyral - 5.16.5-1 +- 5.16.5 + +* Tue Jul 30 2019 Martin Kyral - 5.16.4-1 +- 5.16.4 + +* Fri Jul 26 2019 Fedora Release Engineering - 5.16.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Wed Jul 10 2019 Martin Kyral - 5.16.3-1 +- 5.16.3 + +* Wed Jun 26 2019 Martin Kyral - 5.16.2-1 +- 5.16.2 + +* Tue Jun 18 2019 Rex Dieter - 5.16.1-1 +- 5.16.1 + +* Tue Jun 11 2019 Martin Kyral - 5.16.0-1 +- 5.16.0 + +* Mon May 20 2019 Rex Dieter - 5.15.90.1-1 +- 5.15.90.1 + +* Thu May 16 2019 Martin Kyral - 5.15.90-1 +- 5.15.90 + +* Thu May 09 2019 Martin Kyral - 5.15.5-1 +- 5.15.5 + +* Wed Apr 03 2019 Rex Dieter - 5.15.4-1 +- 5.15.4 + +* Wed Mar 13 2019 Martin Kyral - 5.15.3.2-1 +- 5.15.3.2 +- tarball respun to remove docs causing build issues with KDocTools < 5.57 + +* Tue Mar 12 2019 Martin Kyral - 5.15.3-1 +- 5.15.3 + +* Tue Feb 26 2019 Rex Dieter - 5.15.2-1 +- 5.15.2 + +* Tue Feb 19 2019 Rex Dieter - 5.15.1-1 +- 5.15.1 + +* Wed Feb 13 2019 Martin Kyral - 5.15.0-1 +- 5.15.0 + +* Sat Feb 02 2019 Fedora Release Engineering - 5.14.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sun Jan 20 2019 Martin Kyral - 5.14.90-1 +- 5.14.90 + +* Wed Nov 28 2018 Rex Dieter - 5.14.4-2 +- pull in upstream taskmanager fix + +* Tue Nov 27 2018 Rex Dieter - 5.14.4-1 +- 5.14.4 + +* Thu Nov 08 2018 Martin Kyral - 5.14.3-1 +- 5.14.3 + +* Wed Oct 24 2018 Rex Dieter - 5.14.2-1 +- 5.14.2 + +* Tue Oct 16 2018 Rex Dieter - 5.14.1-1 +- 5.14.1 + +* Fri Oct 05 2018 Rex Dieter - 5.14.0-1 +- 5.14.0 + +* Fri Sep 14 2018 Martin Kyral - 5.13.90-1 +- 5.13.90 + +* Tue Sep 04 2018 Rex Dieter - 5.13.5-1 +- 5.13.5 + +* Thu Aug 02 2018 Rex Dieter - 5.13.4-1 +- 5.13.4 + +* Thu Jul 26 2018 Rex Dieter - 5.13.3-4 +- Requires: qqc2-desktop-style + +* Fri Jul 20 2018 Rex Dieter - 5.13.3-3 +- use %%_kf5_qmldir (more) + +* Fri Jul 13 2018 Fedora Release Engineering - 5.13.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Jul 11 2018 Martin Kyral - 5.13.3-1 +- 5.13.3 + +* Mon Jul 09 2018 Martin Kyral - 5.13.2-1 +- 5.13.2 + +* Wed Jun 20 2018 Martin Kyral - 5.13.1.1-1 +- 5.13.1.1 + +* Tue Jun 19 2018 Martin Kyral - 5.13.1-1 +- 5.13.1 + +* Sat Jun 09 2018 Rex Dieter - 5.13.0-1 +- 5.13.0 + +* Thu May 31 2018 Rex Dieter - 5.12.90.1-1 +- 5.12.90.1 +- kickoff crashes when click on categories (#1584515) + +* Fri May 18 2018 Martin Kyral - 5.12.90-1 +- 5.12.90 + +* Tue May 01 2018 Rex Dieter - 5.12.5-1 +- 5.12.5 + +* Tue Mar 27 2018 Rex Dieter - 5.12.4-1 +- 5.12.4 + +* Fri Mar 09 2018 Rex Dieter - 5.12.3-2 +- BR: AppStreamQt libudev xorg-input + +* Tue Mar 06 2018 Rex Dieter - 5.12.3-1 +- 5.12.3 + +* Fri Mar 02 2018 Rex Dieter - 5.12.2-2 +- -doc: drop Obsoletes: kde-runtime-docs (#1550857,#1199720) +- bump min qt5/kf5 dep +- use %%make_build %%ldconfig_scriptlets +- drop konq4 support (last used f25) + +* Wed Feb 21 2018 Jan Grulich - 5.12.2-1 +- 5.12.2 + +* Tue Feb 13 2018 Jan Grulich - 5.12.1-1 +- 5.12.1 + +* Fri Feb 09 2018 Fedora Release Engineering - 5.12.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Fri Feb 02 2018 Jan Grulich - 5.12.0-1 +- 5.12.0 + +* Thu Jan 18 2018 Igor Gnatenko - 5.11.95-2 +- Remove obsolete scriptlets + +* Mon Jan 15 2018 Jan Grulich - 5.11.95-1 +- 5.11.95 + +* Tue Jan 02 2018 Rex Dieter - 5.11.5-1 +- 5.11.5 + +* Thu Nov 30 2017 Martin Kyral - 5.11.4-1 +- 5.11.4 + +* Wed Nov 08 2017 Rex Dieter - 5.11.3-1 +- 5.11.3 + +* Wed Oct 25 2017 Martin Kyral - 5.11.2-1 +- 5.11.2 + +* Tue Oct 17 2017 Rex Dieter - 5.11.1-1 +- 5.11.1 + +* Wed Oct 11 2017 Martin Kyral - 5.11.0-1 +- 5.11.0 + +* Thu Aug 24 2017 Rex Dieter - 5.10.5-1 +- 5.10.5 + +* Thu Aug 03 2017 Fedora Release Engineering - 5.10.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 5.10.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Jul 21 2017 Rex Dieter - 5.10.4-1 +- 5.10.4 + +* Tue Jun 27 2017 Rex Dieter - 5.10.3-1 +- 5.10.3 + +* Thu Jun 15 2017 Rex Dieter - 5.10.2-1 +- 5.10.2 + +* Tue Jun 06 2017 Rex Dieter - 5.10.1-1 +- 5.10.1 + +* Wed May 31 2017 Jan Grulich - 5.10.0-1 +- 5.10.0 + +* Wed Apr 26 2017 Rex Dieter - 5.9.5-1 +- 5.9.5, cleanup, BR: plasma-breeze, use %%find_lang more + +* Fri Apr 14 2017 Rex Dieter - 5.9.4-2 +- pull in upstream fixes, update URL + +* Thu Mar 23 2017 Rex Dieter - 5.9.4-1 +- 5.9.4 + +* Sat Mar 04 2017 Rex Dieter - 5.9.3-2 +- rebuild + +* Wed Mar 01 2017 Jan Grulich - 5.9.3-1 +- 5.9.3 + +* Sat Feb 25 2017 Rex Dieter - 5.8.6-2 +- Requires: kf5-plasma >= %%_kf5_version + +* Tue Feb 21 2017 Rex Dieter - 5.8.6-1 +- 5.8.6 + +* Mon Feb 13 2017 Than Ngo - 5.8.5-4 +- backport upstream to security issue + honor the setting for prompting when executing executable files on the desktop +- fixed error: placeholders is not a namespace-name with gcc7 + +* Sat Feb 11 2017 Fedora Release Engineering - 5.8.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Mon Jan 02 2017 Rex Dieter - 5.8.5-2 +- filter qml/plugin provides, drop unused PK patch/support + +* Wed Dec 28 2016 Rex Dieter - 5.8.5-1 +- 5.8.5 + +* Tue Nov 22 2016 Rex Dieter - 5.8.4-1 +- 5.8.4 + +* Thu Nov 10 2016 Rex Dieter - 5.8.3-2 +- adjust default_favorites.patch for namespaced apper + +* Tue Nov 01 2016 Rex Dieter - 5.8.3-1 +- 5.8.3 + +* Tue Oct 18 2016 Rex Dieter - 5.8.2-1 +- 5.8.2 + +* Tue Oct 11 2016 Rex Dieter - 5.8.1-1 +- 5.8.1 + +* Fri Oct 07 2016 Rex Dieter - 5.8.0-4 +- default_favorites.patch: use preferred://browser again + +* Fri Oct 07 2016 Rex Dieter - 5.8.0-3 +- drop re-enabling kicker PackageKit integration, it's racy (#1382360) + +* Wed Oct 05 2016 Kevin Kofler - 5.8.0-2 +- move kimpanel-scim-panel to a -kimpanel-scim subpackage (#1381420) + +* Thu Sep 29 2016 Rex Dieter - 5.8.0-1 +- 5.8.0 + +* Thu Sep 22 2016 Rex Dieter - 5.7.95-1 +- 5.7.95 + +* Tue Sep 13 2016 Rex Dieter - 5.7.5-1 +- 5.7.5 + +* Tue Aug 23 2016 Rex Dieter - 5.7.4-1 +- 5.7.4 + +* Tue Aug 02 2016 Rex Dieter - 5.7.3-1 +- 5.7.3, drop f22 support + +* Tue Jul 19 2016 Rex Dieter - 5.7.2-1 +- 5.7.2 + +* Tue Jul 12 2016 Rex Dieter - 5.7.1-1 +- 5.7.1 + +* Thu Jun 30 2016 Rex Dieter - 5.7.0-1 +- 5.7.0 + +* Sat Jun 25 2016 Rex Dieter - 5.6.95-1 +- 5.6.95 + +* Tue Jun 14 2016 Rex Dieter - 5.6.5-1 +- 5.6.5 + +* Thu May 26 2016 Rex Dieter - 5.6.4-2 +- fix kickoff kcm_useraccount => user_manager (kde#363528) +- backport 5.6 branch fixes + +* Sat May 14 2016 Rex Dieter - 5.6.4-1 +- 5.6.4 + +* Sat Apr 23 2016 Rex Dieter - 5.6.3-2 +- kickoff applet still use KF5::ActivitiesExperimentalStats (kde#361952) + +* Tue Apr 19 2016 Rex Dieter - 5.6.3-1 +- 5.6.3 + +* Mon Apr 18 2016 Rex Dieter - 5.6.2-3 +- muon-discover => plasma-discover (f24+) + +* Mon Apr 11 2016 Rex Dieter - 5.6.2-2 +- Conflicts: kde-l10n < 15.12.3-4 (#1325724) + +* Sat Apr 09 2016 Rex Dieter - 5.6.2-1 +- 5.6.2 + +* Fri Apr 08 2016 Rex Dieter - 5.6.1-2 +- BR: ibus-devel scim-devel + +* Fri Apr 08 2016 Rex Dieter - 5.6.1-1 +- 5.6.1 + +* Mon Mar 28 2016 Rex Dieter 5.5.5-5 +- upstream fixes for: No 'favorites' in F24 KDE menu (#1320395,kde#357029) + +* Fri Mar 25 2016 Rex Dieter - 5.5.5-4 +- favorites: cleanup, no backups, f22+ fix firefox/konsole/discover, f22 fix konq/konsole/discover + +* Wed Mar 23 2016 Rex Dieter 5.5.5-3 +- No 'favorites' in F24 KDE menu (#1320395,kde#357029) + +* Fri Mar 11 2016 Rex Dieter 5.5.5-2 +- drop Requires: kde-style-breeze (f23+) + +* Tue Mar 01 2016 Daniel Vrátil - 5.5.5-1 +- Plasma 5.5.5 + +* Mon Feb 29 2016 Rex Dieter 5.5.4-4 +- (backport) wrong breeze icons used ... in taskmanager (#359387) + +* Fri Feb 26 2016 Rex Dieter 5.5.4-3 +- fix kickoff "right click => remove app" packagekit integration (#359837) + +* Thu Feb 04 2016 Fedora Release Engineering - 5.5.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jan 27 2016 Daniel Vrátil - 5.5.4-1 +- Plasma 5.5.4 + +* Sat Jan 09 2016 Rex Dieter 5.5.3-3 +- pull in some upstream patches, simplify/consolidate s390 blocks + +* Sat Jan 09 2016 Rex Dieter 5.5.3-2 +- Fix font preview (#1208229, kde#336089) + +* Thu Jan 07 2016 Daniel Vrátil - 5.5.3-1 +- Plasma 5.5.3 + +* Thu Dec 31 2015 Rex Dieter 5.5.2-2 +- update URL, old sources + +* Thu Dec 31 2015 Rex Dieter - 5.5.2-1 +- 5.5.2 + +* Fri Dec 18 2015 Daniel Vrátil - 5.5.1-1 +- Plasma 5.5.1 + +* Wed Dec 16 2015 Than Ngo - 5.5.0-6 +- add workaround for "virtual memory exhausted: Cannot allocate memory" on s390 +- exclude touchpad for s390/s390x + +* Tue Dec 15 2015 Than Ngo - 5.5.0-5 +- fix build failure on s390/s390x + +* Wed Dec 09 2015 Rex Dieter 5.5.0-4 +- omit env hack, rename plasma update script instead + +* Tue Dec 08 2015 Rex Dieter 5.5.0-3 +- force plasma's obsolete_kickoffrc.js to run again + +* Tue Dec 08 2015 Rex Dieter 5.5.0-2 +- backport favorites migration fix (#1289709) + +* Thu Dec 03 2015 Daniel Vrátil - 5.5.0-1 +- Plasma 5.5.0 + +* Wed Nov 25 2015 Daniel Vrátil - 5.4.95-1 +- Plasma 5.4.95 + +* Thu Nov 05 2015 Daniel Vrátil - 5.4.3-1 +- Plasma 5.4.3 + +* Thu Oct 29 2015 Rex Dieter 5.4.2-5 +- Recommends: muon-discover (#1224421) + +* Mon Oct 26 2015 Rex Dieter 5.4.2-4 +- revert default_favorites.patch back to apper + +* Fri Oct 16 2015 Rex Dieter 5.4.2-3 +- default_favorites.patch: -apper, +muon-discover + +* Sun Oct 04 2015 Rex Dieter - 5.4.2-2 +- Recommends: muon-discover +- consistently use %%{majmin_ver} macro for plasma5-related dependencies + +* Fri Oct 02 2015 Rex Dieter - 5.4.2-1 +- 5.4.2, use %%license, .spec cosmetics + +* Thu Oct 01 2015 Rex Dieter 5.4.1-7 +- relax some deps %%{version} => %%{majmin_ver} to ease bootstrapping + +* Mon Sep 28 2015 Rex Dieter 5.4.1-6 +- re-fix font management, kauth_helper paths (#1208229, kde#353215) + +* Mon Sep 21 2015 Rex Dieter 5.4.1-5 +- restore f22 default favorites + +* Fri Sep 18 2015 Rex Dieter 5.4.1-4 +- conditionally apply C.UTF-8 workaround only for < f24 (#1250238) + +* Sat Sep 12 2015 Rex Dieter 5.4.1-3 +- tighten build deps (simimlar to plasma-workspace) + +* Fri Sep 11 2015 Rex Dieter 5.4.1-2 +- make kio-extras unversioned (it's in kde-apps releases now) + +* Wed Sep 09 2015 Rex Dieter - 5.4.1-1 +- 5.4.1 + +* Wed Sep 09 2015 Rex Dieter 5.4.0-4 +- Wrong C.UTF-8 locale (#1250238) + +* Fri Sep 04 2015 Rex Dieter 5.4.0-3 +- make plasma-related runtime deps versioned + +* Tue Sep 01 2015 Daniel Vrátil - 5.4.0-2 +- Try rebuild against new Baloo + +* Fri Aug 21 2015 Daniel Vrátil - 5.4.0-1 +- Plasma 5.4.0 + +* Thu Aug 13 2015 Daniel Vrátil - 5.3.95-1 +- Plasma 5.3.95 + +* Wed Jul 29 2015 Fedora Release Engineering - 5.3.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159 + +* Wed Jul 22 2015 David Tardon - 5.3.2-5 +- rebuild for Boost 1.58 + +* Tue Jul 07 2015 Rex Dieter 5.3.2-4 +- BR: pkgconfig(xkeyboard-config) + +* Mon Jul 06 2015 Rex Dieter 5.3.2-3 +- Switch to Next Keyboard Layout shortcut restores after OS restarting (#1234082) + +* Sat Jun 27 2015 Rex Dieter 5.3.2-2 +- pull in upstream fix for kcm_touchpad: No touchpad found (#1199825) + +* Thu Jun 25 2015 Daniel Vrátil - 5.3.2-1 +- Plasma 5.3.2 + +* Tue Jun 23 2015 Rex Dieter 5.3.1-7 +- kcm_touchpad: No touchpad found (#1199825) + +* Wed Jun 17 2015 Rex Dieter 5.3.1-6 +- kcm_phonon does not display all HDMI audio ports (#1232903) + +* Tue Jun 16 2015 Rex Dieter 5.3.1-5 +- backport trashcan applet fix (#1231972,kde#349207) + +* Mon Jun 15 2015 Rex Dieter 5.3.1-4 +- backport "Fix-dropping-files-onto-the-desktop-containment" +- BR: kf5-kglobalaccel-devel + +* Mon Jun 08 2015 Rex Dieter 5.3.1-3 +- Requires: kmenuedit, instead of Recommends which doesn't seem to work reliably yet (#1229393) + +* Tue Jun 02 2015 Rex Dieter - 5.3.1-2 +- use %%{kf5_kinit_requires} +- -doc: noarch, %%lang'ify +- Provides: plasmashell + +* Tue May 26 2015 Daniel Vrátil - 5.3.1-1 +- Plasma 5.3.1 + +* Thu May 21 2015 Rex Dieter 5.3.0-6 +- default to folder containment (#1220862) + +* Fri May 08 2015 Rex Dieter 5.3.0-5 +- Recommends: kmenuedit + +* Sun May 03 2015 Rex Dieter 5.3.0-4 +- (re)fix fontinst service paths (#1208229) + +* Wed Apr 29 2015 Daniel Vrátil - 5.3.0-3 +- Provides plasmashell(desktop) (#1215691) + +* Tue Apr 28 2015 Daniel Vrátil - 5.3.0-2 +- Provides/Obsoletes kcm_touchpad (#1216897) + +* Mon Apr 27 2015 Daniel Vrátil - 5.3.0-1 +- Plasma 5.3.0 + +* Thu Apr 23 2015 Daniel Vrátil - 5.2.95-1 +- Plasma 5.2.95 + +* Thu Apr 23 2015 Rex Dieter - 5.2.2-5 +- fix fontinst service paths harder (#1208229) +- Konqueror "favorite" opens as a file manager (#1209169) + +* Thu Apr 02 2015 Daniel Vrátil 5.2.2-4 +- fix fontinst service paths (rhbz#1208229) + +* Mon Mar 30 2015 Rex Dieter 5.2.2-3 +- own /usr/share/plasma/shells/org.kde.plasma.desktop/updates + +* Fri Mar 20 2015 Rex Dieter 5.2.2-2 +- -doc: Conflicts: kcm_colors < 1:4.11.16-10 (drop conflicts in main pkg) + +* Fri Mar 20 2015 Daniel Vrátil - 5.2.2-1 +- Plasma 5.2.2 + +* Wed Mar 11 2015 Rex Dieter 5.2.1-6 +- adjust default kickoff favorites: +konsole +apper + +* Mon Mar 09 2015 Rex Dieter - 5.2.1-5 +- .spec cleanup +- pull in upstream fixes, particularly... +- Top level "tabs" disappears in Kickoff (kde#343524) + +* Sat Mar 07 2015 Rex Dieter - 5.2.1-4 +- -doc: Obsoletes: kde-runtime-docs (#1199720) +- %%find_lang: drop --with-kde, we want handbooks in -doc instead + +* Fri Mar 06 2015 Daniel Vrátil - 5.2.1-3 +- Does not obsolete kcm_colors anymore (KDE 4 version is co-installable now) + +* Fri Feb 27 2015 Daniel Vrátil - 5.2.1-2 +- Rebuild (GCC 5) + +* Tue Feb 24 2015 Daniel Vrátil - 5.2.1-1 +- Plasma 5.2.1 + +* Mon Feb 09 2015 Daniel Vrátil - 5.2.0-5 +- Requires: iso-codes (for kcm_keyboard) + +* Mon Feb 09 2015 Daniel Vrátil - 5.2.0-4 +- Copy konqsidebartng to /usr/share/kde4/apps so that KDE4 Konqueror can find it + +* Tue Jan 27 2015 Daniel Vrátil - 5.2.0-3 +- Workaround broken DBus service file generated by CMake + +* Tue Jan 27 2015 Daniel Vrátil - 5.2.0-2 +- Requires: breeze, systemsettings, kwin (for full Plasma experience) + +* Mon Jan 26 2015 Daniel Vrátil - 5.2.0-1 +- Plasma 5.2.0 + +* Wed Jan 14 2015 Daniel Vrátil - 5.1.95-2.beta +- Obsoletes/Provides kcm_colors + +* Wed Jan 14 2015 Daniel Vrátil - 5.1.95-1.beta +- Plasma 5.1.95 Beta + +* Wed Jan 07 2015 Jan Grulich - 5.1.2-3 +- Omit "5" from pkg summary + Add icon cache scriptlets + Validate application .desktop files + Fixed license + +* Wed Dec 17 2014 Daniel Vrátil - 5.1.2-2 +- Plasma 5.1.2 + +* Fri Nov 07 2014 Daniel Vrátil - 5.1.1-1 +- Plasma 5.1.1 + +* Tue Oct 14 2014 Daniel Vrátil - 5.1.0.1-1 +- Plasma 5.1.0.1 + +* Thu Oct 09 2014 Daniel Vrátil - 5.1.0-1 +- Plasma 5.1.0 + +* Tue Sep 16 2014 Daniel Vrátil - 5.0.2-1 +- Plasma 5.0.2 + +* Sun Aug 10 2014 Daniel Vrátil - 5.0.1-1 +- Plasma 5.0.1 + +* Thu Jul 17 2014 Daniel Vrátil - 5.0.0-1 +- Plasma 5.0.0 + +* Thu May 15 2014 Daniel Vrátil - 4.96.0-1.20140515git532fc47 +- Initial version of kde5-plasma-desktop diff --git a/sonic-desktop-interface/tree.txt b/sonic-desktop-interface/tree.txt new file mode 100644 index 0000000..48c67f5 --- /dev/null +++ b/sonic-desktop-interface/tree.txt @@ -0,0 +1,4712 @@ +/home/xlibre/rpmbuild/BUILDROOT/sonic-desktop-interface-6.6.4-1.el10.x86_64 +├── etc +│   └── xdg +│   └── autostart +│   └── kaccess.desktop +└── usr + ├── bin + │   ├── kaccess + │   ├── knetattach + │   ├── krunner-plugininstaller + │   ├── plasma-emojier + │   ├── solid-action-desktop-gen + │   └── tastenbrett + ├── lib + │   └── systemd + │   └── user + │   └── plasma-kaccess.service + ├── lib64 + │   ├── libkglobalaccelmodel.so.6 -> libkglobalaccelmodel.so.6.6.4 + │   ├── libkglobalaccelmodel.so.6.6.4 + │   └── qt6 + │   ├── plugins + │   │   ├── attica_kde.so + │   │   ├── kf6 + │   │   │   ├── kded + │   │   │   │   ├── device_automounter.so + │   │   │   │   └── keyboard.so + │   │   │   └── krunner + │   │   │   ├── krunner_keys.so + │   │   │   ├── krunner_kwin.so + │   │   │   └── krunner_plasma-desktop.so + │   │   └── plasma + │   │   ├── applets + │   │   │   ├── org.kde.panel.so + │   │   │   ├── org.kde.plasma.keyboardlayout.so + │   │   │   ├── org.kde.plasma.kicker.so + │   │   │   ├── org.kde.plasma.kickoff.so + │   │   │   ├── org.kde.plasma.kimpanel.so + │   │   │   ├── org.kde.plasma.marginsseparator.so + │   │   │   ├── org.kde.plasma.pager.so + │   │   │   ├── org.kde.plasma.showActivityManager.so + │   │   │   ├── org.kde.plasma.showdesktop.so + │   │   │   ├── org.kde.plasma.taskmanager.so + │   │   │   ├── org.kde.plasma.trash.so + │   │   │   └── org.kde.plasma.windowlist.so + │   │   └── kcms + │   │   ├── desktop + │   │   │   └── kcm_krunnersettings.so + │   │   ├── systemsettings + │   │   │   ├── kcm_access.so + │   │   │   ├── kcm_activities.so + │   │   │   ├── kcm_baloofile.so + │   │   │   ├── kcm_desktoppaths.so + │   │   │   ├── kcm_gamecontroller.so + │   │   │   ├── kcm_kded.so + │   │   │   ├── kcm_keyboard.so + │   │   │   ├── kcm_keys.so + │   │   │   ├── kcm_landingpage.so + │   │   │   ├── kcm_plasmasearch.so + │   │   │   ├── kcm_smserver.so + │   │   │   ├── kcm_splashscreen.so + │   │   │   ├── kcm_tablet.so + │   │   │   ├── kcm_touchscreen.so + │   │   │   └── kcm_workspace.so + │   │   └── systemsettings_qwidgets + │   │   ├── kcm_clock.so + │   │   ├── kcm_device_automounter.so + │   │   ├── kcm_qtquicksettings.so + │   │   ├── kcm_recentFiles.so + │   │   ├── kcm_solid_actions.so + │   │   └── kcmspellchecking.so + │   └── qml + │   └── org + │   └── kde + │   ├── plasma + │   │   ├── activityswitcher + │   │   │   ├── activityswitcherextensionplugin.qmltypes + │   │   │   ├── kde-qmlmodule.version + │   │   │   ├── libactivityswitcherextensionplugin.so + │   │   │   └── qmldir + │   │   ├── emoji + │   │   │   ├── EmojierDeclarativePlugin.qmltypes + │   │   │   ├── kde-qmlmodule.version + │   │   │   ├── libEmojierDeclarativePlugin.so + │   │   │   └── qmldir + │   │   └── private + │   │   └── kcm_keyboard + │   │   ├── kcm_keyboard_declarative.qmltypes + │   │   ├── kde-qmlmodule.version + │   │   ├── libkcm_keyboard_declarative.so + │   │   └── qmldir + │   └── private + │   └── desktopcontainment + │   └── folder + │   ├── folderplugin.qmltypes + │   ├── kde-qmlmodule.version + │   ├── libfolderplugin.so + │   └── qmldir + ├── libexec + │   ├── kf6 + │   │   └── kauth + │   │   └── kcmdatetimehelper + │   ├── kimpanel-ibus-panel + │   └── kimpanel-ibus-panel-launcher + └── share + ├── accounts + │   ├── providers + │   │   └── kde + │   │   └── opendesktop.provider + │   └── services + │   └── kde + │   └── opendesktop-rating.service + ├── applications + │   ├── kaccess.desktop + │   ├── kcm_access.desktop + │   ├── kcm_activities.desktop + │   ├── kcm_baloofile.desktop + │   ├── kcm_clock.desktop + │   ├── kcm_desktoppaths.desktop + │   ├── kcm_gamecontroller.desktop + │   ├── kcm_kded.desktop + │   ├── kcm_keyboard.desktop + │   ├── kcm_keys.desktop + │   ├── kcm_krunnersettings.desktop + │   ├── kcm_landingpage.desktop + │   ├── kcm_plasmasearch.desktop + │   ├── kcm_qtquicksettings.desktop + │   ├── kcm_recentFiles.desktop + │   ├── kcm_smserver.desktop + │   ├── kcm_solid_actions.desktop + │   ├── kcmspellchecking.desktop + │   ├── kcm_splashscreen.desktop + │   ├── kcm_tablet.desktop + │   ├── kcm_touchscreen.desktop + │   ├── kcm_workspace.desktop + │   ├── kde-mimeapps.list + │   ├── org.kde.knetattach.desktop + │   └── org.kde.plasma.emojier.desktop + ├── config.kcfg + │   ├── kactivitymanagerd_plugins_settings.kcfg + │   ├── kcmaccessibilitybell.kcfg + │   ├── kcmaccessibilitycolorblindnesscorrection.kcfg + │   ├── kcmaccessibilityinvert.kcfg + │   ├── kcmaccessibilitykeyboard.kcfg + │   ├── kcmaccessibilitymouse.kcfg + │   ├── kcmaccessibilityscreenreader.kcfg + │   ├── kcmaccessibilityshakecursor.kcfg + │   ├── kcmaccessibilityzoommagnifier.kcfg + │   ├── krunnersettingsbase.kcfg + │   ├── landingpage_kdeglobalssettings.kcfg + │   ├── splashscreensettings.kcfg + │   ├── workspaceoptions_kdeglobalssettings.kcfg + │   ├── workspaceoptions_kwinsettings.kcfg + │   └── workspaceoptions_plasmasettings.kcfg + ├── dbus-1 + │   ├── system.d + │   │   └── org.kde.kcontrol.kcmclock.conf + │   └── system-services + │   └── org.kde.kcontrol.kcmclock.service + ├── doc + │   └── HTML + │   ├── ca + │   │   ├── kcontrol + │   │   │   ├── baloo + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── clock + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── joystick + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmaccess + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmactivities + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcm_recentFiles + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmsmserver + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kded + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keyboard + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keys + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── mouse + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── paths + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   └── paths.png + │   │   │   ├── solid-actions + │   │   │   │   ├── add-action.png + │   │   │   │   ├── edit-action.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   └── main.png + │   │   │   ├── solid-device-automounter + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── spellchecking + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── splashscreen + │   │   │   │   ├── get-new-theme.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   └── splash-main.png + │   │   │   └── workspaceoptions + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kfontview + │   │   │   ├── index.cache.bz2 + │   │   │   ├── index.docbook + │   │   │   └── kfontview.png + │   │   ├── knetattach + │   │   │   ├── index.cache.bz2 + │   │   │   ├── index.docbook + │   │   │   ├── screenshot1.png + │   │   │   ├── screenshot2.png + │   │   │   ├── screenshot3.png + │   │   │   ├── screenshot4.png + │   │   │   └── screenshot.png + │   │   └── plasma-desktop + │   │   ├── add-widgets.png + │   │   ├── application-launcher.png + │   │   ├── application-menu.png + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── de + │   │   ├── kcontrol + │   │   │   ├── baloo + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── clock + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── joystick + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmaccess + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmactivities + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmsmserver + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kded + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keyboard + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keys + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── mouse + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── paths + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── solid-actions + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── solid-device-automounter + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── spellchecking + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── splashscreen + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── workspaceoptions + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kfontview + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── knetattach + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── plasma-desktop + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── en + │   │   ├── kcontrol + │   │   │   ├── baloo + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── clock + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── joystick + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   ├── joystick-calibration.png + │   │   │   │   └── joystick-main.png + │   │   │   ├── kcmaccess + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmactivities + │   │   │   │   ├── configure.png + │   │   │   │   ├── edit-delete.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcm_recentFiles + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmsmserver + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kded + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keyboard + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keys + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   ├── list-add.png + │   │   │   │   └── remove.png + │   │   │   ├── mouse + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── paths + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   └── paths.png + │   │   │   ├── solid-actions + │   │   │   │   ├── add-action.png + │   │   │   │   ├── edit-action.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   └── main.png + │   │   │   ├── solid-device-automounter + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── spellchecking + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── splashscreen + │   │   │   │   ├── get-new-theme.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   └── splash-main.png + │   │   │   └── workspaceoptions + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kfontview + │   │   │   ├── index.cache.bz2 + │   │   │   ├── index.docbook + │   │   │   └── kfontview.png + │   │   ├── knetattach + │   │   │   ├── index.cache.bz2 + │   │   │   ├── index.docbook + │   │   │   ├── screenshot1.png + │   │   │   ├── screenshot2.png + │   │   │   ├── screenshot3.png + │   │   │   ├── screenshot4.png + │   │   │   └── screenshot.png + │   │   └── plasma-desktop + │   │   ├── add-widgets.png + │   │   ├── application-launcher.png + │   │   ├── application-launcher-settings.png + │   │   ├── application-menu.png + │   │   ├── desktop-settings.png + │   │   ├── device_notifier_widget_actions.png + │   │   ├── device_notifier_widget.png + │   │   ├── folder-view.png + │   │   ├── index.cache.bz2 + │   │   ├── index.docbook + │   │   ├── krunner-configure.png + │   │   ├── krunner-desktop-actions.png + │   │   ├── krunner.png + │   │   ├── panel-settings.png + │   │   ├── plasma-desktop-annotated.png + │   │   ├── remove.png + │   │   ├── system-tray-settings.png + │   │   ├── system-tray-up-arrow.png + │   │   └── taskbar-settings.png + │   ├── es + │   │   ├── kcontrol + │   │   │   ├── baloo + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── clock + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── joystick + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmaccess + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmactivities + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcm_recentFiles + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmsmserver + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kded + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keyboard + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keys + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── mouse + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── paths + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── solid-actions + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── solid-device-automounter + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── spellchecking + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── splashscreen + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── workspaceoptions + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kfontview + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── knetattach + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── plasma-desktop + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── et + │   │   └── kcontrol + │   │   ├── clock + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── solid-actions + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── solid-device-automounter + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── fr + │   │   ├── kcontrol + │   │   │   ├── clock + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kded + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── paths + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── solid-actions + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── solid-device-automounter + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── spellchecking + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── splashscreen + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── knetattach + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── id + │   │   ├── kcontrol + │   │   │   ├── baloo + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── clock + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── joystick + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmaccess + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmsmserver + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kded + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keyboard + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keys + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── mouse + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── paths + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── solid-actions + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── solid-device-automounter + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── spellchecking + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── splashscreen + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── workspaceoptions + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kfontview + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── knetattach + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── plasma-desktop + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── it + │   │   ├── kcontrol + │   │   │   ├── baloo + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── clock + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── joystick + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmaccess + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmactivities + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcm_recentFiles + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmsmserver + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kded + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keyboard + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keys + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── mouse + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── paths + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── solid-actions + │   │   │   │   ├── add-action.png + │   │   │   │   ├── edit-action.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   └── main.png + │   │   │   ├── solid-device-automounter + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── spellchecking + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── splashscreen + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── workspaceoptions + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kfontview + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── knetattach + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── plasma-desktop + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── nl + │   │   ├── kcontrol + │   │   │   ├── baloo + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── clock + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── joystick + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmaccess + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmactivities + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcm_recentFiles + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmsmserver + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kded + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keyboard + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keys + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── mouse + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── paths + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── solid-actions + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── solid-device-automounter + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── spellchecking + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── splashscreen + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── workspaceoptions + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kfontview + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── knetattach + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── plasma-desktop + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── pt + │   │   ├── kcontrol + │   │   │   ├── baloo + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── clock + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── joystick + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmaccess + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kded + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keyboard + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keys + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── mouse + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── paths + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── solid-actions + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── solid-device-automounter + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── spellchecking + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── splashscreen + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kfontview + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── knetattach + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── plasma-desktop + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── pt_BR + │   │   ├── kcontrol + │   │   │   ├── baloo + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── clock + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── joystick + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmaccess + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmactivities + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcm_recentFiles + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmsmserver + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kded + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keyboard + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keys + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── mouse + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── paths + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── solid-actions + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── solid-device-automounter + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── spellchecking + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── splashscreen + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   └── splash-main.png + │   │   │   └── workspaceoptions + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kfontview + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── knetattach + │   │   │   ├── index.cache.bz2 + │   │   │   ├── index.docbook + │   │   │   ├── screenshot1.png + │   │   │   ├── screenshot2.png + │   │   │   ├── screenshot3.png + │   │   │   ├── screenshot4.png + │   │   │   └── screenshot.png + │   │   └── plasma-desktop + │   │   ├── add-widgets.png + │   │   ├── desktop-settings.png + │   │   ├── index.cache.bz2 + │   │   ├── index.docbook + │   │   ├── krunner-configure.png + │   │   ├── krunner.png + │   │   ├── panel-settings.png + │   │   ├── system-tray-settings.png + │   │   ├── system-tray-up-arrow.png + │   │   └── taskbar-settings.png + │   ├── ru + │   │   ├── kcontrol + │   │   │   ├── baloo + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── clock + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── joystick + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   ├── joystick-calibration.png + │   │   │   │   └── joystick-main.png + │   │   │   ├── kcmaccess + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmactivities + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmsmserver + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kded + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keyboard + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keys + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── mouse + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── paths + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   └── paths.png + │   │   │   ├── solid-actions + │   │   │   │   ├── add-action.png + │   │   │   │   ├── edit-action.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   └── main.png + │   │   │   ├── solid-device-automounter + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── spellchecking + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── splashscreen + │   │   │   │   ├── get-new-theme.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   └── splash-main.png + │   │   │   └── workspaceoptions + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kfontview + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── knetattach + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── plasma-desktop + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── sl + │   │   ├── kcontrol + │   │   │   ├── baloo + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── clock + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── joystick + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmaccess + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmactivities + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcm_recentFiles + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmsmserver + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kded + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keyboard + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keys + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── mouse + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── paths + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── solid-actions + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── solid-device-automounter + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── spellchecking + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── splashscreen + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── workspaceoptions + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kfontview + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── plasma-desktop + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── sr + │   │   ├── kcontrol + │   │   │   ├── clock + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── paths + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── spellchecking + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── knetattach + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── sr@latin + │   │   ├── kcontrol + │   │   │   ├── clock + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── paths + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── spellchecking + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── knetattach + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── sv + │   │   ├── kcontrol + │   │   │   ├── baloo + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── clock + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── joystick + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmaccess + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmactivities + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmsmserver + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kded + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keyboard + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keys + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── mouse + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── paths + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── solid-actions + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── solid-device-automounter + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── spellchecking + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── splashscreen + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── workspaceoptions + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kfontview + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── knetattach + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── plasma-desktop + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── tr + │   │   ├── kcontrol + │   │   │   ├── baloo + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── clock + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── joystick + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmaccess + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmactivities + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcm_recentFiles + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmsmserver + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kded + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keyboard + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── keys + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── mouse + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── paths + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── solid-actions + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── solid-device-automounter + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── spellchecking + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── splashscreen + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── workspaceoptions + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kfontview + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── knetattach + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── plasma-desktop + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   └── uk + │   ├── kcontrol + │   │   ├── baloo + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── clock + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── joystick + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kcmaccess + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kcmactivities + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kcm_recentFiles + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kcmsmserver + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kded + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── keyboard + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── keys + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── mouse + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── paths + │   │   │   ├── index.cache.bz2 + │   │   │   ├── index.docbook + │   │   │   └── paths.png + │   │   ├── solid-actions + │   │   │   ├── add-action.png + │   │   │   ├── edit-action.png + │   │   │   ├── index.cache.bz2 + │   │   │   ├── index.docbook + │   │   │   └── main.png + │   │   ├── solid-device-automounter + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── spellchecking + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── splashscreen + │   │   │   ├── get-new-theme.png + │   │   │   ├── index.cache.bz2 + │   │   │   ├── index.docbook + │   │   │   └── splash-main.png + │   │   └── workspaceoptions + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── kfontview + │   │   ├── index.cache.bz2 + │   │   ├── index.docbook + │   │   └── kfontview.png + │   ├── knetattach + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   └── plasma-desktop + │   ├── application-launcher-settings.png + │   ├── index.cache.bz2 + │   └── index.docbook + ├── kcmkeys + │   ├── kde3.kksrc + │   ├── kde4.kksrc + │   ├── mac4.kksrc + │   ├── unix3.kksrc + │   ├── win3.kksrc + │   ├── win4.kksrc + │   └── wm3.kksrc + ├── kcm_recentFiles + │   └── workspace + │   └── settings + │   └── qml + │   └── recentFiles + │   └── ExcludedApplicationView.qml + ├── kcmsolidactions + │   └── solid-action-template.desktop + ├── kglobalaccel + │   └── org.kde.plasma.emojier.desktop + ├── knotifications6 + │   └── kaccess.notifyrc + ├── knsrcfiles + │   ├── krunner.knsrc + │   └── ksplash.knsrc + ├── locale + │   ├── af + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── knetattach.mo + │   │   └── plasma_applet_org.kde.desktopcontainment.mo + │   ├── ar + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── as + │   │   └── LC_MESSAGES + │   │   └── kcm_access.mo + │   ├── ast + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── az + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── be + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── be@latin + │   │   └── LC_MESSAGES + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   └── plasma_applet_org.kde.plasma.trash.mo + │   ├── bg + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── bn + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_smserver.mo + │   │   └── plasma_applet_org.kde.desktopcontainment.mo + │   ├── bn_IN + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_smserver.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   └── plasma_applet_org.kde.plasma.trash.mo + │   ├── br + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── knetattach.mo + │   │   └── plasma_applet_org.kde.desktopcontainment.mo + │   ├── bs + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   └── plasma_shell_org.kde.plasma.desktop.mo + │   ├── ca + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── ca@valencia + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── cs + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── csb + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_smserver.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   └── plasma_runner_plasma-desktop.mo + │   ├── cy + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── knetattach.mo + │   │   └── plasma_applet_org.kde.desktopcontainment.mo + │   ├── da + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── de + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── el + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── en_GB + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── eo + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── es + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── et + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── eu + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── fa + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   └── plasma_applet_org.kde.plasma.trash.mo + │   ├── fi + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── fr + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── fy + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   └── plasma_applet_org.kde.plasma.trash.mo + │   ├── ga + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── gl + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── gu + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   └── plasma_runner_plasma-desktop.mo + │   ├── he + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── hi + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── hne + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   └── plasma_applet_org.kde.plasma.trash.mo + │   ├── hr + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   └── plasma_runner_plasma-desktop.mo + │   ├── hsb + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   └── plasma_applet_org.kde.plasma.trash.mo + │   ├── hu + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── ia + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── id + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── ie + │   │   └── LC_MESSAGES + │   │   ├── kcmkclock.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── is + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── it + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── ja + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── ka + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── kk + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   └── plasma_shell_org.kde.plasma.desktop.mo + │   ├── km + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   └── plasma_runner_plasma-desktop.mo + │   ├── kn + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   └── plasma_runner_plasma-desktop.mo + │   ├── ko + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── ku + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   └── plasma_applet_org.kde.plasma.trash.mo + │   ├── lt + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── lv + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── mai + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   └── plasma_runner_plasma-desktop.mo + │   ├── mk + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   └── plasma_applet_org.kde.plasma.trash.mo + │   ├── ml + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── mr + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   └── plasma_shell_org.kde.plasma.desktop.mo + │   ├── ms + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   └── plasma_runner_plasma-desktop.mo + │   ├── nb + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── nds + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   └── plasma_shell_org.kde.plasma.desktop.mo + │   ├── ne + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   └── plasma_applet_org.kde.plasma.pager.mo + │   ├── nl + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── nn + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── oc + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── knetattach.mo + │   │   └── plasma_applet_org.kde.plasma.pager.mo + │   ├── or + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   └── plasma_applet_org.kde.plasma.trash.mo + │   ├── pa + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── pl + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── pt + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── pt_BR + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── ro + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── ru + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── sa + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── se + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   └── plasma_applet_org.kde.plasma.pager.mo + │   ├── si + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   └── plasma_runner_plasma-desktop.mo + │   ├── sk + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── sl + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── sq + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   └── plasma_applet_org.kde.plasma.windowlist.mo + │   ├── sr + │   │   ├── LC_MESSAGES + │   │   │   ├── kaccess.mo + │   │   │   ├── kcm_access.mo + │   │   │   ├── kcm_activities.mo + │   │   │   ├── kcm_baloofile.mo + │   │   │   ├── kcm_desktoppaths.mo + │   │   │   ├── kcm_device_automounter.mo + │   │   │   ├── kcmkclock.mo + │   │   │   ├── kcm_kded.mo + │   │   │   ├── kcm_keyboard.mo + │   │   │   ├── kcm_krunnersettings.mo + │   │   │   ├── kcmmouse.mo + │   │   │   ├── kcm_plasmasearch.mo + │   │   │   ├── kcm_smserver.mo + │   │   │   ├── kcm_solid_actions.mo + │   │   │   ├── kcm_splashscreen.mo + │   │   │   ├── kcm_touchpad.mo + │   │   │   ├── kcm_workspace.mo + │   │   │   ├── knetattach.mo + │   │   │   ├── plasmaactivitymanager.mo + │   │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   │   ├── plasma_runner_kwin.mo + │   │   │   ├── plasma_runner_plasma-desktop.mo + │   │   │   └── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── LC_SCRIPTS + │   │   └── kfontinst + │   │   └── kfontinst.js + │   ├── sr@ijekavian + │   │   ├── LC_MESSAGES + │   │   │   ├── kaccess.mo + │   │   │   ├── kcm_access.mo + │   │   │   ├── kcm_activities.mo + │   │   │   ├── kcm_baloofile.mo + │   │   │   ├── kcm_desktoppaths.mo + │   │   │   ├── kcm_device_automounter.mo + │   │   │   ├── kcmkclock.mo + │   │   │   ├── kcm_kded.mo + │   │   │   ├── kcm_keyboard.mo + │   │   │   ├── kcm_krunnersettings.mo + │   │   │   ├── kcmmouse.mo + │   │   │   ├── kcm_plasmasearch.mo + │   │   │   ├── kcm_smserver.mo + │   │   │   ├── kcm_solid_actions.mo + │   │   │   ├── kcm_splashscreen.mo + │   │   │   ├── kcm_touchpad.mo + │   │   │   ├── kcm_workspace.mo + │   │   │   ├── knetattach.mo + │   │   │   ├── plasmaactivitymanager.mo + │   │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   │   ├── plasma_runner_kwin.mo + │   │   │   ├── plasma_runner_plasma-desktop.mo + │   │   │   └── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── LC_SCRIPTS + │   │   └── kfontinst + │   │   └── kfontinst.js + │   ├── sr@ijekavianlatin + │   │   ├── LC_MESSAGES + │   │   │   ├── kaccess.mo + │   │   │   ├── kcm_access.mo + │   │   │   ├── kcm_activities.mo + │   │   │   ├── kcm_baloofile.mo + │   │   │   ├── kcm_desktoppaths.mo + │   │   │   ├── kcm_device_automounter.mo + │   │   │   ├── kcmkclock.mo + │   │   │   ├── kcm_kded.mo + │   │   │   ├── kcm_keyboard.mo + │   │   │   ├── kcm_krunnersettings.mo + │   │   │   ├── kcmmouse.mo + │   │   │   ├── kcm_plasmasearch.mo + │   │   │   ├── kcm_smserver.mo + │   │   │   ├── kcm_solid_actions.mo + │   │   │   ├── kcm_splashscreen.mo + │   │   │   ├── kcm_touchpad.mo + │   │   │   ├── kcm_workspace.mo + │   │   │   ├── knetattach.mo + │   │   │   ├── plasmaactivitymanager.mo + │   │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   │   ├── plasma_runner_kwin.mo + │   │   │   ├── plasma_runner_plasma-desktop.mo + │   │   │   └── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── LC_SCRIPTS + │   │   └── kfontinst + │   │   └── kfontinst.js + │   ├── sr@latin + │   │   ├── LC_MESSAGES + │   │   │   ├── kaccess.mo + │   │   │   ├── kcm_access.mo + │   │   │   ├── kcm_activities.mo + │   │   │   ├── kcm_baloofile.mo + │   │   │   ├── kcm_desktoppaths.mo + │   │   │   ├── kcm_device_automounter.mo + │   │   │   ├── kcmkclock.mo + │   │   │   ├── kcm_kded.mo + │   │   │   ├── kcm_keyboard.mo + │   │   │   ├── kcm_krunnersettings.mo + │   │   │   ├── kcmmouse.mo + │   │   │   ├── kcm_plasmasearch.mo + │   │   │   ├── kcm_smserver.mo + │   │   │   ├── kcm_solid_actions.mo + │   │   │   ├── kcm_splashscreen.mo + │   │   │   ├── kcm_touchpad.mo + │   │   │   ├── kcm_workspace.mo + │   │   │   ├── knetattach.mo + │   │   │   ├── plasmaactivitymanager.mo + │   │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   │   ├── plasma_runner_kwin.mo + │   │   │   ├── plasma_runner_plasma-desktop.mo + │   │   │   └── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── LC_SCRIPTS + │   │   └── kfontinst + │   │   └── kfontinst.js + │   ├── sv + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── ta + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── te + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   └── plasma_applet_org.kde.plasma.trash.mo + │   ├── tg + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── th + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   └── plasma_runner_plasma-desktop.mo + │   ├── tok + │   │   └── LC_MESSAGES + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   └── plasma_shell_org.kde.plasma.desktop.mo + │   ├── tr + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── ug + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   └── plasma_shell_org.kde.plasma.desktop.mo + │   ├── uk + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── uz + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── knetattach.mo + │   │   └── plasma_applet_org.kde.desktopcontainment.mo + │   ├── uz@cyrillic + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── knetattach.mo + │   │   └── plasma_applet_org.kde.desktopcontainment.mo + │   ├── vi + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   ├── wa + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── knetattach.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   └── plasma_runner_plasma-desktop.mo + │   ├── xh + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_smserver.mo + │   │   └── plasma_applet_org.kde.desktopcontainment.mo + │   ├── zh_CN + │   │   └── LC_MESSAGES + │   │   ├── kaccess.mo + │   │   ├── kcm_access.mo + │   │   ├── kcm_activities.mo + │   │   ├── kcm_baloofile.mo + │   │   ├── kcm_desktoppaths.mo + │   │   ├── kcm_device_automounter.mo + │   │   ├── kcm_gamecontroller.mo + │   │   ├── kcmkclock.mo + │   │   ├── kcm_kded.mo + │   │   ├── kcm_keyboard.mo + │   │   ├── kcm_keys.mo + │   │   ├── kcm_krunnersettings.mo + │   │   ├── kcm_landingpage.mo + │   │   ├── kcmmouse.mo + │   │   ├── kcm_plasmasearch.mo + │   │   ├── kcmqtquicksettings.mo + │   │   ├── kcm_recentFiles.mo + │   │   ├── kcm_smserver.mo + │   │   ├── kcm_solid_actions.mo + │   │   ├── kcm_splashscreen.mo + │   │   ├── kcm_tablet.mo + │   │   ├── kcm_touchpad.mo + │   │   ├── kcm_touchscreen.mo + │   │   ├── kcm_workspace.mo + │   │   ├── knetattach.mo + │   │   ├── org.kde.plasma.emojier.mo + │   │   ├── plasmaactivitymanager.mo + │   │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   │   ├── plasma_applet_org.kde.panel.mo + │   │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   │   ├── plasma_applet_org.kde.plasma.pager.mo + │   │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.trash.mo + │   │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   │   ├── plasma-desktop-sddm-theme.mo + │   │   ├── plasma_runner_keys.mo + │   │   ├── plasma_runner_kwin.mo + │   │   ├── plasma_runner_plasma-desktop.mo + │   │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   │   └── plasma_toolbox_org.kde.paneltoolbox.mo + │   └── zh_TW + │   └── LC_MESSAGES + │   ├── kaccess.mo + │   ├── kcm_access.mo + │   ├── kcm_activities.mo + │   ├── kcm_baloofile.mo + │   ├── kcm_desktoppaths.mo + │   ├── kcm_device_automounter.mo + │   ├── kcm_gamecontroller.mo + │   ├── kcmkclock.mo + │   ├── kcm_kded.mo + │   ├── kcm_keyboard.mo + │   ├── kcm_keys.mo + │   ├── kcm_krunnersettings.mo + │   ├── kcm_landingpage.mo + │   ├── kcmmouse.mo + │   ├── kcm_plasmasearch.mo + │   ├── kcmqtquicksettings.mo + │   ├── kcm_recentFiles.mo + │   ├── kcm_smserver.mo + │   ├── kcm_solid_actions.mo + │   ├── kcm_splashscreen.mo + │   ├── kcm_tablet.mo + │   ├── kcm_touchpad.mo + │   ├── kcm_touchscreen.mo + │   ├── kcm_workspace.mo + │   ├── knetattach.mo + │   ├── org.kde.plasma.emojier.mo + │   ├── plasmaactivitymanager.mo + │   ├── plasma_applet_org.kde.desktopcontainment.mo + │   ├── plasma_applet_org.kde.panel.mo + │   ├── plasma_applet_org.kde.plasma.keyboardlayout.mo + │   ├── plasma_applet_org.kde.plasma.kicker.mo + │   ├── plasma_applet_org.kde.plasma.kickoff.mo + │   ├── plasma_applet_org.kde.plasma.kimpanel.mo + │   ├── plasma_applet_org.kde.plasma.pager.mo + │   ├── plasma_applet_org.kde.plasma.showActivityManager.mo + │   ├── plasma_applet_org.kde.plasma.showdesktop.mo + │   ├── plasma_applet_org.kde.plasma.taskmanager.mo + │   ├── plasma_applet_org.kde.plasma.trash.mo + │   ├── plasma_applet_org.kde.plasma.windowlist.mo + │   ├── plasma-desktop-sddm-theme.mo + │   ├── plasma_runner_keys.mo + │   ├── plasma_runner_kwin.mo + │   ├── plasma_runner_plasma-desktop.mo + │   ├── plasma_shell_org.kde.plasma.desktop.mo + │   └── plasma_toolbox_org.kde.paneltoolbox.mo + ├── metainfo + │   └── org.kde.plasmashell.metainfo.xml + ├── plasma + │   ├── emoji + │   │   ├── af.dict + │   │   ├── ak.dict + │   │   ├── am.dict + │   │   ├── ar.dict + │   │   ├── ar_SA.dict + │   │   ├── as.dict + │   │   ├── ast.dict + │   │   ├── az.dict + │   │   ├── be.dict + │   │   ├── bew.dict + │   │   ├── bg.dict + │   │   ├── bgn.dict + │   │   ├── blo.dict + │   │   ├── bn.dict + │   │   ├── br.dict + │   │   ├── bs.dict + │   │   ├── ca.dict + │   │   ├── ca_ES_VALENCIA.dict + │   │   ├── ccp.dict + │   │   ├── ceb.dict + │   │   ├── chr.dict + │   │   ├── ckb.dict + │   │   ├── cs.dict + │   │   ├── cv.dict + │   │   ├── cy.dict + │   │   ├── da.dict + │   │   ├── de_CH.dict + │   │   ├── de.dict + │   │   ├── dsb.dict + │   │   ├── el.dict + │   │   ├── en_001.dict + │   │   ├── en_AU.dict + │   │   ├── en_CA.dict + │   │   ├── en.dict + │   │   ├── en_IN.dict + │   │   ├── es_419.dict + │   │   ├── es.dict + │   │   ├── es_MX.dict + │   │   ├── es_US.dict + │   │   ├── et.dict + │   │   ├── eu.dict + │   │   ├── fa.dict + │   │   ├── ff_Adlm.dict + │   │   ├── fi.dict + │   │   ├── fil.dict + │   │   ├── fo.dict + │   │   ├── fr_CA.dict + │   │   ├── fr.dict + │   │   ├── frr.dict + │   │   ├── ga.dict + │   │   ├── gd.dict + │   │   ├── gl.dict + │   │   ├── gu.dict + │   │   ├── ha.dict + │   │   ├── ha_NE.dict + │   │   ├── he.dict + │   │   ├── hi.dict + │   │   ├── hi_Latn.dict + │   │   ├── hr.dict + │   │   ├── hsb.dict + │   │   ├── hu.dict + │   │   ├── hy.dict + │   │   ├── ia.dict + │   │   ├── id.dict + │   │   ├── ig.dict + │   │   ├── is.dict + │   │   ├── it.dict + │   │   ├── ja.dict + │   │   ├── jv.dict + │   │   ├── kab.dict + │   │   ├── ka.dict + │   │   ├── kk_Arab.dict + │   │   ├── kk.dict + │   │   ├── kl.dict + │   │   ├── km.dict + │   │   ├── kn.dict + │   │   ├── ko.dict + │   │   ├── kok.dict + │   │   ├── ku.dict + │   │   ├── ky.dict + │   │   ├── lb.dict + │   │   ├── lij.dict + │   │   ├── lo.dict + │   │   ├── lt.dict + │   │   ├── lv.dict + │   │   ├── mi.dict + │   │   ├── mk.dict + │   │   ├── ml.dict + │   │   ├── mn.dict + │   │   ├── mni.dict + │   │   ├── mr.dict + │   │   ├── ms.dict + │   │   ├── mt.dict + │   │   ├── my.dict + │   │   ├── ne.dict + │   │   ├── nl.dict + │   │   ├── nn.dict + │   │   ├── no.dict + │   │   ├── nso.dict + │   │   ├── oc.dict + │   │   ├── or.dict + │   │   ├── pa_Arab.dict + │   │   ├── pa.dict + │   │   ├── pap.dict + │   │   ├── pcm.dict + │   │   ├── pl.dict + │   │   ├── ps.dict + │   │   ├── pt.dict + │   │   ├── pt_PT.dict + │   │   ├── quc.dict + │   │   ├── qu.dict + │   │   ├── rhg.dict + │   │   ├── rm.dict + │   │   ├── ro.dict + │   │   ├── ru.dict + │   │   ├── rw.dict + │   │   ├── sat.dict + │   │   ├── sc.dict + │   │   ├── sd.dict + │   │   ├── si.dict + │   │   ├── sk.dict + │   │   ├── sl.dict + │   │   ├── so.dict + │   │   ├── sq.dict + │   │   ├── sr_Cyrl_BA.dict + │   │   ├── sr.dict + │   │   ├── sr_Latn_BA.dict + │   │   ├── sr_Latn.dict + │   │   ├── sv.dict + │   │   ├── sw.dict + │   │   ├── sw_KE.dict + │   │   ├── ta.dict + │   │   ├── te.dict + │   │   ├── tg.dict + │   │   ├── th.dict + │   │   ├── ti.dict + │   │   ├── tk.dict + │   │   ├── tn.dict + │   │   ├── to.dict + │   │   ├── tr.dict + │   │   ├── ug.dict + │   │   ├── uk.dict + │   │   ├── ur.dict + │   │   ├── uz.dict + │   │   ├── vec.dict + │   │   ├── vi.dict + │   │   ├── wo.dict + │   │   ├── xh.dict + │   │   ├── yo_BJ.dict + │   │   ├── yo.dict + │   │   ├── yue.dict + │   │   ├── yue_Hans.dict + │   │   ├── zh.dict + │   │   ├── zh_Hant.dict + │   │   ├── zh_Hant_HK.dict + │   │   └── zu.dict + │   ├── layout-templates + │   │   ├── org.kde.plasma.desktop.appmenubar + │   │   │   ├── contents + │   │   │   │   └── layout.js + │   │   │   └── metadata.json + │   │   ├── org.kde.plasma.desktop.defaultPanel + │   │   │   ├── contents + │   │   │   │   └── layout.js + │   │   │   └── metadata.json + │   │   └── org.kde.plasma.desktop.emptyPanel + │   │   ├── contents + │   │   │   └── layout.js + │   │   └── metadata.json + │   ├── packages + │   │   └── org.kde.paneltoolbox + │   │   ├── contents + │   │   │   └── ui + │   │   │   └── main.qml + │   │   └── metadata.json + │   ├── plasmoids + │   │   ├── org.kde.desktopcontainment + │   │   │   ├── contents + │   │   │   │   ├── config + │   │   │   │   │   ├── config.qml + │   │   │   │   │   └── main.xml + │   │   │   │   └── ui + │   │   │   │   ├── ActionButton.qml + │   │   │   │   ├── BackButtonItem.qml + │   │   │   │   ├── code + │   │   │   │   │   └── FolderTools.js + │   │   │   │   ├── CompactRepresentation.qml + │   │   │   │   ├── ConfigFilter.qml + │   │   │   │   ├── ConfigIcons.qml + │   │   │   │   ├── ConfigLocation.qml + │   │   │   │   ├── ConfigOverlay.qml + │   │   │   │   ├── FolderItemActionButton.qml + │   │   │   │   ├── FolderItemDelegate.qml + │   │   │   │   ├── FolderItemPreviewPluginsDialog.qml + │   │   │   │   ├── FolderViewDialog.qml + │   │   │   │   ├── FolderViewDropArea.qml + │   │   │   │   ├── FolderViewLayer.qml + │   │   │   │   ├── FolderView.qml + │   │   │   │   ├── main.qml + │   │   │   │   └── RenameEditor.qml + │   │   │   └── metadata.json + │   │   ├── org.kde.plasma.activitypager + │   │   │   └── metadata.json + │   │   ├── org.kde.plasma.folder + │   │   │   └── metadata.json + │   │   ├── org.kde.plasma.icontasks + │   │   │   └── metadata.json + │   │   └── org.kde.plasma.minimizeall + │   │   └── metadata.json + │   └── shells + │   └── org.kde.plasma.desktop + │   ├── contents + │   │   ├── activitymanager + │   │   │   ├── ActivityItem.qml + │   │   │   ├── ActivityList.qml + │   │   │   ├── ActivityManager.qml + │   │   │   ├── Heading.qml + │   │   │   ├── static.js + │   │   │   ├── TaskDropArea.qml + │   │   │   └── WindowPreview.qml + │   │   ├── applet + │   │   │   ├── AppletError.qml + │   │   │   ├── CompactApplet.qml + │   │   │   └── DefaultCompactRepresentation.qml + │   │   ├── configuration + │   │   │   ├── AboutPlugin.qml + │   │   │   ├── AppletConfiguration.qml + │   │   │   ├── ConfigCategoryDelegate.qml + │   │   │   ├── ConfigurationContainmentActions.qml + │   │   │   ├── ConfigurationContainmentAppearance.qml + │   │   │   ├── ConfigurationShortcuts.qml + │   │   │   ├── ContainmentConfiguration.qml + │   │   │   ├── MouseEventInputButton.qml + │   │   │   ├── panelconfiguration + │   │   │   │   ├── PanelRepresentation.qml + │   │   │   │   ├── Ruler.qml + │   │   │   │   └── SliderHandle.qml + │   │   │   ├── PanelConfiguration.qml + │   │   │   ├── shellcontainmentconfiguration + │   │   │   │   └── Delegate.qml + │   │   │   └── ShellContainmentConfiguration.qml + │   │   ├── defaults + │   │   ├── explorer + │   │   │   ├── AppletAlternatives.qml + │   │   │   ├── AppletDelegate.qml + │   │   │   └── WidgetExplorer.qml + │   │   ├── InteractiveConsole.qml + │   │   ├── lockscreen + │   │   │   ├── config.qml + │   │   │   ├── config.xml + │   │   │   ├── LockOsd.qml + │   │   │   ├── LockScreen.qml + │   │   │   ├── LockScreenUi.qml + │   │   │   ├── MainBlock.qml + │   │   │   ├── MediaControls.qml + │   │   │   ├── NoPasswordUnlock.qml + │   │   │   ├── PasswordSync.qml + │   │   │   └── qmldir + │   │   ├── main.js + │   │   ├── updates + │   │   │   ├── containmentactions_middlebutton.js + │   │   │   ├── digitalclock_migrate_font_settings.js + │   │   │   ├── digitalclock_migrate_showseconds_setting.js + │   │   │   ├── digitalclock_rename_timezonedisplay_key.js + │   │   │   ├── folderview_fix_recursive_screenmapping.js + │   │   │   ├── keyboardlayout_migrateiconsetting.js + │   │   │   ├── keyboardlayout_remove_shortcut.js + │   │   │   ├── klipper_clear_config.js + │   │   │   ├── maintain_existing_desktop_icon_sizes.js + │   │   │   ├── mediaframe_migrate_useBackground_setting.js + │   │   │   ├── migrate_font_weights.js + │   │   │   ├── move_desktop_layout_config.js + │   │   │   ├── no_middle_click_paste_on_panels.js + │   │   │   ├── systemloadviewer_systemmonitor.js + │   │   │   ├── taskmanager_configUpdate_wheelEnabled.js + │   │   │   └── unlock_widgets.js + │   │   └── views + │   │   ├── DesktopEditMode.qml + │   │   ├── Desktop.qml + │   │   ├── Panel.qml + │   │   └── PreviewBanner.qml + │   └── metadata.json + ├── polkit-1 + │   └── actions + │   └── org.kde.kcontrol.kcmclock.policy + ├── qlogging-categories6 + │   ├── kcm_gamecontroller.categories + │   ├── kcm_kded.categories + │   ├── kcm_keyboard.categories + │   ├── kcmkeys.categories + │   ├── kcm_tablet.categories + │   └── kcm_touchscreen.categories + ├── sddm + │   └── themes + │   ├── 01-breeze-fedora + │   │   ├── Background.qml + │   │   ├── default-logo.svg + │   │   ├── faces + │   │   ├── KeyboardButton.qml + │   │   ├── Login.qml + │   │   ├── Main.qml + │   │   ├── Messages.sh + │   │   ├── metadata.desktop + │   │   ├── preview.png + │   │   ├── SessionButton.qml + │   │   └── theme.conf + │   └── breeze + │   ├── Background.qml + │   ├── default-logo.svg + │   ├── faces + │   ├── KeyboardButton.qml + │   ├── Login.qml + │   ├── Main.qml + │   ├── Messages.sh + │   ├── metadata.desktop + │   ├── preview.png + │   ├── SessionButton.qml + │   └── theme.conf + └── solid + └── devices + ├── solid-device-Battery.desktop + ├── solid-device-Block.desktop + ├── solid-device-Camera.desktop + ├── solid-device-OpticalDisc.desktop + ├── solid-device-OpticalDrive.desktop + ├── solid-device-PortableMediaPlayer.desktop + ├── solid-device-Processor.desktop + ├── solid-device-StorageAccess.desktop + ├── solid-device-StorageDrive.desktop + └── solid-device-StorageVolume.desktop + +631 directories, 4079 files diff --git a/sonic-frameworks-keybind/sonic-frameworks-keybind.spec b/sonic-frameworks-keybind/sonic-frameworks-keybind.spec new file mode 100644 index 0000000..3fe7775 --- /dev/null +++ b/sonic-frameworks-keybind/sonic-frameworks-keybind.spec @@ -0,0 +1,248 @@ +%define _disable_source_fetch 0 +%define debug_package %{nil} + +%global framework kglobalaccel + +#Name: kf6-%{framework} +Name: sonic-frameworks-keybind +Version: 6.25.0 +Release: 1%{?dist} +Summary: KDE Frameworks 6 Tier 3 integration module for global shortcuts + +# The following are in the LICENSES folder but go unused: LGPL-2.1-only, LGPL-3.0-only, LicenseRef-KDE-Accepted-LGPL +License: CC0-1.0 AND LGPL-2.0-or-later +#URL: https://invent.kde.org/frameworks/%{framework} +#Source0: https://download.kde.org/%{stable_kf6}/frameworks/%{majmin_ver_kf6}/%{framework}-%{version}.tar.xz +#Source1: https://download.kde.org/%{stable_kf6}/frameworks/%{majmin_ver_kf6}/%{framework}-%{version}.tar.xz.sig + +URL: https://github.com/Sonic-DE/sonic-frameworks-keybind +Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz + +BuildRequires: extra-cmake-modules >= %{version} +BuildRequires: gcc-c++ +BuildRequires: cmake +BuildRequires: kf6-rpm-macros +BuildRequires: cmake(KF6Config) +BuildRequires: cmake(KF6CoreAddons) +BuildRequires: cmake(KF6Crash) +BuildRequires: cmake(KF6DBusAddons) +BuildRequires: cmake(KF6WindowSystem) +BuildRequires: qt6-qtbase-private-devel +# for systemd-related macros +BuildRequires: systemd +BuildRequires: cmake(Qt6Core) +BuildRequires: cmake(Qt6LinguistTools) +BuildRequires: pkgconfig(xkbcommon) +BuildRequires: xcb-util-keysyms-devel +BuildRequires: libX11-devel +BuildRequires: libxcb-devel + +Requires: kf6-filesystem +Conflicts: kf6-kglobalaccel + +%description +%{summary}. + +%package devel +Summary: Development files for %{name} +Requires: %{name} = %{version}-%{release} +Requires: qt6-qtbase-devel +Conflicts: kf6-kglobalaccel-devel +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + +%package doc +Summary: Developer Documentation files for %{name} +BuildArch: noarch +Conflicts: kf6-kglobalaccel-doc +%description doc +Developer Documentation files for %{name} for use with KDevelop or QtCreator. + +%package html +Summary: Developer Documentation files for %{name} +BuildArch: noarch +Conflicts: kf6-kglobalaccel-html +%description html +Developer Documentation files for %{name} in HTML format + +%prep +%autosetup -p1 + +%build +%cmake_kf6 +%cmake_build_kf6 + +%install +%cmake_install_kf6 + +# unpackaged files +%if 0%{?flatpak:1} +rm -fv %{buildroot}%{_prefix}/lib/systemd/user/plasma-kglobalaccel.service +%endif + +%find_lang_kf6 kglobalaccel6_qt + +%files -f kglobalaccel6_qt.lang +%doc README.md +%license LICENSES/*.txt +%{_kf6_datadir}/qlogging-categories6/%{framework}* +%{_kf6_libdir}/libKF6GlobalAccel.so.* + +%files devel +%{_kf6_includedir}/KGlobalAccel/ +%{_kf6_libdir}/libKF6GlobalAccel.so +%{_kf6_libdir}/cmake/KF6GlobalAccel/ +%{_kf6_datadir}/dbus-1/interfaces/* +%{_qt6_docdir}/*/*.tags +%{_qt6_docdir}/*/*.index + +%files doc +%{_qt6_docdir}/*.qch + +%files html +%{_qt6_docdir}/*/* +%exclude %{_qt6_docdir}/*/*.tags +%exclude %{_qt6_docdir}/*/*.index + +%changelog +* Thu Apr 09 2026 Steve Cossette - 6.25.0-1 +- 6.25.0 + +* Tue Mar 10 2026 Steve Cossette - 6.24.0-1 +- 6.24.0 + +* Thu Feb 12 2026 Steve Cossette - 6.23.0-1 +- 6.23.0 + +* Fri Jan 16 2026 Fedora Release Engineering - 6.22.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + +* Fri Jan 02 2026 farchord@gmail.com - 6.22.0-1 +- 6.22.0 + +* Fri Dec 05 2025 Steve Cossette - 6.21.0-1 +- 6.21.0 + +* Thu Nov 13 2025 Steve Cossette - 6.20.0-1 +- 6.20.0 + +* Wed Oct 29 2025 Steve Cossette - 6.19.0-2 +- Bump for Plasma/Qt6.10 rebuild + +* Sun Oct 05 2025 Steve Cossette - 6.19.0-1 +- 6.19.0 + +* Tue Sep 30 2025 Jan Grulich - 6.18.0-2 +- Rebuild (qt6) + +* Tue Sep 16 2025 farchord@gmail.com - 6.18.0-1 +- 6.18.0 + +* Fri Aug 01 2025 Steve Cossette - 6.17.0-1 +- 6.17.0 + +* Thu Jul 24 2025 Fedora Release Engineering - 6.16.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + +* Sat Jul 05 2025 Marc Deop i Argemí - 6.16.0-1 +- 6.16.0 + +* Tue Jun 17 2025 Marie Loise Nolden - 6.15.0-2 +- 6.15 and plasma 3.4 compatibility rebuild + +* Sat Jun 07 2025 Steve Cossette - 6.15.0-1 +- 6.15.0 + +* Sat May 03 2025 Marc Deop i Argemí - 6.14.0-1 +- 6.14.0 + +* Mon Apr 14 2025 Jan Grulich - 6.13.0-2 +- Rebuild (qt6) + +* Sun Apr 06 2025 Steve Cossette - 6.13.0-1 +- 6.13.0 + +* Thu Mar 27 2025 Jan Grulich - 6.12.0-2 +- Rebuild (qt6) + +* Fri Mar 07 2025 Steve Cossette - 6.12.0-1 +- 6.12.0 + +* Fri Feb 07 2025 Marc Deop i Argemí - 6.11.0-1 +- 6.11.0 + +* Fri Jan 17 2025 Fedora Release Engineering - 6.10.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + +* Fri Jan 03 2025 Steve Cossette - 6.10.0-1 +- 6.10.0 + +* Sat Dec 14 2024 Steve Cossette - 6.9.0-1 +- 6.9.0 + +* Sat Nov 02 2024 Marc Deop i Argemí - 6.8.0-1 +- 6.8.0 + +* Fri Oct 04 2024 Steve Cossette - 6.7.0-1 +- 6.7.0 + +* Mon Sep 16 2024 Steve Cossette - 6.6.0-1 +- 6.6.0 + +* Sat Aug 10 2024 Steve Cossette - 6.5.0-1 +- 6.5.0 + +* Thu Jul 18 2024 Fedora Release Engineering - 6.4.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Sat Jul 06 2024 Marc Deop i Argemí - 6.4.0-1 +- 6.4.0 + +* Sat Jun 01 2024 Marc Deop i Argemí - 6.3.0-1 +- 6.3.0 + +* Sat May 04 2024 Marc Deop i Argemí - 6.2.0-1 +- 6.2.0 + +* Wed Apr 10 2024 Marc Deop i Argemí - 6.1.0-1 +- 6.1.0 + +* Sat Mar 09 2024 Marie Loise Nolden - 6.0.0-2 +- add missing BuildArch: noarch to -doc package + +* Wed Feb 21 2024 Marc Deop i Argemí - 6.0.0-1 +- 6.0.0 + +* Wed Jan 31 2024 Marc Deop i Argemí - 5.249.0-1 +- 5.249.0 + +* Thu Jan 25 2024 Fedora Release Engineering - 5.248.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Jan 21 2024 Fedora Release Engineering - 5.248.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Wed Jan 10 2024 Marc Deop i Argemí - 5.248.0-1 +- 5.248.0 + +* Tue Jan 09 2024 Marie Loise Nolden - 5.247.0-2 +- add doc package for KF6 API + +* Wed Dec 20 2023 Marc Deop i Argemí - 5.247.0-1 +- 5.247.0 + +* Sat Dec 02 2023 Justin Zobel - 5.246.0-1 +- Update to 5.246.0 + +* Thu Nov 09 2023 Steve Cossette - 5.245.0-1 +- 5.245.0 + +* Tue Oct 17 2023 Jan Grulich - 5.240.0^20231003.060644.9b93514-3 +- Rebuild (qt6) + +* Mon Oct 09 2023 Steve Cossette - 5.240.0^20231003.060644.9b93514-2 +- Removed -libs from the required installs at runtime (Unneeded) + +* Tue Oct 03 2023 Steve Cossette - 5.240.0^20231003.060644.9b93514-1 +- Initial Release diff --git a/sonic-frameworks-windowsystem/sonic-frameworks-windowsystem.spec b/sonic-frameworks-windowsystem/sonic-frameworks-windowsystem.spec new file mode 100644 index 0000000..b09ee9d --- /dev/null +++ b/sonic-frameworks-windowsystem/sonic-frameworks-windowsystem.spec @@ -0,0 +1,274 @@ +%define _disable_source_fetch 0 +%define debug_package %{nil} + +%global framework kwindowsystem + +#Name: kf6-%{framework} +Name: sonic-frameworks-windowsystem +Version: 6.25.0 +Release: 1%{?dist} +Summary: KDE Frameworks 6 Tier 1 integration module with classes for windows management +License: CC0-1.0 AND LGPL-2.1-only AND LGPL-2.1-or-later AND LGPL-3.0-only AND MIT +#URL: https://invent.kde.org/frameworks/%{framework} +URL: https://github.com/Sonic-DE/sonic-frameworks-windowsystem + +#Source0: https://download.kde.org/%{stable_kf6}/frameworks/%{majmin_ver_kf6}/%{framework}-%{version}.tar.xz +#Source1: https://download.kde.org/%{stable_kf6}/frameworks/%{majmin_ver_kf6}/%{framework}-%{version}.tar.xz.sig +Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz + +# Upstream patches + +BuildRequires: cmake +BuildRequires: gcc-c++ +BuildRequires: extra-cmake-modules >= %{version} +BuildRequires: kf6-rpm-macros +BuildRequires: make +BuildRequires: qt6-qtbase-devel +BuildRequires: qt6-qttools-devel +BuildRequires: cmake(Qt6Qml) +BuildRequires: pkgconfig(Qt6WaylandClient) +BuildRequires: pkgconfig(x11) +BuildRequires: pkgconfig(xcb) +BuildRequires: pkgconfig(xcb-icccm) +BuildRequires: pkgconfig(xcb-keysyms) +BuildRequires: pkgconfig(xkbcommon) +BuildRequires: pkgconfig(xfixes) +BuildRequires: pkgconfig(xrender) +BuildRequires: wayland-devel +BuildRequires: egl-wayland-devel +BuildRequires: wayland-protocols-devel +BuildRequires: plasma-wayland-protocols-devel +BuildRequires: fdupes +BuildRequires: pkgconfig(Qt6Core) +BuildRequires: pkgconfig(Qt6Gui) +BuildRequires: qt6-qtbase-private-devel +Requires: kf6-filesystem +Conflicts: kf6-kwindowsystem + +%description +KDE Frameworks Tier 1 integration module that provides classes for managing and +working with windows. + +%package devel +Summary: Development files for %{name} +Requires: %{name} = %{version}-%{release} +Requires: qt6-qtbase-devel +Conflicts: kf6-kwindowsystem-devel + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + +%package doc +Summary: Developer Documentation files for %{name} +BuildArch: noarch +Conflicts: kf6-kwindowsystem-doc +%description doc +Developer Documentation files for %{name} for use with KDevelop or QtCreator. + +%package html +Summary: Developer Documentation files for %{name} +BuildArch: noarch +Conflicts: kf6-kwindowsystem-html +%description html +Developer Documentation files for %{name} in HTML format + +%prep +%autosetup -p1 + +%build +%cmake_kf6 +%cmake_build_kf6 + +%install +%cmake_install_kf6 + +%find_lang_kf6 kwindowsystem6_qt +%fdupes %{buildroot}%{_kf6_includedir} + +%files -f kwindowsystem6_qt.lang +%doc README.md +%license LICENSES/*.txt +%{_kf6_datadir}/qlogging-categories6/%{framework}.* +%{_kf6_libdir}/libKF6WindowSystem.so.* +%dir %{_kf6_plugindir}/kwindowsystem/ +%{_kf6_plugindir}/kwindowsystem/KF6WindowSystemX11Plugin.so +%{_kf6_qmldir}/org/kde/kwindowsystem +#%{_qt6_plugindir}/kf6/kwindowsystem/KF6WindowSystemKWaylandPlugin.so + +%files devel +%{_kf6_includedir}/KWindowSystem/ +%{_kf6_libdir}/libKF6WindowSystem.so +%{_kf6_libdir}/cmake/KF6WindowSystem/ +%{_kf6_libdir}/pkgconfig/KF6WindowSystem.pc +%{_qt6_docdir}/*/*.tags +%{_qt6_docdir}/*/*.index + +%files doc +%{_qt6_docdir}/*.qch + +%files html +%{_qt6_docdir}/*/* +%exclude %{_qt6_docdir}/*/*.tags +%exclude %{_qt6_docdir}/*/*.index + + +%changelog +* Thu Apr 09 2026 Steve Cossette - 6.25.0-1 +- 6.25.0 + +* Tue Mar 10 2026 Steve Cossette - 6.24.0-1 +- 6.24.0 + +* Thu Feb 12 2026 Steve Cossette - 6.23.0-1 +- 6.23.0 + +* Fri Jan 16 2026 Fedora Release Engineering - 6.22.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + +* Fri Jan 02 2026 farchord@gmail.com - 6.22.0-1 +- 6.22.0 + +* Fri Dec 05 2025 Steve Cossette - 6.21.0-1 +- 6.21.0 + +* Thu Nov 13 2025 Steve Cossette - 6.20.0-1 +- 6.20.0 + +* Wed Oct 29 2025 Steve Cossette - 6.19.0-3 +- Bump for Plasma/Qt6.10 rebuild + +* Tue Oct 07 2025 Steve Cossette - 6.19.0-2 +- Fix for global shortcuts not working + +* Sun Oct 05 2025 Steve Cossette - 6.19.0-1 +- 6.19.0 + +* Tue Sep 30 2025 Jan Grulich - 6.18.0-2 +- Rebuild (qt6) + +* Tue Sep 16 2025 farchord@gmail.com - 6.18.0-1 +- 6.18.0 + +* Fri Aug 01 2025 Steve Cossette - 6.17.0-1 +- 6.17.0 + +* Thu Jul 24 2025 Fedora Release Engineering - 6.16.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + +* Sat Jul 05 2025 Marc Deop i Argemí - 6.16.0-1 +- 6.16.0 + +* Tue Jun 17 2025 Marie Loise Nolden - 6.15.0-2 +- 6.15 and plasma 3.4 compatibility rebuild + +* Sat Jun 07 2025 Steve Cossette - 6.15.0-1 +- 6.15.0 + +* Sat May 03 2025 Marc Deop i Argemí - 6.14.0-1 +- 6.14.0 + +* Mon Apr 14 2025 Jan Grulich - 6.13.0-2 +- Rebuild (qt6) + +* Sun Apr 06 2025 Steve Cossette - 6.13.0-1 +- 6.13.0 + +* Tue Mar 25 2025 Jan Grulich - 6.12.0-2 +- Rebuild (qt6) + +* Fri Mar 07 2025 Steve Cossette - 6.12.0-1 +- 6.12.0 + +* Fri Feb 07 2025 Marc Deop i Argemí - 6.11.0-1 +- 6.11.0 + +* Fri Jan 17 2025 Fedora Release Engineering - 6.10.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + +* Fri Jan 03 2025 Steve Cossette - 6.10.0-1 +- 6.10.0 + +* Sat Dec 14 2024 Steve Cossette - 6.9.0-1 +- 6.9.0 + +* Sat Nov 02 2024 Marc Deop i Argemí - 6.8.0-1 +- 6.8.0 + +* Mon Oct 14 2024 Jan Grulich - 6.7.0-2 +- Rebuild (qt6) + +* Fri Oct 04 2024 Steve Cossette - 6.7.0-1 +- 6.7.0 + +* Mon Sep 16 2024 Steve Cossette - 6.6.0-1 +- 6.6.0 + +* Sat Aug 10 2024 Steve Cossette - 6.5.0-1 +- 6.5.0 + +* Thu Jul 18 2024 Fedora Release Engineering - 6.4.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Sat Jul 06 2024 Marc Deop i Argemí - 6.4.0-1 +- 6.4.0 + +* Sat Jun 01 2024 Marc Deop i Argemí - 6.3.0-1 +- 6.3.0 + +* Sat May 04 2024 Marc Deop i Argemí - 6.2.0-1 +- 6.2.0 + +* Wed Apr 10 2024 Marc Deop i Argemí - 6.1.0-1 +- 6.1.0 + +* Thu Apr 04 2024 Jan Grulich - 6.0.0-3 +- Rebuild (qt6) + +* Sat Mar 09 2024 Marie Loise Nolden - 6.0.0-2 +- add missing BuildArch: noarch to -doc package + +* Wed Feb 21 2024 Marc Deop i Argemí - 6.0.0-1 +- 6.0.0 + +* Fri Feb 16 2024 Jan Grulich - 5.249.0-2 +- Rebuild (qt6) + +* Wed Jan 31 2024 Marc Deop i Argemí - 5.249.0-1 +- 5.249.0 + +* Thu Jan 25 2024 Fedora Release Engineering - 5.248.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Jan 21 2024 Fedora Release Engineering - 5.248.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Wed Jan 10 2024 Marc Deop i Argemí - 5.248.0-1 +- 5.248.0 + +* Tue Jan 09 2024 Marie Loise Nolden - 5.247.0-2 +- add doc package for KF6 API + +* Wed Dec 20 2023 Marc Deop i Argemí - 5.247.0-1 +- 5.247.0 + +* Sat Dec 02 2023 Justin Zobel - 5.246.0-1 +- Update to 5.246.0 + +* Wed Nov 29 2023 Jan Grulich - 5.245.0-2 +- Rebuild (qt6) + +* Thu Nov 09 2023 Steve Cossette - 5.245.0-1 +- 5.245.0 + +* Tue Oct 17 2023 Jan Grulich - 5.240.0^20231003.213655.0aa4d07-3 +- Rebuild (qt6) + +* Thu Oct 05 2023 Justin Zobel - 5.240.0^20231003.213655.0aa4d07-2 +- Rebuild for Qt Private API + +* Tue Oct 03 2023 Steve Cossette - 5.240.0^20231003.213655.0aa4d07-1 +- Fix for build on s390x arch + +* Tue Sep 26 2023 Steve Cossette - 5.240.0^20230905.004205.b59a819-1 +- Initial Release diff --git a/sonic-interface-libraries.spec b/sonic-interface-libraries.spec deleted file mode 100644 index 0c1954e..0000000 --- a/sonic-interface-libraries.spec +++ /dev/null @@ -1,135 +0,0 @@ -%define _disable_source_fetch 0 -%define debug_package %{nil} - -Name: sonic-interface-libraries -Version: 6.4.5 -Release: 7%{?dist} -Summary: Foundation of the SonicDE user interface (fork of libplasma) - -License: LGPL-2.0-or-later -URL: https://github.com/Sonic-DE/sonic-interface-libraries -Source0: %{url}/archive/refs/tags/v%{version}.tar.gz - -%global plasma_version %(echo %{version} | cut -d. -f1-3) - -BuildRequires: extra-cmake-modules -BuildRequires: gcc-c++ -BuildRequires: cmake(KF6Archive) -BuildRequires: cmake(KF6Declarative) -BuildRequires: cmake(KF6Su) -BuildRequires: cmake(KF6GlobalAccel) -BuildRequires: cmake(KF6Kirigami2) -BuildRequires: cmake(KF6Package) -BuildRequires: cmake(KF6Parts) -BuildRequires: cmake(KF6ConfigWidgets) -BuildRequires: cmake(KF6ColorScheme) -BuildRequires: kf6-rpm-macros -BuildRequires: cmake(KF6Solid) -BuildRequires: openssl-devel -BuildRequires: qt6-qtbase-devel -BuildRequires: qt6-qtbase-private-devel -BuildRequires: qt6-qtdeclarative-devel -BuildRequires: qt6-qtsvg-devel - -# KDE Frameworks -BuildRequires: cmake(KF6Config) -BuildRequires: cmake(KF6CoreAddons) -BuildRequires: cmake(KF6DBusAddons) -BuildRequires: cmake(KF6DocTools) -BuildRequires: cmake(KF6GuiAddons) -BuildRequires: cmake(KF6I18n) -BuildRequires: cmake(KF6IconThemes) -BuildRequires: cmake(KF6KCMUtils) -BuildRequires: cmake(KF6KIO) -BuildRequires: cmake(KF6Notifications) -BuildRequires: cmake(KF6Service) -BuildRequires: cmake(KF6Svg) -BuildRequires: cmake(KF6WidgetsAddons) -BuildRequires: cmake(KF6WindowSystem) -BuildRequires: cmake(KF6XmlGui) -BuildRequires: cmake(PlasmaWaylandProtocols) - -# Qt -BuildRequires: cmake(Qt6WaylandClient) - -# Plasma -BuildRequires: cmake(PlasmaActivities) - -BuildRequires: wayland-devel -BuildRequires: kwayland-devel - -# X11 Support -BuildRequires: libX11-devel -BuildRequires: libxcb-devel -BuildRequires: xcb-util-devel -BuildRequires: libXcursor-devel -BuildRequires: libXrender-devel -BuildRequires: libXext-devel -BuildRequires: libXfixes-devel -BuildRequires: libXi-devel - -Provides: libplasma%{?_isa} >= %{plasma_version} -Provides: libplasma >= %{plasma_version} -Obsoletes: libplasma <= %{plasma_version} - -# Renamed from kf6-plasma -Obsoletes: kf6-plasma < 1:%{version}-%{release} -Provides: kf6-plasma = 1:%{version}-%{release} - -%description -Sonic Interface Libraries is a fork of libplasma, providing the foundational -libraries for themes, applets, and widgets in SonicDE. - -%package devel -Summary: Development files for %{name} -Requires: %{name}%{?_isa} = %{version}-%{release} -Requires: cmake(KF6Package) -Requires: qt6-qtbase-devel -Requires: cmake(KF6Service) -Requires: cmake(KF6WindowSystem) -Provides: libplasma-devel%{?_isa} >= %{plasma_version} -Provides: libplasma-devel >= %{plasma_version} -Obsoletes: libplasma-devel <= %{plasma_version} - -Obsoletes: kf6-plasma-devel < 1:%{version}-%{release} -Provides: kf6-plasma-devel = 1:%{version}-%{release} - -%description devel -Development files for sonic-interface-libraries. - -%prep -%autosetup -p1 - -%build -%cmake_kf6 -%cmake_build - -%install -%cmake_install -%find_lang %{name} --all-name - -%files -f %{name}.lang -%license LICENSES/* -%{_libdir}/libPlasma.so.* -%{_libdir}/libPlasmaQuick.so.* -%{_qt6_plugindir}/kf6/ -%{_qt6_qmldir}/org/kde/plasma/ -%{_qt6_qmldir}/org/kde/kirigami/styles/Plasma/ -%{_datadir}/plasma/ -%{_datadir}/qlogging-categories6/*.categories -%{_datadir}/qlogging-categories6/*.renamecategories - -%files devel -%{_includedir}/Plasma/ -%{_includedir}/PlasmaQuick/ -%{_libdir}/libPlasma.so -%{_libdir}/libPlasmaQuick.so -%{_libdir}/cmake/Plasma/ -%{_libdir}/cmake/PlasmaQuick/ -%{_datadir}/doc/qt6/Plasma.qch -%{_datadir}/doc/qt6/Plasma.tags -%{_datadir}/kdevappwizard/templates/*.tar.bz2 - -%changelog -* Wed Mar 21 2026 Anders da Silva Rytter Hansen - 6.4.5-7 -- Initial release of SonicDE/KDE Plasma X11 for EL10 (Downgraded to 6.4.5 for EL 10.1 compatibility) diff --git a/sonic-interface-libraries/sonic-interface-libraries.spec b/sonic-interface-libraries/sonic-interface-libraries.spec new file mode 100644 index 0000000..772b6e6 --- /dev/null +++ b/sonic-interface-libraries/sonic-interface-libraries.spec @@ -0,0 +1,370 @@ +%define _disable_source_fetch 0 +%define debug_package %{nil} + +#Name: libplasma +Name: sonic-interface-libraries +Version: 6.6.4 +Release: 2%{?dist} +Summary: Plasma is the foundation of the KDE user interface (v6) + +# LicenseRef-QtCommercial is also in the licenses, but is being omitted as it is optional. +License: BSD-3-Clause AND CC0-1.0 AND GPL-2.0-only AND GPL-2.0-or-later AND GPL-3.0-only AND LGPL-2.0-or-later AND LGPL-2.1-only AND LGPL-2.1-or-later AND LGPL-3.0-only AND (GPL-2.0-only OR GPL-3.0-only) AND (LGPL-2.1-only OR LGPL-3.0-only) AND Qt-LGPL-exception-1.1 +#URL: https://invent.kde.org/plasma/libplasma +URL: https://github.com/Sonic-DE/%{name} + +#Source0: https://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz +#Source1: https://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz.sig +Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz + +BuildRequires: extra-cmake-modules +BuildRequires: gcc-c++ +BuildRequires: kf6-rpm-macros + +# Qt +BuildRequires: cmake(Qt6Quick) +BuildRequires: cmake(Qt6Gui) +BuildRequires: cmake(Qt6Qml) +BuildRequires: cmake(Qt6Svg) +BuildRequires: cmake(Qt6QuickControls2) +BuildRequires: cmake(Qt6DBus) +BuildRequires: cmake(Qt6GuiPrivate) + +# KDE Frameworks +BuildRequires: cmake(KF6Config) +BuildRequires: cmake(KF6CoreAddons) +BuildRequires: cmake(KF6GlobalAccel) +BuildRequires: cmake(KF6DocTools) +BuildRequires: cmake(KF6GuiAddons) +BuildRequires: cmake(KF6I18n) +BuildRequires: cmake(KF6IconThemes) +BuildRequires: cmake(KF6KIO) +BuildRequires: cmake(KF6WindowSystem) +BuildRequires: cmake(KF6Notifications) +BuildRequires: cmake(KF6Package) +BuildRequires: cmake(KF6KirigamiPlatform) +BuildRequires: cmake(KF6Svg) +BuildRequires: cmake(KF6ColorScheme) +BuildRequires: cmake(KF6DBusAddons) + +# Plasma +BuildRequires: cmake(PlasmaActivities) + +# Wayland +BuildRequires: cmake(PlasmaWaylandProtocols) +BuildRequires: cmake(Qt6WaylandClient) +BuildRequires: pkgconfig(wayland-client) + +# autotests +BuildRequires: cmake(KF6Archive) + +# examples +BuildRequires: cmake(KF6Parts) +BuildRequires: cmake(KF6WidgetsAddons) + +Requires: kf6-filesystem + +# Renamed from kf6-plasma +Obsoletes: kf6-plasma < 1:%{version}-%{release} +Provides: kf6-plasma = 1:%{version}-%{release} +Conflicts: libplasma + +%description +%{summary}. + +%package devel +Summary: Development files for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: cmake(Qt6Qml) +Requires: cmake(Qt6Gui) +Requires: cmake(KF6Package) +Requires: cmake(KF6KirigamiPlatform) +Requires: cmake(KF6WindowSystem) +Obsoletes: kf6-plasma-devel < 1:%{version}-%{release} +Provides: kf6-plasma-devel = 1:%{version}-%{release} +Conflicts: libplasma-devel +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + +%package doc +Summary: Developer Documentation files for %{name} +BuildArch: noarch +Conflicts: libplasma-doc +%description doc +Developer Documentation files for %{name} for use with KDevelop or QtCreator. + +%prep +%autosetup -p1 + +%build +%cmake_kf6 +%cmake_build + +%install +%cmake_install +%find_lang %{name} --all-name --with-man --all-name + +# create/own dirs +mkdir -p %{buildroot}%{_kf6_datadir}/plasma/plasmoids +mkdir -p %{buildroot}%{_kf6_qmldir}/org/kde/private + +%files -f %{name}.lang +%dir %{_kf6_qmldir}/org/ +%dir %{_kf6_qmldir}/org/kde/ +%dir %{_kf6_qmldir}/org/kde/private/ +%doc README.md +%license LICENSES/*.txt +%{_kf6_datadir}/plasma/ +%{_kf6_datadir}/qlogging-categories6/*plasma* +%{_libdir}/libPlasma.so.* +%{_libdir}/libPlasmaQuick.so.* +%{_kf6_plugindir}/kirigami/ +%{_kf6_plugindir}/packagestructure +%{_kf6_qmldir}/org/kde/plasma/ +%{_kf6_qmldir}/org/kde/kirigami/styles/Plasma/AbstractApplicationHeader.qml + +%files devel +%dir %{_kf6_datadir}/kdevappwizard/ +%{_kf6_datadir}/kdevappwizard/templates/ +%{_includedir}/Plasma/ +%{_includedir}/PlasmaQuick/ +%{_libdir}/cmake/Plasma/ +%{_libdir}/cmake/PlasmaQuick/ +%{_libdir}/libPlasma.so +%{_libdir}/libPlasmaQuick.so +%{_qt6_docdir}/*.tags + +%files doc +%{_qt6_docdir}/*.qch + +%changelog +* Fri Apr 10 2026 Steve Cossette - 6.6.4-1 +- 6.6.4 + +* Tue Mar 17 2026 Steve Cossette - 6.6.3-1 +- 6.6.3 + +* Tue Mar 03 2026 Steve Cossette - 6.6.2-1 +- 6.6.2 + +* Tue Feb 24 2026 Steve Cossette - 6.6.1-1 +- 6.6.1 + +* Thu Feb 12 2026 Steve Cossette - 6.6.0-1 +- 6.6.0 + +* Tue Jan 27 2026 Steve Cossette - 6.5.91-1 +- 6.5.91 + +* Tue Jan 20 2026 Yaakov Selkowitz - 6.5.90-3 +- Update dependencies + +* Fri Jan 16 2026 Fedora Release Engineering - 6.5.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + +* Tue Jan 13 2026 farchord@gmail.com - 6.5.90-1 +- 6.5.90 + +* Tue Jan 13 2026 farchord@gmail.com - 6.5.5-1 +- 6.5.5 + +* Wed Dec 24 2025 Georg Sauthoff - 6.5.4-2 +- update project URL + +* Tue Dec 09 2025 Steve Cossette - 6.5.4-1 +- 6.5.4 + +* Tue Nov 18 2025 Steve Cossette - 6.5.3-1 +- 6.5.3 + +* Tue Nov 04 2025 Steve Cossette - 6.5.2-1 +- 6.5.2 + +* Tue Oct 28 2025 Steve Cossette - 6.5.1-1 +- 6.5.1 + +* Fri Oct 17 2025 Steve Cossette - 6.5.0-1 +- 6.5.0 + +* Thu Oct 02 2025 Steve Cossette - 6.4.91-1 +- 6.4.91 + +* Tue Sep 30 2025 Jan Grulich - 6.4.5-2 +- Rebuild (qt6) + +* Thu Sep 25 2025 Steve Cossette - 6.4.90-1 +- 6.4.90 + +* Tue Sep 16 2025 farchord@gmail.com - 6.4.5-1 +- 6.4.5 + +* Wed Aug 06 2025 Steve Cossette - 6.4.4-1 +- 6.4.4 + +* Thu Jul 24 2025 Fedora Release Engineering - 6.4.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + +* Tue Jul 15 2025 Steve Cossette - 6.4.3-1 +- 6.4.3 + +* Thu Jul 03 2025 Steve Cossette - 6.4.2-1 +- 6.4.2 + +* Tue Jun 24 2025 Marc Deop i Argemí - 6.4.1-1 +- 6.4.1 + +* Mon Jun 16 2025 Steve Cossette - 6.4.0-1 +- 6.4.0 + +* Sat May 31 2025 Marc Deop i Argemí - 6.3.91-2 +- Add signature file + +* Fri May 30 2025 Steve Cossette - 6.3.91-1 +- 6.3.91 + +* Thu May 15 2025 Marc Deop i Argemí - 6.3.90-1 +- 6.3.90 + +* Tue May 06 2025 Steve Cossette - 6.3.5-1 +- 6.3.5 + +* Mon Apr 14 2025 Jan Grulich - 6.3.4-2 +- Rebuild (qt6) + +* Wed Apr 02 2025 Marc Deop i Argemí - 6.3.4-1 +- 6.3.4 + +* Tue Mar 25 2025 Jan Grulich - 6.3.3-2 +- Rebuild (qt6) + +* Tue Mar 11 2025 Steve Cossette - 6.3.3-1 +- 6.3.3 + +* Tue Feb 25 2025 Steve Cossette - 6.3.2-1 +- 6.3.2 + +* Tue Feb 18 2025 Steve Cossette - 6.3.1-1 +- 6.3.1 + +* Thu Feb 06 2025 Marc Deop i Argemí - 6.3.0-1 +- 6.3.0 + +* Thu Jan 23 2025 Steve Cossette - 6.2.91-1 +- 6.2.91 + +* Mon Jan 20 2025 Fedora Release Engineering - 6.2.90-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + +* Fri Jan 17 2025 Fedora Release Engineering - 6.2.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + +* Thu Jan 09 2025 Steve Cossette - 6.2.90-1 +- Beta 6.2.90 + +* Tue Dec 31 2024 Steve Cossette - 6.2.5-1 +- 6.2.5 + +* Tue Nov 26 2024 Marc Deop i Argemí - 6.2.4-1 +- 6.2.4 + +* Tue Nov 05 2024 Steve Cossette - 6.2.3-1 +- 6.2.3 + +* Tue Oct 22 2024 Steve Cossette - 6.2.2-1 +- 6.2.2 + +* Tue Oct 15 2024 Steve Cossette - 6.2.1-1 +- 6.2.1 + +* Mon Oct 14 2024 Jan Grulich - 6.2.0-2 +- Rebuild (qt6) + +* Thu Oct 03 2024 Marc Deop i Argemí - 6.2.0-1 +- 6.2.0 + +* Thu Sep 12 2024 Marc Deop i Argemí - 6.1.90-1 +- 6.1.90 + +* Tue Sep 10 2024 Marc Deop i Argemí - 6.1.5-1 +- 6.1.5 + +* Fri Aug 09 2024 Steve Cossette - 6.1.4-1 +- 6.1.4 + +* Wed Jul 24 2024 Marc Deop i Argemí - 6.1.3-3 +- rebuilt + +* Thu Jul 18 2024 Fedora Release Engineering - 6.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Tue Jul 16 2024 Marc Deop i Argemí - 6.1.3-1 +- 6.1.3 + +* Wed Jul 03 2024 Marc Deop i Argemí - 6.1.2-1 +- 6.1.2 + +* Tue Jun 25 2024 Marc Deop i Argemí - 6.1.1-1 +- 6.1.1 + +* Thu Jun 13 2024 Marc Deop i Argemí - 6.1.0-1 +- 6.1.0 + +* Fri May 24 2024 Marc Deop i Argemí - 6.0.90-1 +- 6.0.90 + +* Wed May 22 2024 Marc Deop i Argemí - 6.0.5-1 +- 6.0.5 + +* Mon May 06 2024 Steve Cossette - 6.0.4-2 +- Added fix for a Qt 6.7-related bug in libplasma + +* Tue Apr 16 2024 Marc Deop i Argemí - 6.0.4-1 +- 6.0.4 + +* Thu Apr 04 2024 Jan Grulich - 6.0.3-2 +- Rebuild (qt6) + +* Tue Mar 26 2024 Marc Deop i Argemí - 6.0.3-1 +- 6.0.3 + +* Tue Mar 12 2024 Marc Deop i Argemí - 6.0.2-1 +- 6.0.2 + +* Sat Mar 09 2024 Marie Loise Nolden - 6.0.1-2 +- add missing BuildArch: noarch to -doc package + +* Wed Mar 06 2024 Marc Deop i Argemí - 6.0.1-1 +- 6.0.1 + +* Wed Feb 21 2024 Marc Deop i Argemí - 6.0.0-1 +- 6.0.0 + +* Fri Feb 16 2024 Jan Grulich - 5.93.0-2 +- Rebuild (qt6) + +* Wed Jan 31 2024 Marc Deop i Argemí - 5.93.0-1 +- 5.93.0 + +* Thu Jan 25 2024 Fedora Release Engineering - 5.92.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Jan 21 2024 Fedora Release Engineering - 5.92.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Wed Jan 10 2024 Marc Deop i Argemí - 5.92.0-1 +- 5.92.0 + +* Tue Jan 09 2024 Marie Loise Nolden - 5.91.0-2 +- add doc package for KF6 API + +* Thu Dec 21 2023 Marc Deop i Argemí - 5.91.0-1 +- 5.91.0 + +* Sun Dec 03 2023 Justin Zobel - 5.90.0-1 +- Update to 5.90.0 + +* Wed Nov 29 2023 Jan Grulich - 5.27.80-2 +- Rebuild (qt6) + +* Fri Nov 24 2023 Alessandro Astone - 5.27.80-1 +- Renamed from kf6-plasma diff --git a/sonic-keybind-daemon/sonic-keybind-daemon.spec b/sonic-keybind-daemon/sonic-keybind-daemon.spec new file mode 100644 index 0000000..8b44208 --- /dev/null +++ b/sonic-keybind-daemon/sonic-keybind-daemon.spec @@ -0,0 +1,303 @@ +%define _disable_source_fetch 0 +%define debug_package %{nil} + +#Name: kglobalacceld +Name: sonic-keybind-daemon +Summary: Daemon providing Global Keyboard Shortcut functionality +Version: 6.6.4 +Release: 1%{?dist} + +License: CC0-1.0 AND LGPL-2.0-or-later AND LGPL-2.1-only AND LGPL-3.0-only AND (LGPL-2.1-only OR LGPL-3.0-only) +#URL: https://invent.kde.org/plasma/%{name} +URL: https://github.com/Sonic-DE/%{name} + +#Source0: https://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz +#Source1: https://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz.sig +Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz + +BuildRequires: extra-cmake-modules +BuildRequires: cmake +BuildRequires: gcc-c++ +BuildRequires: kf6-rpm-macros +BuildRequires: qt6-qtbase-devel +BuildRequires: qt6-qtbase-private-devel +BuildRequires: qt6-qtbase-gui +BuildRequires: cmake(Qt6DBus) +BuildRequires: cmake(Qt6Gui) +BuildRequires: cmake(Qt6Widgets) +BuildRequires: cmake(KF6Config) +BuildRequires: cmake(KF6CoreAddons) +BuildRequires: cmake(KF6Crash) +BuildRequires: cmake(KF6DBusAddons) +BuildRequires: cmake(KF6WindowSystem) +BuildRequires: cmake(KF6GlobalAccel) +BuildRequires: cmake(KF6Service) +BuildRequires: cmake(KF6KIO) +BuildRequires: cmake(KF6JobWidgets) +BuildRequires: pkgconfig(xcb) +BuildRequires: pkgconfig(xkbcommon) >= 0.5.0 +BuildRequires: pkgconfig(xcb-keysyms) +BuildRequires: pkgconfig(xcb-xkb) +BuildRequires: pkgconfig(xcb-record) +BuildRequires: pkgconfig(xcb-xtest) +BuildRequires: systemd +Requires: kf6-filesystem +Conflicts: kglobalacceld + +%description +%{summary}. + +%package devel +Summary: Developer files for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: qt6-qtbase-devel +Conflicts: kglobalacceld-devel +%description devel +%{summary}. + +%prep +%autosetup -p1 + +%build +%cmake_kf6 +%cmake_build + +%install +%cmake_install + +%files +%license LICENSES/*.txt +%{_sysconfdir}/xdg/autostart/kglobalacceld.desktop +%{_userunitdir}/plasma-kglobalaccel.service +%{_libdir}/libKGlobalAccelD.so.* +%dir %{_qt6_plugindir}/org.kde.kglobalacceld.platforms +%{_qt6_plugindir}/org.kde.kglobalacceld.platforms/KGlobalAccelDXcb.so +%{_libexecdir}/kglobalacceld +%{_kf6_datadir}/qlogging-categories6/kglobalacceld.categories + +%files devel +%{_includedir}/KGlobalAccelD/ +%{_libdir}/cmake/KGlobalAccelD/ + +%changelog +* Fri Apr 10 2026 Steve Cossette - 6.6.4-1 +- 6.6.4 + +* Tue Mar 17 2026 Steve Cossette - 6.6.3-1 +- 6.6.3 + +* Tue Mar 03 2026 Steve Cossette - 6.6.2-1 +- 6.6.2 + +* Tue Feb 24 2026 Steve Cossette - 6.6.1-1 +- 6.6.1 + +* Thu Feb 12 2026 Steve Cossette - 6.6.0-1 +- 6.6.0 + +* Tue Jan 27 2026 Steve Cossette - 6.5.91-1 +- 6.5.91 + +* Fri Jan 16 2026 Fedora Release Engineering - 6.5.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + +* Tue Jan 13 2026 farchord@gmail.com - 6.5.90-1 +- 6.5.90 + +* Tue Jan 13 2026 farchord@gmail.com - 6.5.5-1 +- 6.5.5 + +* Tue Dec 09 2025 Steve Cossette - 6.5.4-1 +- 6.5.4 + +* Tue Nov 18 2025 Steve Cossette - 6.5.3-1 +- 6.5.3 + +* Tue Nov 04 2025 Steve Cossette - 6.5.2-1 +- 6.5.2 + +* Tue Oct 28 2025 Steve Cossette - 6.5.1-1 +- 6.5.1 + +* Fri Oct 17 2025 Steve Cossette - 6.5.0-1 +- 6.5.0 + +* Thu Oct 02 2025 Steve Cossette - 6.4.91-1 +- 6.4.91 + +* Tue Sep 30 2025 Jan Grulich - 6.4.5-2 +- Rebuild (qt6) + +* Thu Sep 25 2025 Steve Cossette - 6.4.90-1 +- 6.4.90 + +* Tue Sep 16 2025 farchord@gmail.com - 6.4.5-1 +- 6.4.5 + +* Wed Aug 06 2025 Steve Cossette - 6.4.4-1 +- 6.4.4 + +* Thu Jul 24 2025 Fedora Release Engineering - 6.4.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + +* Tue Jul 15 2025 Steve Cossette - 6.4.3-1 +- 6.4.3 + +* Thu Jul 03 2025 Steve Cossette - 6.4.2-1 +- 6.4.2 + +* Tue Jun 24 2025 Marc Deop i Argemí - 6.4.1-1 +- 6.4.1 + +* Mon Jun 16 2025 Steve Cossette - 6.4.0-1 +- 6.4.0 + +* Sat May 31 2025 Marc Deop i Argemí - 6.3.91-2 +- Add signature file + +* Fri May 30 2025 Steve Cossette - 6.3.91-1 +- 6.3.91 + +* Thu May 15 2025 Marc Deop i Argemí - 6.3.90-1 +- 6.3.90 + +* Tue May 06 2025 Steve Cossette - 6.3.5-1 +- 6.3.5 + +* Mon Apr 14 2025 Jan Grulich - 6.3.4-2 +- Rebuild (qt6) + +* Wed Apr 02 2025 Marc Deop i Argemí - 6.3.4-1 +- 6.3.4 + +* Tue Mar 25 2025 Jan Grulich - 6.3.3-2 +- Rebuild (qt6) + +* Tue Mar 11 2025 Steve Cossette - 6.3.3-1 +- 6.3.3 + +* Tue Feb 25 2025 Steve Cossette - 6.3.2-1 +- 6.3.2 + +* Tue Feb 18 2025 Steve Cossette - 6.3.1-1 +- 6.3.1 + +* Thu Feb 06 2025 Marc Deop i Argemí - 6.3.0-1 +- 6.3.0 + +* Thu Jan 23 2025 Steve Cossette - 6.2.91-1 +- 6.2.91 + +* Fri Jan 17 2025 Fedora Release Engineering - 6.2.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + +* Thu Jan 09 2025 Steve Cossette - 6.2.90-1 +- Beta 6.2.90 + +* Tue Dec 31 2024 Steve Cossette - 6.2.5-1 +- 6.2.5 + +* Tue Nov 26 2024 Marc Deop i Argemí - 6.2.4-1 +- 6.2.4 + +* Tue Nov 05 2024 Steve Cossette - 6.2.3-1 +- 6.2.3 + +* Tue Oct 22 2024 Steve Cossette - 6.2.2-1 +- 6.2.2 + +* Tue Oct 15 2024 Steve Cossette - 6.2.1-1 +- 6.2.1 + +* Mon Oct 14 2024 Jan Grulich - 6.2.0-2 +- Rebuild (qt6) + +* Thu Oct 03 2024 Marc Deop i Argemí - 6.2.0-1 +- 6.2.0 + +* Thu Sep 12 2024 Marc Deop i Argemí - 6.1.90-1 +- 6.1.90 + +* Tue Sep 10 2024 Marc Deop i Argemí - 6.1.5-1 +- 6.1.5 + +* Fri Aug 09 2024 Steve Cossette - 6.1.4-1 +- 6.1.4 + +* Wed Jul 24 2024 Marc Deop i Argemí - 6.1.3-3 +- rebuilt + +* Thu Jul 18 2024 Fedora Release Engineering - 6.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Tue Jul 16 2024 Marc Deop i Argemí - 6.1.3-1 +- 6.1.3 + +* Wed Jul 03 2024 Marc Deop i Argemí - 6.1.2-1 +- 6.1.2 + +* Tue Jun 25 2024 Marc Deop i Argemí - 6.1.1-1 +- 6.1.1 + +* Thu Jun 13 2024 Marc Deop i Argemí - 6.1.0-1 +- 6.1.0 + +* Fri May 24 2024 Marc Deop i Argemí - 6.0.90-1 +- 6.0.90 + +* Wed May 22 2024 Marc Deop i Argemí - 6.0.5-1 +- 6.0.5 + +* Tue Apr 16 2024 Marc Deop i Argemí - 6.0.4-1 +- 6.0.4 + +* Thu Apr 04 2024 Jan Grulich - 6.0.3-2 +- Rebuild (qt6) + +* Tue Mar 26 2024 Marc Deop i Argemí - 6.0.3-1 +- 6.0.3 + +* Tue Mar 12 2024 Marc Deop i Argemí - 6.0.2-1 +- 6.0.2 + +* Wed Mar 06 2024 Marc Deop i Argemí - 6.0.1-1 +- 6.0.1 + +* Wed Feb 21 2024 Marc Deop i Argemí - 6.0.0-1 +- 6.0.0 + +* Fri Feb 16 2024 Jan Grulich - 5.93.0-2 +- Rebuild (qt6) + +* Wed Jan 31 2024 Marc Deop i Argemí - 5.93.0-1 +- 5.93.0 + +* Thu Jan 25 2024 Fedora Release Engineering - 5.92.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Jan 21 2024 Fedora Release Engineering - 5.92.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Wed Jan 10 2024 Marc Deop i Argemí - 5.92.0-1 +- 5.92.0 + +* Thu Dec 21 2023 Marc Deop i Argemí - 5.91.0-1 +- 5.91.0 + +* Sun Dec 03 2023 Justin Zobel - 5.90.0-1 +- Update to 5.90.0 + +* Wed Nov 29 2023 Jan Grulich - 5.27.80-2 +- Rebuild (qt6) + +* Fri Nov 10 2023 Alessandro Astone - 5.27.80-1 +- 5.27.80 + +* Wed Oct 18 2023 Steve Cossette - 5.27.80^20231009.021332.6933aae-3 +- Added BuildDep for systemd + +* Wed Oct 18 2023 Steve Cossette - 5.27.80^20231009.021332.6933aae-2 +- Fixed an issue with the systemd unit + +* Sat Sep 23 2023 Steve Cossette - 5.27.80^20231009.021332.6933aae-1 +- Initial release diff --git a/sonic-login-manager/README.scripts b/sonic-login-manager/README.scripts new file mode 100644 index 0000000..8eb1628 --- /dev/null +++ b/sonic-login-manager/README.scripts @@ -0,0 +1,2 @@ +This scripts dir contains only samples, but are generally not used directly. +In practice, plasmalogin runtime uses items under /etc/plasmalogin by default diff --git a/sonic-login-manager/plasmalogin-environment_file.patch b/sonic-login-manager/plasmalogin-environment_file.patch new file mode 100644 index 0000000..29e3344 --- /dev/null +++ b/sonic-login-manager/plasmalogin-environment_file.patch @@ -0,0 +1,12 @@ +diff --git a/services/plasmalogin.service.in b/services/plasmalogin.service.in +index d652b0f..1c51101 100644 +--- a/services/plasmalogin.service.in ++++ b/services/plasmalogin.service.in +@@ -9,6 +9,7 @@ StartLimitBurst=2 + + [Service] + ExecStart=@CMAKE_INSTALL_FULL_BINDIR@/plasmalogin ++EnvironmentFile=-/etc/sysconfig/plasmalogin + Restart=always + + [Install] diff --git a/sonic-login-manager/plasmalogin-rpmostree-tmpfiles-hack.patch b/sonic-login-manager/plasmalogin-rpmostree-tmpfiles-hack.patch new file mode 100644 index 0000000..32eeb54 --- /dev/null +++ b/sonic-login-manager/plasmalogin-rpmostree-tmpfiles-hack.patch @@ -0,0 +1,12 @@ +diff --git a/services/plasmalogin-tmpfiles.conf.in b/services/plasmalogin-tmpfiles.conf.in +index 8cfd6b8..91bf536 100644 +--- a/services/plasmalogin-tmpfiles.conf.in ++++ b/services/plasmalogin-tmpfiles.conf.in +@@ -1,5 +1,7 @@ + # Home dir of the plasmalogin user, also contains state.conf + d ${STATE_DIR} 0750 plasmalogin plasmalogin ++# Workaround for https://pagure.io/fedora-kde/SIG/issue/87 ++Z ${STATE_DIR} - plasmalogin plasmalogin + # This contains X11 auth files passed to Xorg and the greeter + d ${RUNTIME_DIR} 0711 root root + # Sockets for IPC diff --git a/sonic-login-manager/plasmalogin.conf b/sonic-login-manager/plasmalogin.conf new file mode 100644 index 0000000..65e9500 --- /dev/null +++ b/sonic-login-manager/plasmalogin.conf @@ -0,0 +1,46 @@ +[Autologin] +# Whether plasmalogin should automatically log back into sessions when they exit +#Relogin=false + +# Name of session file for autologin session (if empty try last logged in) +#Session= + +# Username for autologin session +#User= + + +[General] +# Comma-separated list of Linux namespaces for user session to enter +#Namespaces= + + +[Users] +# Default $PATH for logged in users +#DefaultPath=/usr/local/bin:/usr/bin:/bin + +# Remember the session of the last successfully logged in user +#RememberLastSession=true + +# Remember the last successfully logged in user +#RememberLastUser=true + +# When logging in as the same user twice, restore the original session, rather than create a new one +#ReuseSession=true + + +[Wayland] +# Path to the user session log file +#SessionLogFile=.local/share/plasmalogin/wayland-session.log + + +[X11] +# Arguments passed to the X server invocation +#ServerArguments=-nolisten tcp + +# Path to X server binary +#ServerPath=/usr/bin/X + +# Path to the user session log file +#SessionLogFile=.local/share/plasmalogin/xorg-session.log + + diff --git a/sonic-login-manager/plasmalogin.sysconfig b/sonic-login-manager/plasmalogin.sysconfig new file mode 100644 index 0000000..4911cb4 --- /dev/null +++ b/sonic-login-manager/plasmalogin.sysconfig @@ -0,0 +1,5 @@ +# workaround https://bugzilla.redhat.com/1686675 +# see also https://bugreports.qt.io/browse/QTBUG-58508 +QML_DISABLE_DISK_CACHE=1 +# enable qDebug messages for debug build +# QT_LOGGING_RULES="*.debug=true" diff --git a/sonic-login-manager/plasmalogin.sysusers b/sonic-login-manager/plasmalogin.sysusers new file mode 100644 index 0000000..359cc02 --- /dev/null +++ b/sonic-login-manager/plasmalogin.sysusers @@ -0,0 +1,2 @@ +#Type Name ID GECOS Home directory Shell +u plasmalogin - "PLASMALOGIN Greeter Account" /var/lib/plasmalogin - diff --git a/sonic-login-manager/sonic-login-manager.spec b/sonic-login-manager/sonic-login-manager.spec new file mode 100644 index 0000000..aeffd69 --- /dev/null +++ b/sonic-login-manager/sonic-login-manager.spec @@ -0,0 +1,269 @@ + + +Name: sonic-login-manager +Version: 6.6.4 +Release: 10%{?dist} +License: BSD-3-Clause and CC0-1.0 and (GPL-2.0-only or GPL-3.0-only) and GPL-2.0-or-later and LGPL-2.0-or-later and LGPL-2.1-or-later +Summary: QML based login manager for SonicDE + +URL: https://github.com/Sonic-DE/sonic-login-manager +Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz + +# README.scripts +Source10: README.scripts +# sysconfig snippet +Source11: plasmalogin.sysconfig +# sysusers config file. note these are shipped in the upstream tarball +# but we cannot use the files from the tarball for %pre scriptlet +# generation, so we duplicate them as source files for that purpose; +# this is an ugly hack that should be removed if it becomes possible. +# see https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/TFDMAU7KLMSQTKPJELHSM6PFVXIZ56GK/ +Source12: plasmalogin.sysusers +# sample plasmalogin.conf generated with plasmalogin --example-config, and entries commented-out +Source13: plasmalogin.conf + +# upstream patches + +# proposed patches +## plasmalogin.service: +EnvironmentFile=-/etc/sysconfig/plasmalogin (FIXME: patch needs update for Sonic-DE source) +#Patch1001: plasmalogin-environment_file.patch +## Workaround for https://pagure.io/fedora-kde/SIG/issue/87 (FIXME: patch needs update for Sonic-DE source) +#Patch1002: plasmalogin-rpmostree-tmpfiles-hack.patch + +Provides: service(graphical-login) = plasmalogin + +BuildRequires: desktop-file-utils +BuildRequires: cmake >= 3.22 +BuildRequires: extra-cmake-modules +BuildRequires: gcc-c++ +BuildRequires: pam-devel +BuildRequires: pkgconfig(libsystemd) +BuildRequires: pkgconfig(systemd) +BuildRequires: pkgconfig(xcb) +BuildRequires: pkgconfig(xcb-xkb) +BuildRequires: cmake(Qt6Core) +BuildRequires: cmake(Qt6DBus) +BuildRequires: cmake(Qt6Gui) +BuildRequires: cmake(Qt6Qml) +BuildRequires: cmake(Qt6Quick) +BuildRequires: cmake(Qt6LinguistTools) +BuildRequires: cmake(Qt6ShaderTools) +BuildRequires: cmake(Qt6Test) +BuildRequires: cmake(Qt6QuickTest) +BuildRequires: cmake(KF6Config) +BuildRequires: cmake(KF6Package) +BuildRequires: cmake(KF6WindowSystem) +BuildRequires: cmake(KF6I18n) +BuildRequires: cmake(KF6DBusAddons) +BuildRequires: cmake(KF6KCMUtils) +BuildRequires: cmake(KF6Auth) +BuildRequires: cmake(KF6KIO) +BuildRequires: cmake(KF6KirigamiPlatform) +BuildRequires: cmake(PlasmaQuick) +BuildRequires: cmake(LayerShellQt) +BuildRequires: cmake(LibKWorkspace) +BuildRequires: cmake(LibKLookAndFeel) +BuildRequires: cmake(KF6Screen) +# verify presence to pull defaults from /etc/login.defs +BuildRequires: shadow-utils +BuildRequires: systemd +BuildRequires: systemd-rpm-macros +BuildRequires: kf6-rpm-macros + +# for jxl support +Requires: kf6-kimageformats%{?_isa} + +%if %{with x11} +Requires: xorg-x11-xinit +%endif +%{?systemd_requires} + +Requires: kf6-filesystem +Requires: kf6-kauth +Requires(pre): shadow-utils + +Requires: kde-settings-plasma + +# Requires sonic window manager (X11 variant) +Requires: sonic-win%{?_isa} +Requires: (kcm-plasmalogin%{?_isa} if plasma-systemsettings%{?_isa}) + +%description +Sonic Login Manager provides a display manager for SonicDE +with a frontend providing a greeter, +wallpaper plugin integration and a System Settings module (KCM). + +%package -n kcm-plasmalogin +Summary: KDE KCM for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: dbus-common +Requires: plasma-systemsettings%{?_isa} +Requires: polkit +Requires: qt6-filesystem + +%description -n kcm-plasmalogin +%{summary}. + +%prep +%autosetup -p1 + + +%conf +%cmake_kf6 \ + -DCMAKE_BUILD_TYPE:STRING="Release" \ + -DPAM_OS_CONFIGURATION:STRING="fedora" \ + -DSESSION_COMMAND:PATH=/etc/X11/xinit/Xsession \ + -DWAYLAND_SESSION_COMMAND:PATH=/etc/plasmalogin/wayland-session + + +%build +%cmake_build + + +%install +%cmake_install + +%find_lang plasma_login +%find_lang kcm_plasmalogin + + +mkdir -p %{buildroot}%{_sysconfdir}/plasmalogin.conf.d +mkdir -p %{buildroot}%{_prefix}/lib/plasmalogin/plasmalogin.conf.d + +install -Dpm 644 %{SOURCE10} %{buildroot}%{_datadir}/plasmalogin/scripts/README.scripts +install -Dpm 644 %{SOURCE11} %{buildroot}%{_sysconfdir}/sysconfig/plasmalogin +install -Dpm 644 %{SOURCE13} %{buildroot}%{_sysconfdir}/plasmalogin.conf + +mkdir -p %{buildroot}/run/plasmalogin +mkdir -p %{buildroot}%{_localstatedir}/lib/plasmalogin +mkdir -p %{buildroot}%{_sysconfdir}/plasmalogin/ +cp -a %{buildroot}%{_datadir}/plasmalogin/scripts/* \ + %{buildroot}%{_sysconfdir}/plasmalogin/ +# we're using /etc/X11/xinit/Xsession (by default) instead +rm -fv %{buildroot}%{_sysconfdir}/plasmalogin/Xsession + +# De-conflict the dbus file +mv %{buildroot}%{_datadir}/dbus-1/system.d/org.freedesktop.DisplayManager.conf \ + %{buildroot}%{_datadir}/dbus-1/system.d/org.freedesktop.DisplayManager-plasmalogin.conf + + +%check +desktop-file-validate %{buildroot}/%{_datadir}/applications/kcm_plasmalogin.desktop + + +%pre +%sysusers_create_compat %{SOURCE12} + + +%post +%systemd_post plasmalogin.service +%systemd_user_post plasma-login.service plasma-login-kwin_x11.service plasma-login-x11.target plasma-wallpaper.service + + +%preun +%systemd_preun plasmalogin.service +%systemd_user_preun plasma-login.service plasma-login-kwin_x11.service plasma-login-x11.target plasma-wallpaper.service + + +%postun +%systemd_postun plasmalogin.service +%systemd_user_postun plasma-login.service plasma-login-kwin_x11.service plasma-login-x11.target plasma-wallpaper.service + + +%files -f plasma_login.lang +%license LICENSE LICENSE.* LICENSES/* +%doc README.md +%dir %{_sysconfdir}/plasmalogin/ +%dir %{_sysconfdir}/plasmalogin.conf.d +%dir %{_prefix}/lib/plasmalogin +%dir %{_prefix}/lib/plasmalogin/plasmalogin.conf.d +%config(noreplace) %{_sysconfdir}/plasmalogin/* +%config(noreplace) %{_sysconfdir}/plasmalogin.conf +%config(noreplace) %{_sysconfdir}/sysconfig/plasmalogin +%{_prefix}/lib/pam.d/plasmalogin* +%{_datadir}/dbus-1/system.d/org.freedesktop.DisplayManager-plasmalogin.conf +%{_bindir}/plasmalogin +%{_bindir}/startplasma-login-x11 +%{_bindir}/plasma-login-wallpaper +%{_libexecdir}/plasmalogin-helper +%{_libexecdir}/plasmalogin-helper-start-x11user +%{_libexecdir}/plasma-login-greeter +%{_tmpfilesdir}/plasmalogin.conf +%{_sysusersdir}/plasmalogin.conf +%attr(0711, root, plasmalogin) %dir /run/plasmalogin +%attr(1770, plasmalogin, plasmalogin) %dir %{_localstatedir}/lib/plasmalogin +%{_unitdir}/plasmalogin.service +%{_userunitdir}/plasma-login.service +%{_userunitdir}/plasma-login-kwin_x11.service +%{_userunitdir}/plasma-login-x11.target +%{_userunitdir}/plasma-wallpaper.service +%dir %{_datadir}/plasmalogin +%{_datadir}/plasmalogin/scripts/ + + +%files -n kcm-plasmalogin -f kcm_plasmalogin.lang +%{_kf6_libexecdir}/kauth/kcmplasmalogin_authhelper +%{_kf6_qtplugindir}/plasma/kcms/systemsettings/kcm_plasmalogin.so +%{_datadir}/applications/kcm_plasmalogin.desktop +%{_datadir}/dbus-1/system-services/org.kde.kcontrol.kcmplasmalogin.service +%{_datadir}/dbus-1/system.d/org.kde.kcontrol.kcmplasmalogin.conf +%{_datadir}/polkit-1/actions/org.kde.kcontrol.kcmplasmalogin.policy + + +%changelog +* Fri Apr 10 2026 Steve Cossette - 6.6.4-1 +- 6.6.4 + +* Tue Mar 17 2026 Steve Cossette - 6.6.3-1 +- 6.6.3 + +* Tue Mar 03 2026 Steve Cossette - 6.6.2-1 +- 6.6.2 + +* Tue Feb 24 2026 Steve Cossette - 6.6.1-1 +- 6.6.1 + +* Thu Feb 12 2026 Steve Cossette - 6.6.0-1 +- 6.6.0 + +* Fri Jan 30 2026 Adam Williamson - 6.5.91-2 +- Backport MR #102 to fix idle timeout issues + +* Tue Jan 27 2026 Steve Cossette - 6.5.91-1 +- 6.5.91 + +* Sat Jan 17 2026 Fedora Release Engineering - 6.5.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + +* Tue Jan 13 2026 Steve Cossette - 6.5.90-1 +- 6.5.90 + +* Tue Jan 13 2026 farchord@gmail.com +- 6.5.90 + +* Mon Jan 12 2026 Neal Gompa - 0.21.0~git1.20260112.c96b194-3 +- Add WIP fix to avoid KCM breaking wallpaper settings + +* Mon Jan 12 2026 Neal Gompa - 0.21.0~git1.20260112.c96b194-2 +- Fix install path for main config file + +* Mon Jan 12 2026 Neal Gompa - 0.21.0~git1.20260112.c96b194-1 +- Bump to new git snapshot +- Drop merged patch + +* Sun Jan 11 2026 Neal Gompa - 0.21.0~git1.20260111.99ded95-2 +- Add patch to read default wallpaper settings + +* Sun Jan 11 2026 Neal Gompa - 0.21.0~git1.20260111.99ded95-1 +- Bump to new git snapshot + +* Wed Dec 03 2025 Neal Gompa - 0.21.0~git1.20251203.68b0122-1 +- Bump to new git snapshot +- Add sample plasmalogin.conf + +* Fri Nov 28 2025 Neal Gompa - 0.21.0~git1.20251128.146250b-1 +- Bump to new git snapshot + +* Tue Nov 25 2025 Neal Gompa - 0.21.0~git1.20251125.6972b55-1 +- Initial package (partly forked from sddm) + diff --git a/sonic-screen-library/sonic-screen-library.spec b/sonic-screen-library/sonic-screen-library.spec new file mode 100644 index 0000000..112b437 --- /dev/null +++ b/sonic-screen-library/sonic-screen-library.spec @@ -0,0 +1,927 @@ +%define _disable_source_fetch 0 +%define debug_package %{nil} + +#Name: libkscreen +Name: sonic-screen-library +Summary: KDE display configuration library +Version: 6.6.4 +Release: 1%{?dist} + +License: GPL-2.0-or-later +#URL: https://invent.kde.org/plasma/%{name} +URL: https://github.com/Sonic-DE/%{name} + +#Source0: https://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz +#Source1: https://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz.sig +Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz + +# KDE Frameworks +BuildRequires: extra-cmake-modules +BuildRequires: cmake(KF6Config) + +# Fedora +BuildRequires: kf6-rpm-macros +Requires: kf6-filesystem + +# Misc +BuildRequires: systemd-rpm-macros +BuildRequires: libX11-devel +BuildRequires: libXrandr-devel +BuildRequires: libxcb-devel +BuildRequires: pkgconfig(xcb-dpms) +BuildRequires: wayland-devel + +# KDE Plasma +BuildRequires: plasma-wayland-protocols-devel + +# Qt +BuildRequires: qt6-qtbase-devel +BuildRequires: qt6-qtbase-private-devel +BuildRequires: qt6-qtwayland-devel +BuildRequires: cmake(Qt6WaylandClient) + +Conflicts: libkscreen + +%description +LibKScreen is a library that provides access to current configuration +of connected displays and ways to change the configuration. + +%package devel +Summary: Development files for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} +Conflicts: libkscreen-devel +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + +%package doc +Summary: Developer Documentation files for %{name} +BuildArch: noarch +Conflicts: libkscreen-doc +%description doc +Developer Documentation files for %{name} for use with KDevelop or QtCreator. + +%prep +%autosetup -p1 + +%build +%cmake_kf6 +%cmake_build + +%install +%cmake_install +%find_lang_kf6 libkscreen6_qt + +%files -f libkscreen6_qt.lang +%license LICENSES/* +%{_datadir}/dbus-1/services/org.kde.kscreen.service +%{_datadir}/qlogging-categories6/libkscreen.categories +%{_datadir}/zsh/site-functions/_kscreen-doctor +%{_kf6_bindir}/kscreen-doctor +%{_kf6_libexecdir}/kscreen_backend_launcher +%{_kf6_libdir}/libKF6Screen.so.8 +%{_kf6_libdir}/libKF6Screen.so.%{version} +%{_kf6_libdir}/libKF6ScreenDpms.so.8 +%{_kf6_libdir}/libKF6ScreenDpms.so.%{version} +%{_kf6_plugindir}/kscreen/ +%{_userunitdir}/plasma-kscreen.service + +%files devel +%{_kf6_includedir}/KScreen/ +%{_kf6_includedir}/kscreen_version.h +%{_kf6_libdir}/cmake/KF6Screen/ +%{_kf6_libdir}/libKF6Screen.so +%{_kf6_libdir}/libKF6ScreenDpms.so +%{_libdir}/pkgconfig/KF6Screen.pc +%{_qt6_docdir}/*.tags + +%files doc +%{_qt6_docdir}/*.qch + +%changelog +* Fri Apr 10 2026 Steve Cossette - 6.6.4-1 +- 6.6.4 + +* Tue Mar 17 2026 Steve Cossette - 6.6.3-1 +- 6.6.3 + +* Tue Mar 03 2026 Steve Cossette - 6.6.2-1 +- 6.6.2 + +* Tue Feb 24 2026 Steve Cossette - 6.6.1-1 +- 6.6.1 + +* Thu Feb 12 2026 Steve Cossette - 6.6.0-1 +- 6.6.0 + +* Tue Jan 27 2026 Steve Cossette - 6.5.91-1 +- 6.5.91 + +* Fri Jan 16 2026 Fedora Release Engineering - 6.5.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + +* Tue Jan 13 2026 farchord@gmail.com - 6.5.90-1 +- 6.5.90 + +* Tue Jan 13 2026 farchord@gmail.com - 6.5.5-1 +- 6.5.5 + +* Tue Dec 09 2025 Steve Cossette - 6.5.4-1 +- 6.5.4 + +* Tue Nov 18 2025 Steve Cossette - 6.5.3-1 +- 6.5.3 + +* Tue Nov 04 2025 Steve Cossette - 6.5.2-1 +- 6.5.2 + +* Tue Oct 28 2025 Steve Cossette - 6.5.1-1 +- 6.5.1 + +* Fri Oct 17 2025 Steve Cossette - 6.5.0-1 +- 6.5.0 + +* Thu Oct 02 2025 Steve Cossette - 6.4.91-1 +- 6.4.91 + +* Tue Sep 30 2025 Jan Grulich - 6.4.5-2 +- Rebuild (qt6) + +* Thu Sep 25 2025 Steve Cossette - 6.4.90-1 +- 6.4.90 + +* Tue Sep 16 2025 farchord@gmail.com - 6.4.5-1 +- 6.4.5 + +* Wed Aug 06 2025 Steve Cossette - 6.4.4-1 +- 6.4.4 + +* Thu Jul 24 2025 Fedora Release Engineering - 6.4.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + +* Tue Jul 15 2025 Steve Cossette - 6.4.3-1 +- 6.4.3 + +* Thu Jul 03 2025 Steve Cossette - 6.4.2-1 +- 6.4.2 + +* Tue Jun 24 2025 Marc Deop i Argemí - 6.4.1-1 +- 6.4.1 + +* Mon Jun 16 2025 Steve Cossette - 6.4.0-1 +- 6.4.0 + +* Sat May 31 2025 Marc Deop i Argemí - 6.3.91-2 +- Add signature file + +* Fri May 30 2025 Steve Cossette - 6.3.91-1 +- 6.3.91 + +* Thu May 15 2025 Marc Deop i Argemí - 6.3.90-1 +- 6.3.90 + +* Tue May 06 2025 Steve Cossette - 6.3.5-1 +- 6.3.5 + +* Mon Apr 14 2025 Jan Grulich - 6.3.4-2 +- Rebuild (qt6) + +* Wed Apr 02 2025 Marc Deop i Argemí - 6.3.4-1 +- 6.3.4 + +* Tue Mar 25 2025 Jan Grulich - 6.3.3-2 +- Rebuild (qt6) + +* Tue Mar 11 2025 Steve Cossette - 6.3.3-1 +- 6.3.3 + +* Tue Feb 25 2025 Steve Cossette - 6.3.2-1 +- 6.3.2 + +* Tue Feb 18 2025 Steve Cossette - 6.3.1-1 +- 6.3.1 + +* Thu Feb 06 2025 Marc Deop i Argemí - 6.3.0-1 +- 6.3.0 + +* Thu Jan 23 2025 Steve Cossette - 6.2.91-1 +- 6.2.91 + +* Fri Jan 17 2025 Fedora Release Engineering - 6.2.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + +* Thu Jan 09 2025 Steve Cossette - 6.2.90-1 +- Beta 6.2.90 + +* Tue Dec 31 2024 Steve Cossette - 6.2.5-1 +- 6.2.5 + +* Tue Nov 26 2024 Marc Deop i Argemí - 6.2.4-1 +- 6.2.4 + +* Tue Nov 05 2024 Steve Cossette - 6.2.3-1 +- 6.2.3 + +* Tue Oct 22 2024 Steve Cossette - 6.2.2-1 +- 6.2.2 + +* Tue Oct 15 2024 Steve Cossette - 6.2.1-1 +- 6.2.1 + +* Mon Oct 14 2024 Jan Grulich - 6.2.0-2 +- Rebuild (qt6) + +* Thu Oct 03 2024 Marc Deop i Argemí - 6.2.0-1 +- 6.2.0 + +* Thu Sep 12 2024 Marc Deop i Argemí - 6.1.90-1 +- 6.1.90 + +* Tue Sep 10 2024 Marc Deop i Argemí - 6.1.5-1 +- 6.1.5 + +* Fri Aug 09 2024 Steve Cossette - 6.1.4-1 +- 6.1.4 + +* Wed Jul 24 2024 Marc Deop i Argemí - 6.1.3-3 +- rebuilt + +* Thu Jul 18 2024 Fedora Release Engineering - 6.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Tue Jul 16 2024 Marc Deop i Argemí - 6.1.3-1 +- 6.1.3 + +* Wed Jul 03 2024 Marc Deop i Argemí - 6.1.2-1 +- 6.1.2 + +* Tue Jun 25 2024 Marc Deop i Argemí - 6.1.1-1 +- 6.1.1 + +* Thu Jun 13 2024 Marc Deop i Argemí - 6.1.0-1 +- 6.1.0 + +* Fri May 24 2024 Marc Deop i Argemí - 6.0.90-1 +- 6.0.90 + +* Wed May 22 2024 Marc Deop i Argemí - 6.0.5-1 +- 6.0.5 + +* Tue Apr 16 2024 Marc Deop i Argemí - 6.0.4-1 +- 6.0.4 + +* Thu Apr 04 2024 Jan Grulich - 6.0.3-2 +- Rebuild (qt6) + +* Tue Mar 26 2024 Marc Deop i Argemí - 6.0.3-1 +- 6.0.3 + +* Tue Mar 12 2024 Marc Deop i Argemí - 6.0.2-1 +- 6.0.2 + +* Sat Mar 09 2024 Marie Loise Nolden - 6.0.1-2 +- add missing BuildArch: noarch to -doc package + +* Wed Mar 06 2024 Marc Deop i Argemí - 6.0.1-1 +- 6.0.1 + +* Wed Feb 21 2024 Marc Deop i Argemí - 6.0.0-1 +- 6.0.0 + +* Fri Feb 16 2024 Jan Grulich - 5.93.0-2 +- Rebuild (qt6) + +* Wed Jan 31 2024 Marc Deop i Argemí - 5.93.0-1 +- 5.93.0 + +* Thu Jan 25 2024 Fedora Release Engineering - 5.92.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Jan 21 2024 Fedora Release Engineering - 5.92.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Wed Jan 10 2024 Marc Deop i Argemí - 5.92.0-1 +- 5.92.0 + +* Tue Jan 09 2024 Marie Loise Nolden - 5.91.0-2 +- add doc package for KF6 API + +* Thu Dec 21 2023 Marc Deop i Argemí - 5.91.0-1 +- 5.91.0 + +* Sun Dec 03 2023 Justin Zobel - 5.90.0-1 +- Update to 5.90.0 + +* Wed Nov 29 2023 Jan Grulich - 5.27.80-3 +- Rebuild (qt6) + +* Tue Nov 28 2023 Alessandro Astone - 5.27.80-2 +- Don't obsolete libkscreen-qt5 now that it can co-exist + +* Sat Nov 11 2023 Alessandro Astone - 5.27.80-1 +- Renamed from libkscreen-qt5 +- 5.27.80 + +* Tue Oct 24 2023 Steve Cossette - 5.27.9-1 +- 5.27.9 + +* Tue Sep 12 2023 justin.zobel@gmail.com - 5.27.8-1 +- 5.27.8 + +* Tue Aug 01 2023 Marc Deop i Argemí - 5.27.7-1 +- 5.27.7 + +* Thu Jul 20 2023 Fedora Release Engineering - 5.27.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Sun Jun 25 2023 Marc Deop i Argemí - 5.27.6-1 +- 5.27.6 + +* Wed May 10 2023 Marc Deop i Argemí - 5.27.5-1 +- 5.27.5 + +* Tue Apr 04 2023 Marc Deop i Argemí - 5.27.4-1 +- 5.27.4 + +* Tue Mar 14 2023 Marc Deop i Argemí - 5.27.3-1 +- 5.27.3 + +* Tue Feb 28 2023 Marc Deop i Argemí - 5.27.2-1 +- 5.27.2 + +* Tue Feb 21 2023 Marc Deop i Argemí - 5.27.1-1 +- 5.27.1 + +* Thu Feb 09 2023 Marc Deop - 5.27.0-1 +- 5.27.0 + +* Thu Jan 19 2023 Marc Deop - 5.26.90-1 +- 5.26.90 + +* Thu Jan 19 2023 Fedora Release Engineering - 5.26.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Thu Jan 05 2023 Justin Zobel - 5.26.5-1 +- Update to 5.26.5 + +* Tue Nov 29 2022 Marc Deop - 5.26.4-1 +- 5.26.4 + +* Wed Nov 09 2022 Marc Deop - 5.26.3-1 +- 5.26.3 + +* Wed Oct 26 2022 Marc Deop - 5.26.2-1 +- 5.26.2 + +* Tue Oct 18 2022 Marc Deop - 5.26.1-1 +- 5.26.1 + +* Thu Oct 06 2022 Marc Deop - 5.26.0-1 +- 5.26.0 + +* Sat Sep 17 2022 Marc Deop - 5.25.90-1 +- 5.25.90 + +* Wed Sep 07 2022 Marc Deop - 5.25.5-1 +- 5.25.5 + +* Wed Aug 03 2022 Justin Zobel - 5.25.4-1 +- Update to 5.25.4 + +* Thu Jul 21 2022 Fedora Release Engineering - 5.25.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Tue Jul 12 2022 Marc Deop - 5.25.3-1 +- 5.25.3 + +* Tue Jun 28 2022 Marc Deop - 5.25.2-1 +- 5.25.2 + +* Tue Jun 21 2022 Marc Deop - 5.25.1-1 +- 5.25.1 + +* Thu Jun 09 2022 Marc Deop - 5.25.0-1 +- 5.25.0 + +* Fri May 20 2022 Marc Deop - 5.24.90-1 +- 5.24.90 + +* Tue May 03 2022 Marc Deop - 5.24.5-1 +- 5.24.5 + +* Thu Mar 31 2022 Justin Zobel - 5.24.4-1 +- Update to 5.24.4 + +* Tue Mar 08 2022 Marc Deop - 5.24.3-1 +- 5.24.3 + +* Tue Feb 22 2022 Rex Dieter - 5.24.2-1 +- 5.24.2 + +* Tue Feb 15 2022 Marc Deop - 5.24.1-1 +- 5.24.1 + +* Thu Feb 03 2022 Marc Deop - 5.24.0-1 +- 5.24.0 + +* Thu Jan 20 2022 Fedora Release Engineering - 5.23.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Thu Jan 13 2022 Marc Deop - 5.23.90-1 +- 5.23.90 + +* Tue Jan 04 2022 Marc Deop - 5.23.5-1 +- 5.23.5 + +* Tue Dec 14 2021 Marc Deop - 5.23.4-1 +- 5.23.4 + +* Wed Nov 10 2021 Rex Dieter - 5.23.3-1 +- 5.23.3 + +* Tue Oct 26 2021 Rex Dieter - 5.23.2-1 +- 5.23.2 + +* Sat Oct 23 2021 Marc Deop - 5.23.1-1 +- 5.23.1 + +* Fri Oct 08 2021 Marc Deop - 5.23.0-1 +- 5.23.0 + +* Sat Sep 18 2021 Marc Deop - 5.22.90-2 +- Add BuildRequires: plasma-wayland-protocols-devel +- Add BuildRequires: qt5-qtwayland-devel +- Add BuildRequires: wayland-devel + +* Fri Sep 17 2021 Marc Deop - 5.22.90-1 +- 5.22.90 + +* Tue Aug 31 2021 Jan Grulich - 5.22.5-1 +- 5.22.5 + +* Tue Jul 27 2021 Jan Grulich - 5.22.4-1 +- 5.22.4 + +* Thu Jul 22 2021 Fedora Release Engineering - 5.22.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Mon Jul 12 2021 Jan Grulich - 5.22.3-1 +- 5.22.3 + +* Tue Jun 22 2021 Jan Grulich - 5.22.2.1-1 +- 5.22.2.1 + +* Tue Jun 22 2021 Jan Grulich - 5.22.2-1 +- 5.22.2 + +* Tue Jun 15 2021 Jan Grulich - 5.22.1-1 +- 5.22.1 + +* Sun Jun 06 2021 Jan Grulich - 5.22.0-1 +- 5.22.0 + +* Thu May 13 2021 Rex Dieter - 5.21.90-1 +- 5.21.90 + +* Tue May 04 2021 Jan Grulich - 5.21.5-1 +- 5.21.5 + +* Tue Apr 06 2021 Jan Grulich - 5.21.4-1 +- 5.21.4 + +* Tue Mar 16 2021 Jan Grulich - 5.21.3-1 +- 5.21.3 + +* Tue Mar 02 2021 Jan Grulich - 5.21.2-1 +- 5.21.2 + +* Tue Feb 23 2021 Jan Grulich - 5.21.1-1 +- 5.21.1 + +* Thu Feb 11 2021 Jan Grulich - 5.21.0-1 +- 5.21.0 + +* Tue Jan 26 2021 Fedora Release Engineering - 5.20.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Thu Jan 21 2021 Jan Grulich - 5.20.90-1 +- 5.20.90 (beta) + +* Tue Jan 5 16:03:31 CET 2021 Jan Grulich - 5.20.5-1 +- 5.20.5 + +* Tue Dec 1 09:42:59 CET 2020 Jan Grulich - 5.20.4-1 +- 5.20.4 + +* Wed Nov 11 08:22:40 CET 2020 Jan Grulich - 5.20.3-1 +- 5.20.3 + +* Tue Oct 27 14:23:09 CET 2020 Jan Grulich - 5.20.2-1 +- 5.20.2 + +* Tue Oct 20 15:29:02 CEST 2020 Jan Grulich - 5.20.1-1 +- 5.20.1 + +* Sun Oct 11 19:50:03 CEST 2020 Jan Grulich - 5.20.0-1 +- 5.20.0 + +* Fri Sep 18 2020 Jan Grulich - 5.19.90-1 +- 5.19.90 + +* Tue Sep 01 2020 Jan Grulich - 5.19.5-1 +- 5.19.5 + +* Tue Jul 28 2020 Jan Grulich - 5.19.4-1 +- 5.19.4 + +* Tue Jul 28 2020 Fedora Release Engineering - 5.19.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue Jul 07 2020 Jan Grulich - 5.19.3-1 +- 5.19.3 + +* Tue Jun 23 2020 Jan Grulich - 5.19.2-1 +- 5.19.2 + +* Wed Jun 17 2020 Martin Kyral - 5.19.1-1 +- 5.19.1 + +* Tue Jun 9 2020 Martin Kyral - 5.19.0-1 +- 5.19.0 + +* Fri May 15 2020 Martin Kyral - 5.18.90-1 +- 5.18.90 + +* Tue May 05 2020 Jan Grulich - 5.18.5-1 +- 5.18.5 + +* Sat Apr 04 2020 Rex Dieter - 5.18.4.1-1 +- 5.18.4.1 + +* Tue Mar 31 2020 Jan Grulich - 5.18.4-1 +- 5.18.4 + +* Tue Mar 10 2020 Jan Grulich - 5.18.3-1 +- 5.18.3 + +* Fri Feb 28 2020 Jan Grulich - 5.18.2-2 +- Handle when backend fails to load/initialize + +* Tue Feb 25 2020 Jan Grulich - 5.18.2-1 +- 5.18.2 + +* Tue Feb 18 2020 Jan Grulich - 5.18.1-1 +- 5.18.1 + +* Tue Feb 11 2020 Jan Grulich - 5.18.0-1 +- 5.18.0 + +* Wed Jan 29 2020 Fedora Release Engineering - 5.17.90-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Fri Jan 17 2020 Jan Grulich - 5.17.90-2 +- Respin tarball + +* Thu Jan 16 2020 Jan Grulich - 5.17.90-1 +- 5.17.90 + +* Wed Jan 08 2020 Jan Grulich - 5.17.5-1 +- 5.17.5 + +* Thu Dec 05 2019 Jan Grulich - 5.17.4-1 +- 5.17.4 + +* Wed Nov 13 2019 Martin Kyral - 5.17.3-1 +- 5.17.3 + +* Wed Oct 30 2019 Jan Grulich - 5.17.2-1 +- 5.17.2 + +* Wed Oct 23 2019 Jan Grulich - 5.17.1-1 +- 5.17.1 + +* Thu Oct 10 2019 Jan Grulich - 5.17.0-1 +- 5.17.0 + +* Fri Sep 20 2019 Martin Kyral - 5.16.90-1 +- 5.16.90 + +* Fri Sep 06 2019 Martin Kyral - 5.16.5-1 +- 5.16.5 + +* Tue Jul 30 2019 Martin Kyral - 5.16.4-1 +- 5.16.4 + +* Thu Jul 25 2019 Fedora Release Engineering - 5.16.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Wed Jul 10 2019 Martin Kyral - 5.16.3-1 +- 5.16.3 + +* Wed Jun 26 2019 Martin Kyral - 5.16.2-1 +- 5.16.2 + +* Tue Jun 18 2019 Rex Dieter - 5.16.1-1 +- 5.16.1 + +* Tue Jun 11 2019 Martin Kyral - 5.16.0-1 +- 5.16.0 + +* Thu May 16 2019 Martin Kyral - 5.15.90-1 +- 5.15.90 + +* Thu May 09 2019 Martin Kyral - 5.15.5-1 +- 5.15.5 + +* Wed Apr 03 2019 Rex Dieter - 5.15.4-1 +- 5.15.4 + +* Tue Mar 12 2019 Martin Kyral - 5.15.3-1 +- 5.15.3 + +* Tue Feb 26 2019 Rex Dieter - 5.15.2-1 +- 5.15.2 + +* Tue Feb 19 2019 Rex Dieter - 5.15.1-1 +- 5.15.1 + +* Wed Feb 13 2019 Martin Kyral - 5.15.0-1 +- 5.15.0 + +* Fri Feb 01 2019 Fedora Release Engineering - 5.14.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sun Jan 20 2019 Martin Kyral - 5.14.90-1 +- 5.14.90 + +* Tue Nov 27 2018 Rex Dieter - 5.14.4-1 +- 5.14.4 + +* Thu Nov 08 2018 Martin Kyral - 5.14.3-1 +- 5.14.3 + +* Wed Oct 24 2018 Rex Dieter - 5.14.2-1 +- 5.14.2 + +* Tue Oct 16 2018 Rex Dieter - 5.14.1-1 +- 5.14.1 + +* Fri Oct 05 2018 Rex Dieter - 5.14.0-1 +- 5.14.0 + +* Fri Sep 14 2018 Martin Kyral - 5.13.90-1 +- 5.13.90 + +* Tue Sep 04 2018 Rex Dieter - 5.13.5-1 +- 5.13.5 + +* Thu Aug 02 2018 Rex Dieter - 5.13.4-1 +- 5.13.4 + +* Fri Jul 13 2018 Fedora Release Engineering - 5.13.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Jul 11 2018 Martin Kyral - 5.13.3-1 +- 5.13.3 + +* Mon Jul 09 2018 Martin Kyral - 5.13.2-1 +- 5.13.2 + +* Tue Jun 19 2018 Martin Kyral - 5.13.1-1 +- 5.13.1 + +* Sat Jun 09 2018 Rex Dieter - 5.13.0-1 +- 5.13.0 + +* Fri May 18 2018 Martin Kyral - 5.12.90-1 +- 5.12.90 + +* Tue May 01 2018 Rex Dieter - 5.12.5-1 +- 5.12.5 + +* Tue Mar 27 2018 Rex Dieter - 5.12.4-1 +- 5.12.4 + +* Tue Mar 06 2018 Rex Dieter - 5.12.3-1 +- 5.12.3 + +* Wed Feb 21 2018 Jan Grulich - 5.12.2-1 +- 5.12.2 + +* Tue Feb 13 2018 Jan Grulich - 5.12.1-1 +- 5.12.1 + +* Wed Feb 07 2018 Fedora Release Engineering - 5.12.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Fri Feb 02 2018 Jan Grulich - 5.12.0-1 +- 5.12.0 + +* Mon Jan 15 2018 Jan Grulich - 5.11.95-1 +- 5.11.95 + +* Tue Jan 02 2018 Rex Dieter - 5.11.5-1 +- 5.11.5 + +* Thu Nov 30 2017 Martin Kyral - 5.11.4-1 +- 5.11.4 + +* Wed Nov 08 2017 Rex Dieter - 5.11.3-1 +- 5.11.3 + +* Wed Oct 25 2017 Martin Kyral - 5.11.2-1 +- 5.11.2 + +* Tue Oct 17 2017 Rex Dieter - 5.11.1-1 +- 5.11.1 + +* Wed Oct 11 2017 Martin Kyral - 5.11.0-1 +- 5.11.0 + +* Thu Aug 24 2017 Rex Dieter - 5.10.5-1 +- 5.10.5 + +* Thu Aug 03 2017 Fedora Release Engineering - 5.10.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 5.10.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Jul 21 2017 Rex Dieter - 5.10.4-1 +- 5.10.4 + +* Tue Jun 27 2017 Rex Dieter - 5.10.3-1 +- 5.10.3 + +* Thu Jun 15 2017 Rex Dieter - 5.10.2-1 +- 5.10.2 + +* Tue Jun 06 2017 Rex Dieter - 5.10.1-1 +- 5.10.1 + +* Wed May 31 2017 Jan Grulich - 5.10.0-1 +- 5.10.0 + +* Wed Apr 26 2017 Rex Dieter - 5.9.5-1 +- 5.9.5 + +* Thu Mar 23 2017 Rex Dieter - 5.9.4-1 +- 5.9.4 + +* Sat Mar 04 2017 Rex Dieter - 5.9.3-2 +- rebuild + +* Wed Mar 01 2017 Jan Grulich - 5.9.3-1 +- 5.9.3 + +* Tue Feb 21 2017 Rex Dieter - 5.8.6-1 +- 5.8.6 + +* Fri Feb 10 2017 Fedora Release Engineering - 5.8.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Mon Jan 02 2017 Rex Dieter - 5.8.5-2 +- filter plugin provides + +* Wed Dec 28 2016 Rex Dieter - 5.8.5-1 +- 5.8.5 + +* Tue Nov 22 2016 Rex Dieter - 5.8.4-1 +- 5.8.4 + +* Tue Nov 01 2016 Rex Dieter - 5.8.3-1 +- 5.8.3 + +* Tue Oct 18 2016 Rex Dieter - 5.8.2-1 +- 5.8.2 + +* Tue Oct 11 2016 Rex Dieter - 5.8.1-1 +- 5.8.1 + +* Thu Sep 29 2016 Rex Dieter - 5.8.0-1 +- 5.8.0 + +* Thu Sep 22 2016 Rex Dieter - 5.7.95-1 +- 5.7.95 + +* Tue Sep 13 2016 Rex Dieter - 5.7.5-1 +- 5.7.5 + +* Tue Aug 23 2016 Rex Dieter - 5.7.4-1 +- 5.7.4 + +* Tue Aug 02 2016 Rex Dieter - 5.7.3-1 +- 5.7.3 + +* Tue Jul 19 2016 Rex Dieter - 5.7.2-1 +- 5.7.2 + +* Tue Jul 19 2016 Rex Dieter - 5.7.1-2 +- rebuild (qt5) + +* Tue Jul 12 2016 Rex Dieter - 5.7.1-1 +- 5.7.1 + +* Thu Jun 30 2016 Rex Dieter - 5.7.0-1 +- 5.7.0 + +* Sat Jun 25 2016 Rex Dieter - 5.6.95-1 +- 5.6.95 + +* Tue Jun 14 2016 Rex Dieter - 5.6.5-1 +- 5.6.5 + +* Wed May 25 2016 Than Ngo - 5.6.4-2 +- disable wayland for epel7 + +* Sat May 14 2016 Rex Dieter - 5.6.4-1 +- 5.6.4 + +* Tue Apr 19 2016 Rex Dieter - 5.6.3-1 +- 5.6.3 + +* Sat Apr 09 2016 Rex Dieter - 5.6.2-1 +- 5.6.2 + +* Sat Apr 09 2016 Rex Dieter - 5.6.1-2 +- relax BR: kf5-kwayland-devel dep +- track library soname + +* Fri Apr 08 2016 Rex Dieter - 5.6.1-1 +- 5.6.1 + +* Tue Mar 01 2016 Daniel Vrátil - 5.5.5-1 +- Plasma 5.5.5 + +* Thu Feb 04 2016 Fedora Release Engineering - 5.5.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jan 27 2016 Daniel Vrátil - 5.5.4-1 +- Plasma 5.5.4 + +* Thu Jan 07 2016 Daniel Vrátil - 5.5.3-1 +- Plasma 5.5.3 + +* Thu Dec 31 2015 Rex Dieter - 5.5.2-1 +- 5.5.2 + +* Fri Dec 18 2015 Daniel Vrátil - 5.5.1-1 +- Plasma 5.5.1 + +* Thu Dec 03 2015 Daniel Vrátil - 5.5.0-1 +- Plasma 5.5.0 + +* Wed Nov 25 2015 Daniel Vrátil - 5.4.95-1 +- Plasma 5.4.95 + +* Thu Nov 05 2015 Daniel Vrátil - 5.4.3-1 +- Plasma 5.4.3 + +* Thu Oct 01 2015 Rex Dieter - 5.4.2-1 +- 5.4.2 + +* Thu Oct 01 2015 Rex Dieter 5.4.1-2 +- .spec cosmetics + +* Wed Sep 09 2015 Rex Dieter - 5.4.1-1 +- 5.4.1 + +* Fri Aug 21 2015 Daniel Vrátil - 5.4.0-1 +- Plasma 5.4.0 + +* Thu Aug 13 2015 Daniel Vrátil - 5.3.95-1 +- Plasma 5.3.95 + +* Thu Jun 25 2015 Daniel Vrátil - 5.3.2-1 +- Plasma 5.3.2 + +* Wed Jun 17 2015 Fedora Release Engineering - 5.3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Tue May 26 2015 Daniel Vrátil - 5.3.1-1 +- Plasma 5.3.1 + +* Thu Apr 30 2015 Daniel Vrátil - 5.3.0-2 +- Fix Obsoletes once more + +* Mon Apr 27 2015 Daniel Vrátil - 5.3.0-1 +- Plasma 5.3.0 + +* Wed Apr 22 2015 Daniel Vrátil - 5.2.95-1 +- Plasma 5.2.95 + +* Fri Mar 20 2015 Daniel Vrátil - 5.2.2-1 +- Plasma 5.2.2 + +* Fri Feb 27 2015 Daniel Vrátil - 5.2.1-2 +- Rebuild (GCC 5) + +* Tue Feb 24 2015 Daniel Vrátil - 5.2.1-1 +- Plasma 5.2.1 + +* Wed Jan 28 2015 Daniel Vrátil - 5.2.0-2 +- Fix Obsoletes + +* Mon Jan 26 2015 Daniel Vrátil - 5.2.0-1 +- Plasma 5.2.0 + (new package, forked from libkscreen) diff --git a/sonic-screen/sonic-screen.spec b/sonic-screen/sonic-screen.spec new file mode 100644 index 0000000..192e4f3 --- /dev/null +++ b/sonic-screen/sonic-screen.spec @@ -0,0 +1,991 @@ +%define _disable_source_fetch 0 +%define debug_package %{nil} +%define oldname kscreen + +# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval +ExcludeArch: %{ix86} + + +Name: sonic-screen +Epoch: 1 +Version: 6.6.4 +Release: 1%{?dist} +Summary: KDE Display Management software + +License: CC0-1.0 AND GPL-2.0-only AND GPL-2.0-or-later AND GPL-3.0-only AND LGPL-2.0-or-later AND (GPL-2.0-only OR GPL-3.0-only) +#URL: https://invent.kde.org/plasma/%{name} +URL: https://github.com/Sonic-DE/%{name} + +#Source0: https://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz +#Source1: https://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz.sig +Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz + +BuildRequires: extra-cmake-modules +BuildRequires: kf6-rpm-macros +BuildRequires: systemd-rpm-macros + +BuildRequires: qt6-qtbase-devel +BuildRequires: qt6-qtbase-private-devel +BuildRequires: qt6-qtsensors-devel + +BuildRequires: cmake(LayerShellQt) +BuildRequires: cmake(KF6Config) +BuildRequires: cmake(KF6DBusAddons) +BuildRequires: cmake(KF6GlobalAccel) +BuildRequires: cmake(KF6I18n) +BuildRequires: cmake(KF6KCMUtils) +BuildRequires: cmake(KF6Screen) +BuildRequires: cmake(KF6Svg) +BuildRequires: cmake(KF6XmlGui) +BuildRequires: cmake(KF6GuiAddons) +BuildRequires: cmake(KF6KirigamiPlatform) +BuildRequires: cmake(Qt6WaylandClient) +BuildRequires: cmake(KF6Crash) +BuildRequires: pkgconfig(wayland-protocols) +BuildRequires: wayland-devel + +BuildRequires: cmake(Plasma) + +BuildRequires: pkgconfig(xcb-atom) +BuildRequires: pkgconfig(xi) + +Conflicts: kscreen + +%description +KCM and KDED modules for managing displays in KDE. + + +%prep +%autosetup -p1 + + +%build +%cmake_kf6 +%cmake_build + + +%install +%cmake_install + +%find_lang %{name} --with-kde --all-name + + +%files -f %{name}.lang +%license LICENSES +%{_bindir}/kscreen-console +%{_bindir}/hdrcalibrator +%{_kf6_datadir}/applications/kcm_kscreen.desktop +%{_kf6_datadir}/kglobalaccel/org.kde.kscreen.desktop +%{_kf6_datadir}/dbus-1/services/org.kde.kscreen.osdService.service +%{_kf6_datadir}/qlogging-categories6/kscreen.categories +%{_kf6_plugindir}/kded/kscreen.so +%{_kf6_qtplugindir}/plasma/applets/org.kde.kscreen.so +%{_kf6_qtplugindir}/plasma/kcms/systemsettings/kcm_kscreen.so +%{_libexecdir}/kscreen_osd_service +%{_userunitdir}/plasma-kscreen-osd.service + +%changelog +* Fri Apr 10 2026 Steve Cossette - 1:6.6.4-1 +- 6.6.4 + +* Tue Mar 17 2026 Steve Cossette - 1:6.6.3-1 +- 6.6.3 + +* Tue Mar 03 2026 Steve Cossette - 1:6.6.2-1 +- 6.6.2 + +* Tue Feb 24 2026 Steve Cossette - 1:6.6.1-1 +- 6.6.1 + +* Thu Feb 12 2026 Steve Cossette - 1:6.6.0-1 +- 6.6.0 + +* Tue Jan 27 2026 Steve Cossette - 1:6.5.91-1 +- 6.5.91 + +* Fri Jan 16 2026 Fedora Release Engineering - 1:6.5.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + +* Tue Jan 13 2026 farchord@gmail.com - 1:6.5.90-1 +- 6.5.90 + +* Tue Jan 13 2026 farchord@gmail.com - 1:6.5.5-1 +- 6.5.5 + +* Tue Dec 09 2025 Steve Cossette - 1:6.5.4-1 +- 6.5.4 + +* Tue Nov 18 2025 Steve Cossette - 1:6.5.3-1 +- 6.5.3 + +* Tue Nov 04 2025 Steve Cossette - 1:6.5.2-1 +- 6.5.2 + +* Tue Oct 28 2025 Steve Cossette - 1:6.5.1-1 +- 6.5.1 + +* Fri Oct 17 2025 Steve Cossette - 1:6.5.0-1 +- 6.5.0 + +* Thu Oct 02 2025 Steve Cossette - 1:6.4.91-1 +- 6.4.91 + +* Tue Sep 30 2025 Jan Grulich - 1:6.4.5-2 +- Rebuild (qt6) + +* Thu Sep 25 2025 Steve Cossette - 1:6.4.90-1 +- 6.4.90 + +* Tue Sep 16 2025 farchord@gmail.com - 1:6.4.5-1 +- 6.4.5 + +* Mon Aug 18 2025 Marc Deop i Argemí - 1:6.4.4-2 +- Drop i686 support (leaf package) + +* Wed Aug 06 2025 Steve Cossette - 1:6.4.4-1 +- 6.4.4 + +* Thu Jul 24 2025 Fedora Release Engineering - 1:6.4.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + +* Tue Jul 15 2025 Steve Cossette - 1:6.4.3-1 +- 6.4.3 + +* Thu Jul 03 2025 Steve Cossette - 1:6.4.2-1 +- 6.4.2 + +* Tue Jun 24 2025 Marc Deop i Argemí - 1:6.4.1-1 +- 6.4.1 + +* Wed Jun 18 2025 Steve Cossette - 1:6.4.0-2 +- Fix for missing BR + +* Mon Jun 16 2025 Steve Cossette - 1:6.4.0-1 +- 6.4.0 + +* Sat May 31 2025 Marc Deop i Argemí - 1:6.3.91-2 +- Add signature file + +* Fri May 30 2025 Steve Cossette - 1:6.3.91-1 +- 6.3.91 + +* Thu May 15 2025 Marc Deop i Argemí - 1:6.3.90-1 +- 6.3.90 + +* Tue May 06 2025 Steve Cossette - 1:6.3.5-1 +- 6.3.5 + +* Wed Apr 23 2025 Vinicius - 1:6.3.4-3 +- Backport a fix for when the shortcut for Display Configuration does not + work due to dbus communication issues + +* Mon Apr 14 2025 Jan Grulich - 1:6.3.4-2 +- Rebuild (qt6) + +* Wed Apr 02 2025 Marc Deop i Argemí - 1:6.3.4-1 +- 6.3.4 + +* Tue Mar 25 2025 Jan Grulich - 1:6.3.3-2 +- Rebuild (qt6) + +* Tue Mar 11 2025 Steve Cossette - 1:6.3.3-1 +- 6.3.3 + +* Tue Feb 25 2025 Steve Cossette - 1:6.3.2-1 +- 6.3.2 + +* Tue Feb 18 2025 Steve Cossette - 1:6.3.1-1 +- 6.3.1 + +* Thu Feb 06 2025 Marc Deop i Argemí - 1:6.3.0-1 +- 6.3.0 + +* Thu Jan 23 2025 Steve Cossette - 1:6.2.91-1 +- 6.2.91 + +* Fri Jan 17 2025 Fedora Release Engineering - 1:6.2.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + +* Thu Jan 09 2025 Steve Cossette - 1:6.2.90-1 +- Beta 6.2.90 + +* Tue Dec 31 2024 Steve Cossette - 1:6.2.5-1 +- 6.2.5 + +* Tue Nov 26 2024 Marc Deop i Argemí - 1:6.2.4-1 +- 6.2.4 + +* Tue Nov 05 2024 Steve Cossette - 1:6.2.3-1 +- 6.2.3 + +* Tue Oct 22 2024 Steve Cossette - 1:6.2.2-1 +- 6.2.2 + +* Tue Oct 15 2024 Steve Cossette - 1:6.2.1-1 +- 6.2.1 + +* Mon Oct 14 2024 Jan Grulich - 1:6.2.0-2 +- Rebuild (qt6) + +* Thu Oct 03 2024 Marc Deop i Argemí - 1:6.2.0-1 +- 6.2.0 + +* Thu Sep 12 2024 Marc Deop i Argemí - 1:6.1.90-1 +- 6.1.90 + +* Tue Sep 10 2024 Marc Deop i Argemí - 1:6.1.5-1 +- 6.1.5 + +* Fri Aug 09 2024 Steve Cossette - 1:6.1.4-1 +- 6.1.4 + +* Wed Jul 24 2024 Marc Deop i Argemí - 1:6.1.3-3 +- rebuilt + +* Thu Jul 18 2024 Fedora Release Engineering - 1:6.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Tue Jul 16 2024 Marc Deop i Argemí - 1:6.1.3-1 +- 6.1.3 + +* Wed Jul 03 2024 Marc Deop i Argemí - 1:6.1.2-1 +- 6.1.2 + +* Tue Jun 25 2024 Marc Deop i Argemí - 1:6.1.1-1 +- 6.1.1 + +* Thu Jun 13 2024 Marc Deop i Argemí - 1:6.1.0-1 +- 6.1.0 + +* Fri May 24 2024 Marc Deop i Argemí - 1:6.0.90-1 +- 6.0.90 + +* Wed May 22 2024 Marc Deop i Argemí - 1:6.0.5-1 +- 6.0.5 + +* Tue Apr 16 2024 Marc Deop i Argemí - 1:6.0.4-1 +- 6.0.4 + +* Thu Apr 04 2024 Jan Grulich - 1:6.0.3-2 +- Rebuild (qt6) + +* Tue Mar 26 2024 Marc Deop i Argemí - 1:6.0.3-1 +- 6.0.3 + +* Tue Mar 12 2024 Marc Deop i Argemí - 1:6.0.2-1 +- 6.0.2 + +* Wed Mar 06 2024 Marc Deop i Argemí - 1:6.0.1-1 +- 6.0.1 + +* Wed Feb 21 2024 Marc Deop i Argemí - 1:6.0.0-1 +- 6.0.0 + +* Fri Feb 16 2024 Jan Grulich - 1:5.93.0-2 +- Rebuild (qt6) + +* Wed Jan 31 2024 Marc Deop i Argemí - 1:5.93.0-1 +- 5.93.0 + +* Thu Jan 25 2024 Fedora Release Engineering - 1:5.92.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Jan 21 2024 Fedora Release Engineering - 1:5.92.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Wed Jan 10 2024 Marc Deop i Argemí - 1:5.92.0-1 +- 5.92.0 + +* Thu Dec 21 2023 Marc Deop i Argemí - 1:5.91.0-1 +- 5.91.0 + +* Sun Dec 03 2023 Justin Zobel - 1:5.90.0-1 +- Update to 5.90.0 + +* Wed Nov 29 2023 Jan Grulich - 1:5.27.80-2 +- Rebuild (qt6) + +* Mon Nov 13 2023 Alessandro Astone - 1:5.27.80-1 +- 5.27.80 + +* Tue Oct 24 2023 Steve Cossette - 1:5.27.9-1 +- 5.27.9 + +* Tue Sep 12 2023 justin.zobel@gmail.com - 1:5.27.8-1 +- 5.27.8 + +* Tue Aug 01 2023 Marc Deop i Argemí - 1:5.27.7-1 +- 5.27.7 + +* Thu Jul 20 2023 Fedora Release Engineering - 1:5.27.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Sun Jun 25 2023 Marc Deop i Argemí - 1:5.27.6-1 +- 5.27.6 + +* Wed May 10 2023 Marc Deop i Argemí - 1:5.27.5-1 +- 5.27.5 + +* Tue Apr 04 2023 Marc Deop i Argemí - 1:5.27.4-1 +- 5.27.4 + +* Tue Mar 14 2023 Marc Deop i Argemí - 1:5.27.3-1 +- 5.27.3 + +* Tue Feb 28 2023 Marc Deop i Argemí - 1:5.27.2-1 +- 5.27.2 + +* Tue Feb 21 2023 Marc Deop i Argemí - 1:5.27.1.1-1 +- 5.27.1.1 + +* Tue Feb 21 2023 Marc Deop i Argemí - 1:5.27.1-1 +- 5.27.1 + +* Thu Feb 09 2023 Marc Deop - 1:5.27.0-1 +- 5.27.0 + +* Thu Jan 19 2023 Marc Deop - 1:5.26.90-1 +- 5.26.90 + +* Thu Jan 19 2023 Fedora Release Engineering - 1:5.26.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Thu Jan 05 2023 Justin Zobel - 1:5.26.5-1 +- Update to 5.26.5 + +* Tue Nov 29 2022 Marc Deop - 1:5.26.4-1 +- 5.26.4 + +* Wed Nov 09 2022 Marc Deop - 1:5.26.3-1 +- 5.26.3 + +* Wed Oct 26 2022 Marc Deop - 1:5.26.2-1 +- 5.26.2 + +* Tue Oct 18 2022 Marc Deop - 1:5.26.1-1 +- 5.26.1 + +* Thu Oct 06 2022 Marc Deop - 1:5.26.0-1 +- 5.26.0 + +* Sat Sep 17 2022 Marc Deop - 1:5.25.90-1 +- 5.25.90 + +* Wed Sep 07 2022 Marc Deop - 1:5.25.5-1 +- 5.25.5 + +* Wed Aug 03 2022 Justin Zobel - 5.25.4-1 +- Update to 5.25.4 + +* Thu Jul 21 2022 Fedora Release Engineering - 1:5.25.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Tue Jul 12 2022 Marc Deop - 1:5.25.3-1 +- 5.25.3 + +* Tue Jun 28 2022 Marc Deop - 1:5.25.2-1 +- 5.25.2 + +* Tue Jun 21 2022 Marc Deop - 1:5.25.1-1 +- 5.25.1 + +* Thu Jun 09 2022 Marc Deop - 1:5.25.0-1 +- 5.25.0 + +* Fri May 20 2022 Marc Deop - 1:5.24.90-1 +- 5.24.90 + +* Tue May 03 2022 Marc Deop - 1:5.24.5-1 +- 5.24.5 + +* Thu Mar 31 2022 Justin Zobel - 5.24.4-1 +- Update to 5.24.4 + +* Tue Mar 08 2022 Marc Deop - 1:5.24.3-1 +- 5.24.3 + +* Tue Feb 22 2022 Rex Dieter - 1:5.24.2-1 +- 5.24.2 + +* Tue Feb 15 2022 Marc Deop - 1:5.24.1-1 +- 5.24.1 + +* Thu Feb 03 2022 Marc Deop - 1:5.24.0-1 +- 5.24.0 + +* Thu Jan 20 2022 Fedora Release Engineering - 1:5.23.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Thu Jan 13 2022 Marc Deop - 1:5.23.90-1 +- 5.23.90 + +* Tue Jan 04 2022 Marc Deop - 1:5.23.5-1 +- 5.23.5 + +* Tue Dec 14 2021 Marc Deop - 1:5.23.4-1 +- 5.23.4 + +* Wed Nov 10 2021 Rex Dieter - 1:5.23.3-1 +- 5.23.3 + +* Tue Oct 26 2021 Rex Dieter - 1:5.23.2-1 +- 5.23.2 + +* Sat Oct 23 2021 Marc Deop - 1:5.23.1-1 +- 5.23.1 + +* Fri Oct 08 2021 Marc Deop - 1:5.23.0-1 +- 5.23.0 + +* Sun Sep 19 2021 Marc Deop - 1:5.22.90-2 +- Adjust Licenses + +* Fri Sep 17 2021 Marc Deop - 1:5.22.90-1 +- 5.22.90 + +* Tue Aug 31 2021 Jan Grulich - 1:5.22.5-1 +- 5.22.5 + +* Tue Jul 27 2021 Jan Grulich - 1:5.22.4-1 +- 5.22.4 + +* Thu Jul 22 2021 Fedora Release Engineering - 1:5.22.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Mon Jul 12 2021 Jan Grulich - 1:5.22.3-1 +- 5.22.3 + +* Tue Jun 22 2021 Jan Grulich - 1:5.22.2.1-1 +- 5.22.2.1 + +* Tue Jun 22 2021 Jan Grulich - 1:5.22.2-1 +- 5.22.2 + +* Tue Jun 15 2021 Jan Grulich - 1:5.22.1-1 +- 5.22.1 + +* Sun Jun 06 2021 Jan Grulich - 1:5.22.0-1 +- 5.22.0 + +* Fri May 14 2021 Rex Dieter - 1:5.21.90-1 +- 5.21.90 + +* Tue May 04 2021 Jan Grulich - 1:5.21.5-1 +- 5.21.5 + +* Tue Apr 06 2021 Jan Grulich - 1:5.21.4-1 +- 5.21.4 + +* Tue Mar 16 2021 Jan Grulich - 1:5.21.3-1 +- 5.21.3 + +* Tue Mar 02 2021 Jan Grulich - 1:5.21.2-1 +- 5.21.2 + +* Tue Feb 23 2021 Jan Grulich - 1:5.21.1-1 +- 5.21.1 + +* Thu Feb 11 2021 Jan Grulich - 1:5.21.0-1 +- 5.21.0 + +* Tue Jan 26 2021 Fedora Release Engineering - 1:5.20.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Thu Jan 21 2021 Jan Grulich - 1:5.20.90-1 +- 5.20.90 (beta) + +* Tue Jan 5 16:03:31 CET 2021 Jan Grulich - 1:5.20.5-1 +- 5.20.5 + +* Tue Dec 1 09:42:58 CET 2020 Jan Grulich - 1:5.20.4-1 +- 5.20.4 + +* Wed Nov 11 08:22:39 CET 2020 Jan Grulich - 1:5.20.3-1 +- 5.20.3 + +* Tue Oct 27 14:22:39 CET 2020 Jan Grulich - 1:5.20.2-1 +- 5.20.2 + +* Tue Oct 20 15:28:34 CEST 2020 Jan Grulich - 1:5.20.1-1 +- 5.20.1 + +* Sun Oct 11 19:50:03 CEST 2020 Jan Grulich - 1:5.20.0-1 +- 5.20.0 + +* Fri Sep 18 2020 Jan Grulich - 1:5.19.90-1 +- 5.19.90 + +* Tue Sep 01 2020 Jan Grulich - 1:5.19.5-1 +- 5.19.5 + +* Tue Jul 28 2020 Jan Grulich - 1:5.19.4-1 +- 5.19.4 + +* Tue Jul 28 2020 Fedora Release Engineering - 1:5.19.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue Jul 07 2020 Jan Grulich - 1:5.19.3-1 +- 5.19.3 + +* Tue Jun 23 2020 Jan Grulich - 1:5.19.2-1 +- 5.19.2 + +* Wed Jun 17 2020 Martin Kyral - 5.19.1-1 +- 5.19.1 + +* Tue Jun 9 2020 Martin Kyral - 5.19.0-1 +- 5.19.0 + +* Fri May 15 2020 Martin Kyral - 5.18.90-1 +- 5.18.90 + +* Tue May 05 2020 Jan Grulich - 1:5.18.5-1 +- 5.18.5 + +* Sat Apr 04 2020 Rex Dieter - 1:5.18.4.1-1 +- 5.18.4.1 + +* Tue Mar 31 2020 Jan Grulich - 1:5.18.4-1 +- 5.18.4 + +* Tue Mar 10 2020 Jan Grulich - 1:5.18.3-1 +- 5.18.3 + +* Tue Feb 25 2020 Jan Grulich - 1:5.18.2-1 +- 5.18.2 + +* Tue Feb 18 2020 Jan Grulich - 1:5.18.1-1 +- 5.18.1 + +* Tue Feb 11 2020 Jan Grulich - 1:5.18.0-1 +- 5.18.0 + +* Wed Jan 29 2020 Fedora Release Engineering - 1:5.17.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Jan 16 2020 Jan Grulich - 1:5.17.90-1 +- 5.17.90 + +* Wed Jan 08 2020 Jan Grulich - 1:5.17.5-1 +- 5.17.5 + +* Thu Dec 05 2019 Jan Grulich - 1:5.17.4-1 +- 5.17.4 + +* Wed Nov 13 2019 Martin Kyral - 5.17.3-1 +- 5.17.3 + +* Wed Oct 30 2019 Jan Grulich - 1:5.17.2-1 +- 5.17.2 + +* Wed Oct 23 2019 Jan Grulich - 1:5.17.1-1 +- 5.17.1 + +* Thu Oct 10 2019 Jan Grulich - 1:5.17.0-1 +- 5.17.0 + +* Fri Sep 20 2019 Martin Kyral - 5.16.90-1 +- 5.16.90 + +* Fri Sep 06 2019 Martin Kyral - 5.16.5-1 +- 5.16.5 + +* Tue Jul 30 2019 Martin Kyral - 5.16.4-1 +- 5.16.4 + +* Thu Jul 25 2019 Fedora Release Engineering - 1:5.16.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Wed Jul 10 2019 Martin Kyral - 5.16.3-1 +- 5.16.3 + +* Wed Jun 26 2019 Martin Kyral - 5.16.2-1 +- 5.16.2 + +* Tue Jun 18 2019 Rex Dieter - 1:5.16.1-1 +- 5.16.1 + +* Tue Jun 11 2019 Martin Kyral - 5.16.0-1 +- 5.16.0 + +* Thu May 16 2019 Martin Kyral - 5.15.90-1 +- 5.15.90 + +* Thu May 09 2019 Martin Kyral - 5.15.5-1 +- 5.15.5 + +* Wed Apr 03 2019 Rex Dieter - 1:5.15.4-1 +- 5.15.4 + +* Tue Mar 12 2019 Martin Kyral - 5.15.3-1 +- 5.15.3 + +* Tue Feb 26 2019 Rex Dieter - 1:5.15.2-1 +- 5.15.2 + +* Tue Feb 19 2019 Rex Dieter - 1:5.15.1-1 +- 5.15.1 + +* Wed Feb 13 2019 Martin Kyral - 5.15.0-1 +- 5.15.0 + +* Mon Feb 04 2019 Rex Dieter - 1:5.14.90-3 +- Add versioned runtime dep for libkscreen-qt5 +- use %%make_build + +* Fri Feb 01 2019 Fedora Release Engineering - 1:5.14.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sun Jan 20 2019 Martin Kyral - 5.14.90-1 +- 5.14.90 + +* Tue Nov 27 2018 Rex Dieter - 1:5.14.4-1 +- 5.14.4 + +* Thu Nov 08 2018 Martin Kyral - 5.14.3-1 +- 5.14.3 + +* Wed Oct 24 2018 Rex Dieter - 1:5.14.2-1 +- 5.14.2 + +* Tue Oct 16 2018 Rex Dieter - 1:5.14.1-1 +- 5.14.1 + +* Fri Oct 05 2018 Rex Dieter - 1:5.14.0-1 +- 5.14.0 + +* Fri Sep 14 2018 Martin Kyral - 5.13.90-1 +- 5.13.90 + +* Tue Sep 04 2018 Rex Dieter - 1:5.13.5-1 +- 5.13.5 + +* Thu Aug 02 2018 Rex Dieter - 1:5.13.4-1 +- 5.13.4 + +* Fri Jul 13 2018 Fedora Release Engineering - 1:5.13.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Jul 11 2018 Martin Kyral - 5.13.3-1 +- 5.13.3 + +* Mon Jul 09 2018 Martin Kyral - 5.13.2-1 +- 5.13.2 + +* Tue Jun 19 2018 Martin Kyral - 5.13.1-1 +- 5.13.1 + +* Sat Jun 09 2018 Rex Dieter - 1:5.13.0-1 +- 5.13.0 + +* Fri May 18 2018 Martin Kyral - 5.12.90-1 +- 5.12.90 + +* Tue May 01 2018 Rex Dieter - 1:5.12.5-1 +- 5.12.5 + +* Tue Mar 27 2018 Rex Dieter - 1:5.12.4-1 +- 5.12.4 + +* Tue Mar 06 2018 Rex Dieter - 1:5.12.3-1 +- 5.12.3 + +* Wed Feb 21 2018 Jan Grulich - 5.12.2-1 +- 5.12.2 + +* Tue Feb 13 2018 Jan Grulich - 5.12.1-1 +- 5.12.1 + +* Wed Feb 07 2018 Fedora Release Engineering - 1:5.12.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Fri Feb 02 2018 Jan Grulich - 5.12.0-1 +- 5.12.0 + +* Thu Jan 18 2018 Igor Gnatenko - 1:5.11.95-2 +- Remove obsolete scriptlets + +* Mon Jan 15 2018 Jan Grulich - 5.11.95-1 +- 5.11.95 + +* Tue Jan 02 2018 Rex Dieter - 1:5.11.5-1 +- 5.11.5 + +* Thu Nov 30 2017 Martin Kyral - 5.11.4-1 +- 5.11.4 + +* Wed Nov 08 2017 Rex Dieter - 1:5.11.3-1 +- 5.11.3 + +* Wed Oct 25 2017 Martin Kyral - 5.11.2-1 +- 5.11.2 + +* Tue Oct 17 2017 Rex Dieter - 1:5.11.1-1 +- 5.11.1 + +* Wed Oct 11 2017 Martin Kyral - 5.11.0-1 +- 5.11.0 + +* Thu Aug 24 2017 Rex Dieter - 1:5.10.5-1 +- 5.10.5 + +* Thu Aug 03 2017 Fedora Release Engineering - 1:5.10.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 1:5.10.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Jul 21 2017 Rex Dieter - 1:5.10.4-1 +- 5.10.4 + +* Tue Jun 27 2017 Rex Dieter - 1:5.10.3-1 +- 5.10.3 + +* Thu Jun 15 2017 Rex Dieter - 1:5.10.2-1 +- 5.10.2 + +* Tue Jun 06 2017 Rex Dieter - 1:5.10.1-1 +- 5.10.1 + +* Wed May 31 2017 Jan Grulich - 5.10.0-1 +- 5.10.0 + +* Wed Apr 26 2017 Rex Dieter - 1:5.9.5-1 +- 5.9.5 + +* Thu Mar 23 2017 Rex Dieter - 1:5.9.4-1 +- 5.9.4 + +* Sat Mar 04 2017 Rex Dieter - 1:5.9.3-2 +- rebuild + +* Wed Mar 01 2017 Jan Grulich - 5.9.3-1 +- 5.9.3 + +* Tue Feb 21 2017 Rex Dieter - 1:5.8.6-1 +- 5.8.6 + +* Fri Feb 10 2017 Fedora Release Engineering - 1:5.8.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Mon Jan 02 2017 Rex Dieter - 1:5.8.5-2 +- filter plugin provides + +* Wed Dec 28 2016 Rex Dieter - 1:5.8.5-1 +- 5.8.5 + +* Tue Nov 22 2016 Rex Dieter - 1:5.8.4-1 +- 5.8.4 + +* Tue Nov 01 2016 Rex Dieter - 1:5.8.3-1 +- 5.8.3 + +* Tue Oct 18 2016 Rex Dieter - 1:5.8.2-1 +- 5.8.2 + +* Tue Oct 11 2016 Rex Dieter - 1:5.8.1-1 +- 5.8.1 + +* Thu Sep 29 2016 Rex Dieter - 1:5.8.0-1 +- 5.8.0 + +* Thu Sep 22 2016 Rex Dieter - 1:5.7.95-1 +- 5.7.95 + +* Tue Sep 13 2016 Rex Dieter - 1:5.7.5-1 +- 5.7.5 + +* Tue Aug 23 2016 Rex Dieter - 1:5.7.4-1 +- 5.7.4 + +* Tue Aug 02 2016 Rex Dieter - 1:5.7.3-1 +- 5.7.3 + +* Tue Jul 19 2016 Rex Dieter - 1:5.7.2-1 +- 5.7.2 + +* Tue Jul 19 2016 Rex Dieter - 5.7.1-2 +- rebuild (qt5) + +* Tue Jul 12 2016 Rex Dieter - 1:5.7.1-1 +- 5.7.1 + +* Thu Jun 30 2016 Rex Dieter - 1:5.7.0-1 +- 5.7.0 + +* Sat Jun 25 2016 Rex Dieter - 1:5.6.95-1 +- 5.6.95 + +* Tue Jun 14 2016 Rex Dieter - 1:5.6.5-1 +- 5.6.5 + +* Sat May 14 2016 Rex Dieter - 1:5.6.4-1 +- 5.6.4 + +* Tue Apr 19 2016 Rex Dieter - 1:5.6.3-1 +- 5.6.3 + +* Sun Apr 10 2016 Rex Dieter - 1:5.6.2-1.1 +- rebuild + +* Sat Apr 09 2016 Rex Dieter - 1:5.6.2-1 +- 5.6.2 + +* Fri Apr 08 2016 Rex Dieter - 1:5.6.1-1 +- 5.6.1 + +* Tue Mar 01 2016 Daniel Vrátil - 5.5.5-1 +- Plasma 5.5.5 + +* Thu Feb 04 2016 Fedora Release Engineering - 1:5.5.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jan 27 2016 Daniel Vrátil - 5.5.4-1 +- Plasma 5.5.4 + +* Thu Jan 07 2016 Daniel Vrátil - 5.5.3-1 +- Plasma 5.5.3 + +* Thu Dec 31 2015 Rex Dieter - 1:5.5.2-1 +- 5.5.2 + +* Fri Dec 18 2015 Daniel Vrátil - 5.5.1-1 +- Plasma 5.5.1 + +* Thu Dec 03 2015 Daniel Vrátil - 5.5.0-1 +- Plasma 5.5.0 + +* Wed Nov 25 2015 Daniel Vrátil - 5.4.95-1 +- Plasma 5.4.95 + +* Thu Nov 05 2015 Daniel Vrátil - 5.4.3-1 +- Plasma 5.4.3 + +* Thu Oct 01 2015 Rex Dieter - 1:5.4.2-1 +- 5.4.2 + +* Wed Sep 09 2015 Rex Dieter - 1:5.4.1-1 +- 5.4.1 + +* Fri Aug 21 2015 Daniel Vrátil - 5.4.0-1 +- Plasma 5.4.0 + +* Thu Aug 13 2015 Daniel Vrátil - 5.3.95-1 +- Plasma 5.3.95 + +* Thu Jun 25 2015 Daniel Vrátil - 5.3.2-1 +- Plasma 5.3.2 + +* Wed Jun 17 2015 Fedora Release Engineering - 1:5.3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Tue May 26 2015 Daniel Vrátil - 5.3.1-1 +- Plasma 5.3.1 + +* Mon Apr 27 2015 Daniel Vrátil - 5.3.0-1 +- Plasma 5.3.0 + +* Wed Apr 22 2015 Daniel Vrátil - 5.2.95-1 +- Plasma 5.2.95 + +* Wed Apr 15 2015 Daniel Vrátil - 5.2.2-2 +- add upstream fix for RHBZ#1211881 + +* Fri Mar 20 2015 Daniel Vrátil - 5.2.2-1 +- Plasma 5.2.2 + +* Thu Mar 05 2015 Rex Dieter 5.2.1-3 +- Requires: qt5-qtgraphicaleffects (#1199084) + +* Fri Feb 27 2015 Daniel Vrátil - 5.2.1-2 +- Rebuild (GCC 5) + +* Tue Feb 24 2015 Daniel Vrátil - 5.2.1-1 +- Plasma 5.2.1 + +* Wed Jan 28 2015 Daniel Vrátil - 5.2.0-2 +- BR libkscreen-qt5-devel (it Provides kf5-kscreen-devel, but lets use the correct name) + +* Mon Jan 26 2015 Daniel Vrátil - 5.2.0-1 +- Plasma 5.2.0 + +* Wed Jan 14 2015 Daniel Vrátil - 5.1.95-2.beta.20150112git7a8460a +- BR kf5-kscreen-devel (renamed from libkscreen) + +* Mon Jan 12 2015 Daniel Vrátil - 5.1.95-1.beta.20150112git7a8460a +- Update to latest git snapshot + +* Thu Jan 08 2015 Daniel Vrátil - 5.1.2-2.20150108git0d70c77 +- Update to latest git snapshot + +* Wed Dec 17 2014 Daniel Vrátil - 5.1.2-2 +- Plasma 5.1.2 + +* Fri Nov 28 2014 Daniel Vrátil - 5.1.1-1.20141128gitccf52c4 +- Update to latest git snapshot + +* Fri Nov 07 2014 Daniel Vrátil - 5.1.1-1.20141107git88b2a3f +- Plasma 5.1.1 + +* Thu Oct 23 2014 Daniel Vrátil 1:5.0.92-20141023git + - kscreen 5.0.92 (git) + +* Fri Nov 22 2013 Dan Vrátil 1:1.0.2.1-1 + - kscreen 1:1.0.2.1-1 + +* Wed Nov 20 2013 Dan Vrátil 1:1.0.2-1 + - kscreen 1:1.0.2-1 + +* Thu Aug 01 2013 Dan Vrátil 1:1.0.1-1 + - kscreen 1:1.0.1-1 + +* Mon Jun 17 2013 Dan Vrátil 1:1.0-1 + - kscreen 1:1.0-1 + +* Thu May 02 2013 Dan Vrátil 1:0.0.92-1 + - update to 1:0.0.92-1 + +* Tue Apr 23 2013 Dan Vrátil 1:0.0.82.git20130424-1 + - dev git build + +* Mon Apr 08 2013 Dan Vrátil 1:0.0.81-2 + - Explicitely depend on the same version of libkscreen + +* Wed Mar 27 2013 Dan Vrátil 1:0.0.81-1 + - Update to 1:0.0.81-1 + +* Mon Jan 28 2013 Rex Dieter 1:0.0.71-3 +- drop Provides: kde-display-management, Conflicts: kded_randrmonitor + +* Thu Jan 24 2013 Dan Vrátil 1:0.0.71-2 + - add Provides and Conflicts fields so make sure radrmonitor and + kscreen never run side by side + +* Sun Jan 20 2013 Dan Vrátil 1:0.0.71-1 + - update to 0.0.71 - first official release + - install kscreen-console, which has been moved from libkscreen + - the KCM is now called kcm_kscreen + +* Wed Jan 09 2013 Dan Vrátil 0.9.0-5.20121228git + - Update description, we don't ship the Plasma applet yet + - Provides kde-display-management, a metapackage for KScreen and kded_randrmonitor + - Conflicts with kded_randrmonitor + +* Wed Jan 09 2013 Rex Dieter 0.9.0-4.20121228git +- BR: qjson-devel >= 0.8.1 +- License: GPLv2 or GPLv3 +- tighten %%files + +* Wed Jan 02 2013 Dan Vrátil 0.9.0-3.20121228git + - Added qjson-devel to BuildRequires + +* Fri Dec 28 2012 Dan Vrátil 0.9.0-2.20121228git + - Fixed URL + +* Fri Dec 28 2012 Dan Vrátil 0.9.0-1.20121228git + - Fixed versioning + - Added instructions how to obtain sources + - Removed 'rm -rf $RPM_BUILD_ROOT' + +* Wed Dec 26 2012 Dan Vrátil 20121226gitb31ab08-1 + - Initial SPEC diff --git a/sonic-screenlocker/sonic-screenlocker-6.6.5.2-fake-version-6.6.4.patch b/sonic-screenlocker/sonic-screenlocker-6.6.5.2-fake-version-6.6.4.patch new file mode 100644 index 0000000..f3c6c3b --- /dev/null +++ b/sonic-screenlocker/sonic-screenlocker-6.6.5.2-fake-version-6.6.4.patch @@ -0,0 +1,16 @@ +diff --color -Naur sonic-screenlocker.old/CMakeLists.txt sonic-screenlocker/CMakeLists.txt +--- sonic-screenlocker.old/CMakeLists.txt 2026-05-23 02:41:08.346994414 +0000 ++++ sonic-screenlocker/CMakeLists.txt 2026-05-23 02:43:15.704255243 +0000 +@@ -2,10 +2,10 @@ + + project(kscreenlocker) + set(CMAKE_C_STANDARD 99) +-set(PROJECT_VERSION "6.6.5") ++set(PROJECT_VERSION "6.6.4") + set(PROJECT_VERSION_MAJOR 6) + +-set(PROJECT_DEP_VERSION "6.6.5") ++set(PROJECT_DEP_VERSION "6.6.4") + set(QT_MIN_VERSION "6.10.0") + set(KF6_MIN_VERSION "6.22.0") + diff --git a/sonic-screenlocker/sonic-screenlocker.spec b/sonic-screenlocker/sonic-screenlocker.spec new file mode 100644 index 0000000..47983c0 --- /dev/null +++ b/sonic-screenlocker/sonic-screenlocker.spec @@ -0,0 +1,866 @@ +%define _disable_source_fetch 0 +%define debug_package %{nil} +%define oldname kscreenlocker + +Name: sonic-screenlocker +Version: 6.6.4 +Release: 1%{?dist} +Summary: Library and components for secure lock screen architecture + +License: BSD-3-Clause AND CC0-1.0 AND GPL-2.0-only AND GPL-2.0-or-later AND GPL-3.0-only AND LGPL-2.1-only AND LGPL-3.0-only AND (GPL-2.0-only OR GPL-3.0-only) AND (LGPL-2.1-only OR LGPL-3.0-only) +#URL: https://invent.kde.org/plasma/%{name} +URL: https://github.com/Sonic-DE/%{name} + +#Source0: https://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz +#Source1: https://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz.sig +Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz + +# help upgrades, split from plasma-workspace since 5.5 +Conflicts: plasma-workspace < 5.5 + +## upstream patches + +BuildRequires: cmake(LayerShellQt) + +BuildRequires: perl-generators +BuildRequires: qt6-qtbase-devel +BuildRequires: qt6-qtbase-private-devel +BuildRequires: cmake(Qt6Quick) + +BuildRequires: kf6-rpm-macros +BuildRequires: extra-cmake-modules + +BuildRequires: cmake(KF6Crash) +BuildRequires: cmake(KF6GlobalAccel) +BuildRequires: cmake(KF6I18n) +BuildRequires: cmake(KF6IdleTime) +BuildRequires: cmake(KF6KCMUtils) +BuildRequires: cmake(KF6KIO) +BuildRequires: cmake(KF6Notifications) +BuildRequires: cmake(KF6Screen) +BuildRequires: cmake(KF6Solid) +BuildRequires: cmake(KF6Svg) +BuildRequires: cmake(KF6XmlGui) +BuildRequires: cmake(KF6GuiAddons) +BuildRequires: cmake(KF6KirigamiPlatform) + +BuildRequires: libX11-devel +BuildRequires: xcb-util-keysyms-devel +BuildRequires: wayland-devel +BuildRequires: pkgconfig(xi) + +# Plasma +BuildRequires: cmake(PlasmaQuick) + +BuildRequires: libXcursor-devel +BuildRequires: pam-devel + +Conflicts: kscreenlocker + +%description +%{summary}. + +Patch30: sonic-screenlocker-6.6.5.2-fake-version-6.6.4.patch + +%package devel +Summary: Development files for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} +Conflicts: kscreenlocker +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + + +%prep +%autosetup -p1 + + +%build +%cmake_kf6 +%cmake_build + + +%install +%cmake_install + +%find_lang %{oldname} --with-qt --all-name + + +%files -f %{oldname}.lang +%license COPYING +%{_kf6_libdir}/libKScreenLocker.so.* +%{_kf6_datadir}/knotifications6/*.notifyrc +%{_libexecdir}/kscreenlocker_greet +%dir %{_kf6_datadir}/ksmserver/ +%{_kf6_datadir}/ksmserver/screenlocker/ +%{_kf6_datadir}/applications/kcm_screenlocker.desktop +%{_kf6_qtplugindir}/plasma/kcms/systemsettings/kcm_screenlocker.so +%{_kf6_datadir}/qlogging-categories6/kscreenlocker.categories + +%files devel +%{_kf6_libdir}/libKScreenLocker.so +%{_kf6_libdir}/cmake/ScreenSaverDBusInterface/ +%{_kf6_libdir}/cmake/KScreenLocker/ +%{_includedir}/KScreenLocker/ +%{_datadir}/dbus-1/interfaces/*.xml + + +%changelog +* Fri Apr 10 2026 Steve Cossette - 6.6.4-1 +- 6.6.4 + +* Tue Mar 17 2026 Steve Cossette - 6.6.3-1 +- 6.6.3 + +* Tue Mar 03 2026 Steve Cossette - 6.6.2-1 +- 6.6.2 + +* Tue Feb 24 2026 Steve Cossette - 6.6.1-1 +- 6.6.1 + +* Thu Feb 12 2026 Steve Cossette - 6.6.0-1 +- 6.6.0 + +* Tue Jan 27 2026 Steve Cossette - 6.5.91-1 +- 6.5.91 + +* Fri Jan 16 2026 Fedora Release Engineering - 6.5.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + +* Tue Jan 13 2026 farchord@gmail.com - 6.5.90-1 +- 6.5.90 + +* Tue Jan 13 2026 farchord@gmail.com - 6.5.5-1 +- 6.5.5 + +* Tue Dec 09 2025 Steve Cossette - 6.5.4-1 +- 6.5.4 + +* Tue Nov 18 2025 Steve Cossette - 6.5.3-1 +- 6.5.3 + +* Tue Nov 04 2025 Steve Cossette - 6.5.2-1 +- 6.5.2 + +* Tue Oct 28 2025 Steve Cossette - 6.5.1-1 +- 6.5.1 + +* Fri Oct 17 2025 Steve Cossette - 6.5.0-1 +- 6.5.0 + +* Thu Oct 02 2025 Steve Cossette - 6.4.91-1 +- 6.4.91 + +* Tue Sep 30 2025 Jan Grulich - 6.4.5-2 +- Rebuild (qt6) + +* Thu Sep 25 2025 Steve Cossette - 6.4.90-1 +- 6.4.90 + +* Tue Sep 16 2025 farchord@gmail.com - 6.4.5-1 +- 6.4.5 + +* Wed Aug 06 2025 Steve Cossette - 6.4.4-1 +- 6.4.4 + +* Thu Jul 24 2025 Fedora Release Engineering - 6.4.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + +* Tue Jul 15 2025 Steve Cossette - 6.4.3-1 +- 6.4.3 + +* Thu Jul 03 2025 Steve Cossette - 6.4.2-1 +- 6.4.2 + +* Tue Jun 24 2025 Marc Deop i Argemí - 6.4.1-1 +- 6.4.1 + +* Mon Jun 16 2025 Steve Cossette - 6.4.0-1 +- 6.4.0 + +* Sat May 31 2025 Marc Deop i Argemí - 6.3.91-2 +- Add signature file + +* Fri May 30 2025 Steve Cossette - 6.3.91-1 +- 6.3.91 + +* Thu May 15 2025 Marc Deop i Argemí - 6.3.90-1 +- 6.3.90 + +* Tue May 06 2025 Steve Cossette - 6.3.5-1 +- 6.3.5 + +* Mon Apr 14 2025 Jan Grulich - 6.3.4-2 +- Rebuild (qt6) + +* Wed Apr 02 2025 Marc Deop i Argemí - 6.3.4-1 +- 6.3.4 + +* Tue Mar 25 2025 Jan Grulich - 6.3.3-2 +- Rebuild (qt6) + +* Tue Mar 11 2025 Steve Cossette - 6.3.3-1 +- 6.3.3 + +* Tue Feb 25 2025 Steve Cossette - 6.3.2-1 +- 6.3.2 + +* Tue Feb 18 2025 Steve Cossette - 6.3.1-1 +- 6.3.1 + +* Thu Feb 06 2025 Marc Deop i Argemí - 6.3.0-1 +- 6.3.0 + +* Thu Jan 23 2025 Steve Cossette - 6.2.91-1 +- 6.2.91 + +* Fri Jan 17 2025 Fedora Release Engineering - 6.2.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + +* Thu Jan 09 2025 Steve Cossette - 6.2.90-1 +- Beta 6.2.90 + +* Tue Dec 31 2024 Steve Cossette - 6.2.5-1 +- 6.2.5 + +* Tue Nov 26 2024 Marc Deop i Argemí - 6.2.4-1 +- 6.2.4 + +* Tue Nov 05 2024 Steve Cossette - 6.2.3-1 +- 6.2.3 + +* Tue Oct 22 2024 Steve Cossette - 6.2.2-1 +- 6.2.2 + +* Tue Oct 15 2024 Steve Cossette - 6.2.1-1 +- 6.2.1 + +* Mon Oct 14 2024 Jan Grulich - 6.2.0-2 +- Rebuild (qt6) + +* Thu Oct 03 2024 Marc Deop i Argemí - 6.2.0-1 +- 6.2.0 + +* Thu Sep 12 2024 Marc Deop i Argemí - 6.1.90-1 +- 6.1.90 + +* Tue Sep 10 2024 Marc Deop i Argemí - 6.1.5-1 +- 6.1.5 + +* Fri Aug 09 2024 Steve Cossette - 6.1.4-1 +- 6.1.4 + +* Wed Jul 24 2024 Marc Deop i Argemí - 6.1.3-3 +- rebuilt + +* Thu Jul 18 2024 Fedora Release Engineering - 6.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Tue Jul 16 2024 Marc Deop i Argemí - 6.1.3-1 +- 6.1.3 + +* Wed Jul 03 2024 Marc Deop i Argemí - 6.1.2-1 +- 6.1.2 + +* Tue Jun 25 2024 Marc Deop i Argemí - 6.1.1-1 +- 6.1.1 + +* Thu Jun 13 2024 Marc Deop i Argemí - 6.1.0-1 +- 6.1.0 + +* Fri May 24 2024 Marc Deop i Argemí - 6.0.90-1 +- 6.0.90 + +* Wed May 22 2024 Marc Deop i Argemí - 6.0.5-1 +- 6.0.5 + +* Tue Apr 16 2024 Marc Deop i Argemí - 6.0.4-1 +- 6.0.4 + +* Thu Apr 04 2024 Jan Grulich - 6.0.3-2 +- Rebuild (qt6) + +* Tue Mar 26 2024 Marc Deop i Argemí - 6.0.3-1 +- 6.0.3 + +* Tue Mar 12 2024 Marc Deop i Argemí - 6.0.2-1 +- 6.0.2 + +* Wed Mar 06 2024 Marc Deop i Argemí - 6.0.1-1 +- 6.0.1 + +* Wed Feb 21 2024 Marc Deop i Argemí - 6.0.0-1 +- 6.0.0 + +* Fri Feb 16 2024 Jan Grulich - 5.93.0-2 +- Rebuild (qt6) + +* Wed Jan 31 2024 Marc Deop i Argemí - 5.93.0-1 +- 5.93.0 + +* Thu Jan 25 2024 Fedora Release Engineering - 5.92.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Jan 21 2024 Fedora Release Engineering - 5.92.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Wed Jan 10 2024 Marc Deop i Argemí - 5.92.0-1 +- 5.92.0 + +* Thu Dec 21 2023 Marc Deop i Argemí - 5.91.0-1 +- 5.91.0 + +* Sun Dec 03 2023 Justin Zobel - 5.90.0-1 +- Update to 5.90.0 + +* Wed Nov 29 2023 Jan Grulich - 5.27.80-2 +- Rebuild (qt6) + +* Mon Nov 13 2023 Alessandro Astone - 5.27.80-1 +- 5.27.80 + +* Tue Oct 24 2023 Steve Cossette - 5.27.9-1 +- 5.27.9 + +* Tue Sep 12 2023 justin.zobel@gmail.com - 5.27.8-1 +- 5.27.8 + +* Tue Aug 01 2023 Marc Deop i Argemí - 5.27.7-1 +- 5.27.7 + +* Thu Jul 20 2023 Fedora Release Engineering - 5.27.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Sun Jun 25 2023 Marc Deop i Argemí - 5.27.6-1 +- 5.27.6 + +* Wed May 10 2023 Marc Deop i Argemí - 5.27.5-1 +- 5.27.5 + +* Tue Apr 04 2023 Marc Deop i Argemí - 5.27.4-1 +- 5.27.4 + +* Tue Mar 14 2023 Marc Deop i Argemí - 5.27.3-1 +- 5.27.3 + +* Tue Feb 28 2023 Marc Deop i Argemí - 5.27.2-1 +- 5.27.2 + +* Tue Feb 21 2023 Marc Deop i Argemí - 5.27.1-1 +- 5.27.1 + +* Thu Feb 09 2023 Marc Deop - 5.27.0-1 +- 5.27.0 + +* Thu Jan 19 2023 Marc Deop - 5.26.90-1 +- 5.26.90 + +* Thu Jan 19 2023 Fedora Release Engineering - 5.26.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Thu Jan 05 2023 Justin Zobel - 5.26.5-1 +- Update to 5.26.5 + +* Tue Nov 29 2022 Marc Deop - 5.26.4-1 +- 5.26.4 + +* Wed Nov 09 2022 Marc Deop - 5.26.3-1 +- 5.26.3 + +* Wed Oct 26 2022 Marc Deop - 5.26.2-1 +- 5.26.2 + +* Tue Oct 18 2022 Marc Deop - 5.26.1-1 +- 5.26.1 + +* Thu Oct 06 2022 Marc Deop - 5.26.0-1 +- 5.26.0 + +* Sat Sep 17 2022 Marc Deop - 5.25.90-1 +- 5.25.90 + +* Wed Sep 07 2022 Marc Deop - 5.25.5-1 +- 5.25.5 + +* Wed Aug 03 2022 Justin Zobel - 5.25.4-1 +- Update to 5.25.4 + +* Thu Jul 21 2022 Fedora Release Engineering - 5.25.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Tue Jul 12 2022 Marc Deop - 5.25.3-1 +- 5.25.3 + +* Tue Jun 28 2022 Marc Deop - 5.25.2-1 +- 5.25.2 + +* Tue Jun 21 2022 Marc Deop - 5.25.1-1 +- 5.25.1 + +* Thu Jun 09 2022 Marc Deop - 5.25.0-1 +- 5.25.0 + +* Fri May 20 2022 Marc Deop - 5.24.90-1 +- 5.24.90 + +* Tue May 03 2022 Marc Deop - 5.24.5-1 +- 5.24.5 + +* Thu Mar 31 2022 Justin Zobel - 5.24.4-1 +- Update to 5.24.4 + +* Tue Mar 08 2022 Marc Deop - 5.24.3-1 +- 5.24.3 + +* Tue Feb 22 2022 Rex Dieter - 5.24.2-1 +- 5.24.2 + +* Tue Feb 15 2022 Marc Deop - 5.24.1-1 +- 5.24.1 + +* Thu Feb 03 2022 Marc Deop - 5.24.0-1 +- 5.24.0 + +* Thu Jan 20 2022 Fedora Release Engineering - 5.23.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Thu Jan 13 2022 Marc Deop - 5.23.90-1 +- 5.23.90 + +* Tue Jan 04 2022 Marc Deop - 5.23.5-1 +- 5.23.5 + +* Tue Dec 14 2021 Marc Deop - 5.23.4-1 +- 5.23.4 + +* Wed Nov 10 2021 Rex Dieter - 5.23.3-1 +- 5.23.3 + +* Tue Oct 26 2021 Rex Dieter - 5.23.2-1 +- 5.23.2 + +* Sat Oct 23 2021 Marc Deop - 5.23.1-1 +- 5.23.1 + +* Fri Oct 08 2021 Marc Deop - 5.23.0-1 +- 5.23.0 + +* Fri Sep 17 2021 Marc Deop - 5.22.90-1 +- 5.22.90 + +* Tue Aug 31 2021 Jan Grulich - 5.22.5-1 +- 5.22.5 + +* Tue Jul 27 2021 Jan Grulich - 5.22.4-1 +- 5.22.4 + +* Thu Jul 22 2021 Fedora Release Engineering - 5.22.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Mon Jul 12 2021 Jan Grulich - 5.22.3-1 +- 5.22.3 + +* Tue Jun 22 2021 Jan Grulich - 5.22.2.1-1 +- 5.22.2.1 + +* Tue Jun 22 2021 Jan Grulich - 5.22.2-1 +- 5.22.2 + +* Tue Jun 15 2021 Jan Grulich - 5.22.1-1 +- 5.22.1 + +* Sun Jun 06 2021 Jan Grulich - 5.22.0-1 +- 5.22.0 + +* Thu May 13 2021 Rex Dieter - 5.21.90-1 +- 5.21.90 + +* Tue May 04 2021 Jan Grulich - 5.21.5-1 +- 5.21.5 + +* Tue Apr 06 2021 Jan Grulich - 5.21.4-1 +- 5.21.4 + +* Tue Mar 16 2021 Jan Grulich - 5.21.3-1 +- 5.21.3 + +* Tue Mar 02 2021 Jan Grulich - 5.21.2-1 +- 5.21.2 + +* Tue Feb 23 2021 Jan Grulich - 5.21.1-1 +- 5.21.1 + +* Thu Feb 11 2021 Jan Grulich - 5.21.0-1 +- 5.21.0 + +* Tue Jan 26 2021 Fedora Release Engineering - 5.20.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Thu Jan 21 2021 Jan Grulich - 5.20.90-1 +- 5.20.90 (beta) + +* Tue Jan 5 16:03:30 CET 2021 Jan Grulich - 5.20.5-1 +- 5.20.5 + +* Tue Dec 1 09:42:58 CET 2020 Jan Grulich - 5.20.4-1 +- 5.20.4 + +* Wed Nov 11 08:22:39 CET 2020 Jan Grulich - 5.20.3-1 +- 5.20.3 + +* Tue Oct 27 14:22:36 CET 2020 Jan Grulich - 5.20.2-1 +- 5.20.2 + +* Tue Oct 20 15:28:31 CEST 2020 Jan Grulich - 5.20.1-1 +- 5.20.1 + +* Sun Oct 11 19:50:03 CEST 2020 Jan Grulich - 5.20.0-1 +- 5.20.0 + +* Fri Sep 18 2020 Jan Grulich - 5.19.90-1 +- 5.19.90 + +* Tue Sep 01 2020 Jan Grulich - 5.19.5-1 +- 5.19.5 + +* Tue Jul 28 2020 Jan Grulich - 5.19.4-1 +- 5.19.4 + +* Tue Jul 28 2020 Fedora Release Engineering - 5.19.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue Jul 07 2020 Jan Grulich - 5.19.3-1 +- 5.19.3 + +* Tue Jun 23 2020 Jan Grulich - 5.19.2-1 +- 5.19.2 + +* Wed Jun 17 2020 Martin Kyral - 5.19.1-1 +- 5.19.1 + +* Tue Jun 9 2020 Martin Kyral - 5.19.0-1 +- 5.19.0 + +* Fri May 15 2020 Martin Kyral - 5.18.90-1 +- 5.18.90 + +* Tue May 05 2020 Jan Grulich - 5.18.5-1 +- 5.18.5 + +* Sat Apr 04 2020 Rex Dieter - 5.18.4.1-1 +- 5.18.4.1 + +* Tue Mar 31 2020 Jan Grulich - 5.18.4-1 +- 5.18.4 + +* Tue Mar 10 2020 Jan Grulich - 5.18.3-1 +- 5.18.3 + +* Tue Feb 25 2020 Jan Grulich - 5.18.2-1 +- 5.18.2 + +* Tue Feb 18 2020 Jan Grulich - 5.18.1-1 +- 5.18.1 + +* Tue Feb 11 2020 Jan Grulich - 5.18.0-1 +- 5.18.0 + +* Wed Jan 29 2020 Fedora Release Engineering - 5.17.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Jan 16 2020 Jan Grulich - 5.17.90-1 +- 5.17.90 + +* Wed Jan 08 2020 Jan Grulich - 5.17.5-1 +- 5.17.5 + +* Thu Dec 05 2019 Jan Grulich - 5.17.4-1 +- 5.17.4 + +* Wed Nov 13 2019 Martin Kyral - 5.17.3-1 +- 5.17.3 + +* Wed Oct 30 2019 Jan Grulich - 5.17.2-1 +- 5.17.2 + +* Wed Oct 23 2019 Jan Grulich - 5.17.1-1 +- 5.17.1 + +* Thu Oct 10 2019 Jan Grulich - 5.17.0-1 +- 5.17.0 + +* Fri Sep 20 2019 Martin Kyral - 5.16.90-1 +- 5.16.90 + +* Fri Sep 06 2019 Martin Kyral - 5.16.5-1 +- 5.16.5 + +* Tue Jul 30 2019 Martin Kyral - 5.16.4-1 +- 5.16.4 + +* Thu Jul 25 2019 Fedora Release Engineering - 5.16.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Wed Jul 10 2019 Martin Kyral - 5.16.3-1 +- 5.16.3 + +* Wed Jun 26 2019 Martin Kyral - 5.16.2-1 +- 5.16.2 + +* Tue Jun 18 2019 Rex Dieter - 5.16.1-1 +- 5.16.1 + +* Tue Jun 11 2019 Martin Kyral - 5.16.0-1 +- 5.16.0 + +* Thu May 16 2019 Martin Kyral - 5.15.90-1 +- 5.15.90 + +* Thu May 09 2019 Martin Kyral - 5.15.5-1 +- 5.15.5 + +* Wed Apr 03 2019 Rex Dieter - 5.15.4-1 +- 5.15.4 + +* Tue Mar 12 2019 Martin Kyral - 5.15.3-1 +- 5.15.3 + +* Thu Feb 28 2019 Pete Walter - 5.15.2-2 +- Update wayland deps + +* Tue Feb 26 2019 Rex Dieter - 5.15.2-1 +- 5.15.2 + +* Tue Feb 19 2019 Rex Dieter - 5.15.1-1 +- 5.15.1 + +* Wed Feb 13 2019 Martin Kyral - 5.15.0-1 +- 5.15.0 + +* Fri Feb 01 2019 Fedora Release Engineering - 5.14.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sun Jan 20 2019 Martin Kyral - 5.14.90-1 +- 5.14.90 + +* Tue Nov 27 2018 Rex Dieter - 5.14.4-1 +- 5.14.4 + +* Thu Nov 08 2018 Martin Kyral - 5.14.3-1 +- 5.14.3 + +* Wed Oct 24 2018 Rex Dieter - 5.14.2-1 +- 5.14.2 + +* Tue Oct 16 2018 Rex Dieter - 5.14.1-1 +- 5.14.1 + +* Fri Oct 05 2018 Rex Dieter - 5.14.0-1 +- 5.14.0 + +* Fri Sep 14 2018 Martin Kyral - 5.13.90-1 +- 5.13.90 + +* Tue Sep 04 2018 Rex Dieter - 5.13.5-1 +- 5.13.5 + +* Thu Aug 02 2018 Rex Dieter - 5.13.4-1 +- 5.13.4 + +* Fri Jul 13 2018 Fedora Release Engineering - 5.13.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Jul 11 2018 Martin Kyral - 5.13.3-1 +- 5.13.3 + +* Mon Jul 09 2018 Martin Kyral - 5.13.2-1 +- 5.13.2 + +* Tue Jun 19 2018 Martin Kyral - 5.13.1-1 +- 5.13.1 + +* Sat Jun 09 2018 Rex Dieter - 5.13.0-1 +- 5.13.0 + +* Fri May 18 2018 Martin Kyral - 5.12.90-1 +- 5.12.90 + +* Tue May 01 2018 Rex Dieter - 5.12.5-1 +- 5.12.5 + +* Tue Mar 27 2018 Rex Dieter - 5.12.4-1 +- 5.12.4 + +* Tue Mar 06 2018 Rex Dieter - 5.12.3-1 +- 5.12.3 + +* Wed Feb 21 2018 Jan Grulich - 5.12.2-1 +- 5.12.2 + +* Tue Feb 13 2018 Jan Grulich - 5.12.1-1 +- 5.12.1 + +* Wed Feb 07 2018 Fedora Release Engineering - 5.12.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Fri Feb 02 2018 Jan Grulich - 5.12.0-1 +- 5.12.0 + +* Mon Jan 15 2018 Jan Grulich - 5.11.95-1 +- 5.11.95 + +* Tue Jan 02 2018 Rex Dieter - 5.11.5-1 +- 5.11.5 + +* Thu Nov 30 2017 Martin Kyral - 5.11.4-1 +- 5.11.4 + +* Wed Nov 08 2017 Rex Dieter - 5.11.3-1 +- 5.11.3 + +* Wed Oct 25 2017 Martin Kyral - 5.11.2-1 +- 5.11.2 + +* Tue Oct 17 2017 Rex Dieter - 5.11.1-1 +- 5.11.1 + +* Wed Oct 11 2017 Martin Kyral - 5.11.0-1 +- 5.11.0 + +* Fri Sep 01 2017 Rex Dieter - 5.10.5.1-1 +- 5.10.5.1, drop redundant kf5-filesystem dep + +* Thu Aug 24 2017 Rex Dieter - 5.10.5-1 +- 5.10.5 + +* Thu Aug 03 2017 Fedora Release Engineering - 5.10.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 5.10.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Jul 21 2017 Rex Dieter - 5.10.4-1 +- 5.10.4 + +* Tue Jun 27 2017 Rex Dieter - 5.10.3-1 +- 5.10.3 + +* Thu Jun 15 2017 Rex Dieter - 5.10.2-1 +- 5.10.2 + +* Tue Jun 06 2017 Rex Dieter - 5.10.1-1 +- 5.10.1 + +* Wed May 31 2017 Jan Grulich - 5.10.0-1 +- 5.10.0 + +* Wed Apr 26 2017 Rex Dieter - 5.9.5-1 +- 5.9.5 + +* Thu Mar 23 2017 Rex Dieter - 5.9.4-1 +- 5.9.4 + +* Sat Mar 04 2017 Rex Dieter - 5.9.3-2 +- rebuild + +* Wed Mar 01 2017 Jan Grulich - 5.9.3-1 +- 5.9.3 + +* Fri Feb 24 2017 Rex Dieter - 5.8.6-2 +- update URL + +* Tue Feb 21 2017 Rex Dieter - 5.8.6-1 +- 5.8.6 + +* Fri Feb 10 2017 Fedora Release Engineering - 5.8.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Wed Dec 28 2016 Rex Dieter - 5.8.5-1 +- 5.8.5 + +* Tue Nov 22 2016 Rex Dieter - 5.8.4-1 +- 5.8.4 + +* Tue Nov 01 2016 Rex Dieter - 5.8.3-1 +- 5.8.3 + +* Tue Oct 18 2016 Rex Dieter - 5.8.2-1 +- 5.8.2 + +* Tue Oct 11 2016 Rex Dieter - 5.8.1-1 +- 5.8.1 + +* Thu Sep 29 2016 Rex Dieter - 5.8.0-1 +- 5.8.0 + +* Thu Sep 22 2016 Rex Dieter - 5.7.95-1 +- 5.7.95 + +* Tue Sep 13 2016 Rex Dieter - 5.7.5-1 +- 5.7.5 + +* Tue Aug 23 2016 Rex Dieter - 5.7.4-1 +- 5.7.4 + +* Tue Aug 02 2016 Rex Dieter - 5.7.3-1 +- 5.7.3 + +* Tue Jul 19 2016 Rex Dieter - 5.7.2-1 +- 5.7.2 + +* Tue Jul 12 2016 Rex Dieter - 5.7.1-1 +- 5.7.1 + +* Thu Jun 30 2016 Rex Dieter - 5.7.0-1 +- 5.7.0 + +* Sat Jun 25 2016 Rex Dieter - 5.6.95-1 +- 5.6.95 + +* Tue Jun 14 2016 Rex Dieter - 5.6.5-1 +- 5.6.5 + +* Sat May 14 2016 Rex Dieter - 5.6.4-1 +- 5.6.4 + +* Tue Apr 19 2016 Rex Dieter - 5.6.3-1 +- 5.6.3 + +* Sat Apr 09 2016 Rex Dieter - 5.6.2-1 +- 5.6.2 + +* Fri Apr 08 2016 Rex Dieter - 5.6.1-1 +- 5.6.1 + +* Tue Mar 15 2016 Rex Dieter 5.5.5-2 +- Conflicts: plasma-workspace < 5.5 + +* Tue Mar 01 2016 Daniel Vrátil - 5.5.5-1 +- Plasma 5.5.5 + +* Wed Feb 10 2016 Rex Dieter 5.5.4-3 +- cosmetics +- pull in upstream fixes +- polish dir ownership +- enable XInput support + +* Thu Feb 04 2016 Fedora Release Engineering - 5.5.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jan 27 2016 Daniel Vrátil - 5.5.4-1 +- Plasma 5.5.4 + +* Thu Jan 07 2016 Daniel Vrátil - 5.5.3-1 +- Plasma 5.5.3 + +* Thu Dec 31 2015 Rex Dieter - 5.5.2-1 +- 5.5.2 + +* Fri Dec 18 2015 Daniel Vrátil - 5.5.1-1 +- Plasma 5.5.1 + +* Thu Dec 03 2015 Daniel Vrátil - 5.5.0-1 +- Plasma 5.5.0 + +* Wed Nov 25 2015 Daniel Vrátil - 5.4.95-1 +- Plasma 5.4.95 diff --git a/sonic-silver-theme/sonic-silver-theme.spec b/sonic-silver-theme/sonic-silver-theme.spec new file mode 100644 index 0000000..5ad55a2 --- /dev/null +++ b/sonic-silver-theme/sonic-silver-theme.spec @@ -0,0 +1,89 @@ +Name: sonic-silver-theme +Version: 6.6.0 +Release: 1 +Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz +Summary: Highly customizable theming for the Sonic Desktop Environment +URL: https://github.com/Sonic-DE/silver-theme +License: GPL-2.0-or-later +#Group: Graphical Desktop/KDE + +#BuildSystem: cmake +#BuildOption: -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF -DKDE_INSTALL_USE_QT_SYS_PATHS=ON + +BuildRequires: extra-cmake-modules +BuildRequires: appstream +BuildRequires: qt5-qtbase-devel +BuildRequires: cmake(KF5Config) +BuildRequires: cmake(KF5ConfigWidgets) +BuildRequires: cmake(KF5CoreAddons) +BuildRequires: cmake(KF5FrameworkIntegration) +BuildRequires: cmake(KF5GuiAddons) +BuildRequires: cmake(KF5I18n) +BuildRequires: cmake(KF5IconThemes) +BuildRequires: cmake(KF5Kirigami2) +BuildRequires: cmake(KF5WindowSystem) +BuildRequires: cmake(Qt5DBus) +BuildRequires: cmake(Qt5Quick) +BuildRequires: cmake(Qt5Widgets) +BuildRequires: cmake(Qt5X11Extras) +BuildRequires: cmake(KDecoration3) +BuildRequires: cmake(KF6ColorScheme) +BuildRequires: cmake(KF6Config) +BuildRequires: cmake(KF6CoreAddons) +BuildRequires: cmake(KF6FrameworkIntegration) +BuildRequires: cmake(KF6GuiAddons) +BuildRequires: cmake(KF6I18n) +BuildRequires: cmake(KF6IconThemes) +BuildRequires: cmake(KF6KCMUtils) +BuildRequires: cmake(KF6KirigamiPlatform) +BuildRequires: cmake(KF6WindowSystem) +BuildRequires: cmake(Qt6Core) +BuildRequires: cmake(Qt6DBus) +BuildRequires: cmake(Qt6Quick) +BuildRequires: cmake(Qt6Svg) +BuildRequires: cmake(Qt6Widgets) +BuildRequires: cmake(Qt6Xml) +BuildRequires: cmake(Qt6QmlCore) +BuildRequires: cmake(Qt6QmlNetwork) +BuildRequires: cmake(Qt6ExamplesAssetDownloaderPrivate) +BuildRequires: pkgconfig(Qt6QmlAssetDownloader) +BuildRequires: qt6-qtbase-theme-gtk3 + +%description +Highly customizable theming for the KDE Plasma desktop. Install, and enable in System Settings -> Appearance -> Global Themes (or individually in Window Decorations, Application Style and Icons). + +%prep +%autosetup -p1 + +%build +%cmake_kf6 \ +%if %[(0%{?rhel} >= 10)] + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release \ + -DBUILD_TESTING=OFF \ + -DKDE_INSTALL_USE_QT_SYS_PATHS=ON +%endif + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + +%files +%{_bindir}/%{name}-settings +%{_libdir}/cmake/Klassy +%{_libdir}/libklassycommon* +%{_libdir}/qt5/plugins/styles/klassy5.so +%{_libdir}/qt6/plugins/kstyle_config/klassystyleconfig.so +%{_libdir}/qt6/plugins/org.kde.kdecoration3.kcm/kcm_klassydecoration.so +%{_libdir}/qt6/plugins/org.kde.kdecoration3.kcm/klassydecoration +%{_libdir}/qt6/plugins/org.kde.kdecoration3/org.kde.klassy.so +%{_libdir}/qt6/plugins/styles/klassy6.so +%{_iconsdir}/klassy-dark +%{_iconsdir}/klassy +%{_iconsdir}/hicolor/scalable/apps/klassy-settings.svgz +%{_datadir}/kstyle/themes/%{name}.themerc +%{_datadir}/plasma/desktoptheme/klassy +%{_datadir}/plasma/layout-templates/* +%{_datadir}/plasma/look-and-feel/* +%{_datadir}/applications/kcm_klassydecoration.desktop +%{_datadir}/applications/klassy* +%{_datadir}/color-schemes/Klassy* diff --git a/sonic-sysguard-library/sonic-sysguard-library.spec b/sonic-sysguard-library/sonic-sysguard-library.spec new file mode 100644 index 0000000..b704e36 --- /dev/null +++ b/sonic-sysguard-library/sonic-sysguard-library.spec @@ -0,0 +1,1014 @@ +%define _disable_source_fetch 0 +%define debug_package %{nil} + +#Name: libksysguard +Name: sonic-sysguard-library +Summary: Library for managing processes running on the system +Version: 6.6.4 +Release: 1%{?dist} + +License: BSD-2-Clause AND BSD-3-Clause AND CC0-1.0 AND GPL-2.0-only AND GPL-2.0-or-later AND GPL-3.0-only AND LGPL-2.0-or-later AND LGPL-2.1-only AND LGPL-3.0-only AND (GPL-2.0-only OR GPL-3.0-only) AND (LGPL-2.1-only OR LGPL-3.0-only) +#URL: https://invent.kde.org/plasma/%{name} +URL: https://github.com/Sonic-DE/%{name} + +#Source0: http://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz +#Source1: http://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz.sig +Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz + +BuildRequires: extra-cmake-modules +BuildRequires: kf6-rpm-macros +# kf6 required +BuildRequires: cmake(KF6CoreAddons) +BuildRequires: cmake(KF6Config) +BuildRequires: cmake(KF6I18n) +BuildRequires: cmake(KF6WindowSystem) +BuildRequires: cmake(KF6Completion) +BuildRequires: cmake(KF6Auth) +BuildRequires: cmake(KF6WidgetsAddons) +BuildRequires: cmake(KF6IconThemes) +BuildRequires: cmake(KF6ConfigWidgets) +BuildRequires: cmake(KF6Service) +BuildRequires: cmake(KF6GlobalAccel) +BuildRequires: cmake(KF6KIO) +BuildRequires: cmake(KF6Declarative) +BuildRequires: cmake(KF6NewStuff) +# qt6 required +BuildRequires: qt6-qttools-devel +BuildRequires: cmake(Qt6DBus) +BuildRequires: cmake(Qt6Network) +BuildRequires: cmake(Qt6Widgets) +BuildRequires: cmake(Qt6Core5Compat) + +# Qt6 Web packages do not exist on those architectures. +%ifarch %{qt6_qtwebengine_arches} +BuildRequires: cmake(Qt6WebEngineWidgets) +BuildRequires: cmake(Qt6WebChannel) +%endif + +BuildRequires: pkgconfig(libdrm) +BuildRequires: pkgconfig(libpcap) +BuildRequires: pkgconfig(libnl-3.0) pkgconfig(libnl-route-3.0) +BuildRequires: libcap-devel +BuildRequires: libXres-devel +BuildRequires: lm_sensors-devel +BuildRequires: zlib-devel + +Obsoletes: kf5-ksysguard < 5.1.95 +Provides: kf5-ksysguard = %{version}-%{release} + +Requires: %{name}-common = %{version}-%{release} + +## upgrade path, https://bugzilla.redhat.com/show_bug.cgi?id=1963354 +Conflicts: ksysguard-backend < 5.21.90 + +Conflicts: libksysguard + +%description +KSysGuard library provides API to read and manage processes +running on the system. + +%package devel +Summary: Development files for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: cmake(Qt6Core) +Requires: cmake(Qt6Network) +Requires: cmake(Qt6Widgets) +Requires: cmake(KF6Config) +Requires: cmake(KF6I18n) +Requires: cmake(KF6IconThemes) +Obsoletes: kf5-ksysguard-devel < 5.1.95 +Provides: kf5-ksysguard-devel = %{version}-%{release} +Conflicts: kde-workspace-devel < 1:4.11.16-11 +Conflicts: libksysguard-devel + +%package common +Summary: Runtime data files shared by libksysguard and ksysguard-libs +Conflicts: libksysguard < 5.2.1-2 +Conflicts: ksysguard < 5.2 +Conflicts: libksysguard-common +%description common +%{summary}. + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + +%prep +%autosetup -p1 + +%build +%cmake_kf6 -DENABLE_KAUTH_HELPER:BOOL=%{!?flatpak:ON}%{?flatpak:OFF} +%cmake_build + +%install +%cmake_install +%find_lang ksysguard_qt6 --with-qt --with-kde --all-name + +%files -f ksysguard_qt6.lang +%license LICENSES +%{_kf6_libdir}/libprocesscore.so.* +%{_kf6_libdir}/libKSysGuardFormatter.so* +%{_kf6_libdir}/libKSysGuardSensors.so* +%{_kf6_libdir}/libKSysGuardSensorFaces.so* +%{_kf6_datadir}/ksysguard/ +%{_kf6_datadir}/qlogging-categories6/libksysguard.categories +%{_qt6_qmldir}/org/kde/ksysguard/ +%{_kf6_libdir}/libKSysGuardSystemStats.so.* +%{_qt6_plugindir}/ksysguard/ +%dir %{_libexecdir}/ksysguard +%caps(cap_net_raw=ep) %{_libexecdir}/ksysguard/ksgrd_network_helper +%{_kf6_datadir}/dbus-1/interfaces/org.kde.ksystemstats1.xml +%{_qt6_plugindir}/kf6/packagestructure/ksysguard_sensorface.so + +%files common +%if %{undefined flatpak} +%{_kf6_libexecdir}/kauth/ksysguardprocesslist_helper +%{_datadir}/dbus-1/system.d/org.kde.ksysguard.processlisthelper.conf +%{_datadir}/dbus-1/system-services/org.kde.ksysguard.processlisthelper.service +%{_datadir}/polkit-1/actions/org.kde.ksysguard.processlisthelper.policy +%endif +%{_datadir}/knsrcfiles/* + +%files devel +%{_includedir}/ksysguard/ +%{_kf6_libdir}/libprocesscore.so +%{_kf6_libdir}/cmake/KSysGuard/ +%{_kf6_libdir}/libKSysGuardSystemStats.so + + +%changelog +* Fri Apr 10 2026 Steve Cossette - 6.6.4-1 +- 6.6.4 + +* Tue Mar 17 2026 Steve Cossette - 6.6.3-1 +- 6.6.3 + +* Tue Mar 03 2026 Steve Cossette - 6.6.2-1 +- 6.6.2 + +* Tue Feb 24 2026 Steve Cossette - 6.6.1-1 +- 6.6.1 + +* Thu Feb 12 2026 Steve Cossette - 6.6.0-1 +- 6.6.0 + +* Tue Jan 27 2026 Steve Cossette - 6.5.91-1 +- 6.5.91 + +* Fri Jan 16 2026 Fedora Release Engineering - 6.5.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + +* Tue Jan 13 2026 farchord@gmail.com - 6.5.90-1 +- 6.5.90 + +* Tue Jan 13 2026 farchord@gmail.com - 6.5.5-1 +- 6.5.5 + +* Tue Dec 09 2025 Steve Cossette - 6.5.4-1 +- 6.5.4 + +* Tue Nov 18 2025 Steve Cossette - 6.5.3-1 +- 6.5.3 + +* Tue Nov 04 2025 Steve Cossette - 6.5.2-1 +- 6.5.2 + +* Tue Oct 28 2025 Steve Cossette - 6.5.1-1 +- 6.5.1 + +* Fri Oct 17 2025 Steve Cossette - 6.5.0-1 +- 6.5.0 + +* Thu Oct 02 2025 Steve Cossette - 6.4.91-1 +- 6.4.91 + +* Thu Sep 25 2025 Steve Cossette - 6.4.90-1 +- 6.4.90 + +* Tue Sep 16 2025 farchord@gmail.com - 6.4.5-1 +- 6.4.5 + +* Wed Aug 06 2025 Steve Cossette - 6.4.4-1 +- 6.4.4 + +* Thu Jul 24 2025 Fedora Release Engineering - 6.4.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + +* Tue Jul 15 2025 Steve Cossette - 6.4.3-1 +- 6.4.3 + +* Thu Jul 03 2025 Steve Cossette - 6.4.2-1 +- 6.4.2 + +* Tue Jun 24 2025 Marc Deop i Argemí - 6.4.1-1 +- 6.4.1 + +* Mon Jun 16 2025 Steve Cossette - 6.4.0-1 +- 6.4.0 + +* Sat May 31 2025 Marc Deop i Argemí - 6.3.91-2 +- Add signature file + +* Fri May 30 2025 Steve Cossette - 6.3.91-1 +- 6.3.91 + +* Thu May 15 2025 Marc Deop i Argemí - 6.3.90-1 +- 6.3.90 + +* Tue May 06 2025 Steve Cossette - 6.3.5-1 +- 6.3.5 + +* Mon Apr 14 2025 Jan Grulich - 6.3.4-2 +- Rebuild (qt6) + +* Wed Apr 02 2025 Marc Deop i Argemí - 6.3.4-1 +- 6.3.4 + +* Tue Mar 25 2025 Jan Grulich - 6.3.3-2 +- Rebuild (qt6) + +* Tue Mar 11 2025 Steve Cossette - 6.3.3-1 +- 6.3.3 + +* Tue Feb 25 2025 Steve Cossette - 6.3.2-1 +- 6.3.2 + +* Tue Feb 18 2025 Steve Cossette - 6.3.1-1 +- 6.3.1 + +* Thu Feb 06 2025 Marc Deop i Argemí - 6.3.0-1 +- 6.3.0 + +* Thu Jan 23 2025 Steve Cossette - 6.2.91-1 +- 6.2.91 + +* Fri Jan 17 2025 Fedora Release Engineering - 6.2.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + +* Thu Jan 09 2025 Steve Cossette - 6.2.90-1 +- Beta 6.2.90 + +* Tue Dec 31 2024 Steve Cossette - 6.2.5-1 +- 6.2.5 + +* Tue Nov 26 2024 Marc Deop i Argemí - 6.2.4-1 +- 6.2.4 + +* Mon Nov 18 2024 Pavel Solovev - 6.2.3-2 +- Fix per-process network usage reporting (rhbz#2270096) + +* Tue Nov 05 2024 Steve Cossette - 6.2.3-1 +- 6.2.3 + +* Tue Oct 22 2024 Steve Cossette - 6.2.2-1 +- 6.2.2 + +* Tue Oct 15 2024 Steve Cossette - 6.2.1-1 +- 6.2.1 + +* Mon Oct 14 2024 Jan Grulich - 6.2.0-2 +- Rebuild (qt6) + +* Thu Oct 03 2024 Marc Deop i Argemí - 6.2.0-1 +- 6.2.0 + +* Thu Sep 12 2024 Marc Deop i Argemí - 6.1.90-1 +- 6.1.90 + +* Tue Sep 10 2024 Marc Deop i Argemí - 6.1.5-1 +- 6.1.5 + +* Fri Aug 09 2024 Steve Cossette - 6.1.4-1 +- 6.1.4 + +* Wed Jul 24 2024 Marc Deop i Argemí - 6.1.3-3 +- rebuilt + +* Thu Jul 18 2024 Fedora Release Engineering - 6.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Tue Jul 16 2024 Marc Deop i Argemí - 6.1.3-1 +- 6.1.3 + +* Wed Jul 03 2024 Marc Deop i Argemí - 6.1.2-1 +- 6.1.2 + +* Tue Jun 25 2024 Marc Deop i Argemí - 6.1.1-1 +- 6.1.1 + +* Thu Jun 13 2024 Marc Deop i Argemí - 6.1.0-1 +- 6.1.0 + +* Fri May 24 2024 Marc Deop i Argemí - 6.0.90-1 +- 6.0.90 + +* Wed May 22 2024 Marc Deop i Argemí - 6.0.5-1 +- 6.0.5 + +* Tue Apr 16 2024 Marc Deop i Argemí - 6.0.4-1 +- 6.0.4 + +* Thu Apr 04 2024 Jan Grulich - 6.0.3-3 +- Rebuild (qt6) + +* Thu Apr 04 2024 Jan Grulich - 6.0.3-2 +- Rebuild (qt6) + +* Tue Mar 26 2024 Marc Deop i Argemí - 6.0.3-1 +- 6.0.3 + +* Tue Mar 12 2024 Marc Deop i Argemí - 6.0.2-1 +- 6.0.2 + +* Wed Mar 06 2024 Marc Deop i Argemí - 6.0.1-1 +- 6.0.1 + +* Wed Feb 21 2024 Marc Deop i Argemí - 6.0.0-1 +- 6.0.0 + +* Fri Feb 16 2024 Jan Grulich - 5.93.0-2 +- Rebuild (qt6) + +* Wed Jan 31 2024 Marc Deop i Argemí - 5.93.0-1 +- 5.93.0 + +* Thu Jan 25 2024 Fedora Release Engineering - 5.92.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Jan 21 2024 Fedora Release Engineering - 5.92.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Wed Jan 10 2024 Marc Deop i Argemí - 5.92.0-1 +- 5.92.0 + +* Thu Dec 21 2023 Marc Deop i Argemí - 5.91.0-1 +- 5.91.0 + +* Sun Dec 03 2023 Justin Zobel - 5.90.0-1 +- Update to 5.90.0 + +* Wed Nov 29 2023 Jan Grulich - 5.27.80-2 +- Rebuild (qt6) + +* Sun Nov 12 2023 Steve Cossette - 5.27.80-1 +- 5.27.80 + +* Tue Oct 24 2023 Steve Cossette - 5.27.9-1 +- 5.27.9 + +* Tue Sep 12 2023 justin.zobel@gmail.com - 5.27.8-1 +- 5.27.8 + +* Tue Aug 01 2023 Marc Deop i Argemí - 5.27.7-1 +- 5.27.7 + +* Thu Jul 20 2023 Fedora Release Engineering - 5.27.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Sun Jun 25 2023 Marc Deop i Argemí - 5.27.6-1 +- 5.27.6 + +* Wed May 10 2023 Marc Deop i Argemí - 5.27.5-1 +- 5.27.5 + +* Tue Apr 04 2023 Marc Deop i Argemí - 5.27.4-1 +- 5.27.4 + +* Tue Mar 14 2023 Marc Deop i Argemí - 5.27.3-1 +- 5.27.3 + +* Tue Feb 28 2023 Marc Deop i Argemí - 5.27.2-1 +- 5.27.2 + +* Sun Feb 26 2023 Marc Deop i Argemí - 5.27.1-2 +- Add missing BuildRequires + +* Tue Feb 21 2023 Marc Deop i Argemí - 5.27.1-1 +- 5.27.1 + +* Thu Feb 09 2023 Marc Deop - 5.27.0-1 +- 5.27.0 + +* Thu Jan 19 2023 Marc Deop - 5.26.90-1 +- 5.26.90 + +* Thu Jan 19 2023 Fedora Release Engineering - 5.26.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Thu Jan 05 2023 Justin Zobel - 5.26.5-1 +- Update to 5.26.5 + +* Tue Nov 29 2022 Marc Deop - 5.26.4-1 +- 5.26.4 + +* Wed Nov 09 2022 Marc Deop - 5.26.3-1 +- 5.26.3 + +* Wed Oct 26 2022 Marc Deop - 5.26.2-1 +- 5.26.2 + +* Tue Oct 18 2022 Marc Deop - 5.26.1-1 +- 5.26.1 + +* Thu Oct 06 2022 Marc Deop - 5.26.0-1 +- 5.26.0 + +* Sat Sep 17 2022 Marc Deop - 5.25.90-1 +- 5.25.90 + +* Wed Sep 07 2022 Marc Deop - 5.25.5-1 +- 5.25.5 + +* Wed Aug 03 2022 Justin Zobel - 5.25.4-1 +- Update to 5.25.4 + +* Thu Jul 21 2022 Fedora Release Engineering - 5.25.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Tue Jul 12 2022 Marc Deop - 5.25.3-1 +- 5.25.3 + +* Tue Jun 28 2022 Marc Deop - 5.25.2-1 +- 5.25.2 + +* Tue Jun 21 2022 Marc Deop - 5.25.1-1 +- 5.25.1 + +* Thu Jun 09 2022 Marc Deop - 5.25.0-1 +- 5.25.0 + +* Fri May 20 2022 Marc Deop - 5.24.90-1 +- 5.24.90 + +* Tue May 03 2022 Marc Deop - 5.24.5-1 +- 5.24.5 + +* Thu Mar 31 2022 Justin Zobel - 5.24.4-1 +- Update to 5.24.4 + +* Tue Mar 08 2022 Marc Deop - 5.24.3-1 +- 5.24.3 + +* Tue Feb 22 2022 Rex Dieter - 5.24.2-1 +- 5.24.2 + +* Tue Feb 15 2022 Marc Deop - 5.24.1-1 +- 5.24.1 + +* Thu Feb 03 2022 Marc Deop - 5.24.0-1 +- 5.24.0 + +* Thu Jan 20 2022 Fedora Release Engineering - 5.23.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Thu Jan 13 2022 Marc Deop - 5.23.90-1 +- 5.23.90 + +* Tue Jan 04 2022 Marc Deop - 5.23.5-1 +- 5.23.5 + +* Tue Dec 14 2021 Marc Deop - 5.23.4-1 +- 5.23.4 + +* Wed Nov 10 2021 Rex Dieter - 5.23.3-1 +- 5.23.3 + +* Tue Oct 26 2021 Rex Dieter - 5.23.2-1 +- 5.23.2 + +* Sat Oct 23 2021 Marc Deop - 5.23.1-1 +- 5.23.1 + +* Fri Oct 08 2021 Marc Deop - 5.23.0-1 +- 5.23.0 + +* Sun Sep 19 2021 Marc Deop - 5.22.90-2 +- Add BuildRequires lm_sensors-devel +- Adjust license + +* Fri Sep 17 2021 Marc Deop - 5.22.90-1 +- 5.22.90 + +* Tue Aug 31 2021 Jan Grulich - 5.22.5-1 +- 5.22.5 + +* Tue Jul 27 2021 Jan Grulich - 5.22.4-1 +- 5.22.4 + +* Thu Jul 22 2021 Fedora Release Engineering - 5.22.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Mon Jul 12 2021 Jan Grulich - 5.22.3-1 +- 5.22.3 + +* Tue Jun 22 2021 Jan Grulich - 5.22.2.1-1 +- 5.22.2.1 + +* Tue Jun 22 2021 Jan Grulich - 5.22.2-1 +- 5.22.2 + +* Tue Jun 15 2021 Jan Grulich - 5.22.1-1 +- 5.22.1 + +* Sun Jun 06 2021 Jan Grulich - 5.22.0-1 +- 5.22.0 + +* Sun May 30 2021 Rex Dieter - 5.21.90-4 +- Conflicts: ksysguard-backend < 5.21.90 (#1963354) + +* Tue May 18 2021 Rex Dieter - 5.21.90-3 +- drop Obsoletes/Provides: ksystemstats + +* Sun May 16 2021 Rex Dieter - 5.21.90-2 +- Obsoletes/Provides: ksystemstats + +* Thu May 13 2021 Rex Dieter - 5.21.90-1 +- 5.21.90 + +* Tue May 04 2021 Jan Grulich - 5.21.5-1 +- 5.21.5 + +* Tue Apr 06 2021 Jan Grulich - 5.21.4-1 +- 5.21.4 + +* Tue Mar 16 2021 Jan Grulich - 5.21.3.1-1 +- 5.21.3.1 + +* Tue Mar 16 2021 Jan Grulich - 5.21.3-1 +- 5.21.3 + +* Tue Mar 02 2021 Jan Grulich - 5.21.2-1 +- 5.21.2 + +* Tue Feb 23 2021 Jan Grulich - 5.21.1-1 +- 5.21.1 + +* Thu Feb 11 2021 Rex Dieter - 5.21.0-3 +- -devel: add Qt5, KF5 deps from KSysGuardConfig.cmake + +* Thu Feb 11 2021 Rex Dieter - 5.21.0-2 +- .spec cleanup +- fix dir ownership + +* Thu Feb 11 2021 Jan Grulich - 5.21.0-1 +- 5.21.0 + +* Tue Jan 26 2021 Fedora Release Engineering - 5.20.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Thu Jan 21 2021 Jan Grulich - 5.20.90-1 +- 5.20.90 (beta) + +* Tue Jan 5 16:03:31 CET 2021 Jan Grulich - 5.20.5-1 +- 5.20.5 + +* Tue Dec 1 09:42:59 CET 2020 Jan Grulich - 5.20.4-1 +- 5.20.4 + +* Wed Nov 11 08:22:41 CET 2020 Jan Grulich - 5.20.3-1 +- 5.20.3 + +* Tue Oct 27 14:23:13 CET 2020 Jan Grulich - 5.20.2-1 +- 5.20.2 + +* Tue Oct 20 15:29:05 CEST 2020 Jan Grulich - 5.20.1-1 +- 5.20.1 + +* Sun Oct 11 19:50:03 CEST 2020 Jan Grulich - 5.20.0-1 +- 5.20.0 + +* Fri Sep 18 2020 Jan Grulich - 5.19.90-1 +- 5.19.90 + +* Tue Sep 01 2020 Jan Grulich - 5.19.5-1 +- 5.19.5 + +* Tue Jul 28 2020 Jan Grulich - 5.19.4-1 +- 5.19.4 + +* Tue Jul 28 2020 Fedora Release Engineering - 5.19.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue Jul 07 2020 Jan Grulich - 5.19.3-1 +- 5.19.3 + +* Tue Jun 23 2020 Jan Grulich - 5.19.2-1 +- 5.19.2 + +* Wed Jun 17 2020 Martin Kyral - 5.19.1-1 +- 5.19.1 + +* Thu Jun 11 2020 Marie Loise Nolden - 5.19.0.1-1 +- 5.19.0.1 + +* Tue Jun 9 2020 Martin Kyral - 5.19.0-1 +- 5.19.0 + +* Fri May 15 2020 Martin Kyral - 5.18.90-1 +- 5.18.90 + +* Tue May 05 2020 Jan Grulich - 5.18.5-1 +- 5.18.5 + +* Sat Apr 04 2020 Rex Dieter - 5.18.4.1-1 +- 5.18.4.1 + +* Tue Mar 31 2020 Jan Grulich - 5.18.4-1 +- 5.18.4 + +* Tue Mar 10 2020 Jan Grulich - 5.18.3-1 +- 5.18.3 + +* Tue Feb 25 2020 Jan Grulich - 5.18.2-1 +- 5.18.2 + +* Tue Feb 18 2020 Jan Grulich - 5.18.1-1 +- 5.18.1 + +* Tue Feb 11 2020 Jan Grulich - 5.18.0-1 +- 5.18.0 + +* Wed Jan 29 2020 Fedora Release Engineering - 5.17.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Jan 16 2020 Jan Grulich - 5.17.90-1 +- 5.17.90 + +* Wed Jan 08 2020 Jan Grulich - 5.17.5-1 +- 5.17.5 + +* Thu Dec 05 2019 Jan Grulich - 5.17.4-1 +- 5.17.4 + +* Wed Nov 13 2019 Martin Kyral - 5.17.3-1 +- 5.17.3 + +* Wed Oct 30 2019 Jan Grulich - 5.17.2-1 +- 5.17.2 + +* Wed Oct 23 2019 Jan Grulich - 5.17.1-1 +- 5.17.1 + +* Thu Oct 10 2019 Jan Grulich - 5.17.0-1 +- 5.17.0 + +* Fri Sep 20 2019 Martin Kyral - 5.16.90-1 +- 5.16.90 + +* Fri Sep 06 2019 Martin Kyral - 5.16.5-1 +- 5.16.5 + +* Tue Jul 30 2019 Martin Kyral - 5.16.4-1 +- 5.16.4 + +* Thu Jul 25 2019 Fedora Release Engineering - 5.16.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Wed Jul 10 2019 Martin Kyral - 5.16.3-1 +- 5.16.3 + +* Wed Jun 26 2019 Martin Kyral - 5.16.2-1 +- 5.16.2 + +* Tue Jun 18 2019 Rex Dieter - 5.16.1-1 +- 5.16.1 + +* Tue Jun 11 2019 Martin Kyral - 5.16.0-1 +- 5.16.0 + +* Thu May 16 2019 Martin Kyral - 5.15.90-1 +- 5.15.90 + +* Thu May 09 2019 Martin Kyral - 5.15.5-1 +- 5.15.5 + +* Mon Apr 15 2019 Rex Dieter - 5.15.4-2 +- refresh build deps, add qtwebengine (#1699687) + +* Wed Apr 03 2019 Rex Dieter - 5.15.4-1 +- 5.15.4 + +* Tue Mar 12 2019 Martin Kyral - 5.15.3-1 +- 5.15.3 + +* Tue Feb 26 2019 Rex Dieter - 5.15.2-1 +- 5.15.2 + +* Tue Feb 19 2019 Rex Dieter - 5.15.1-1 +- 5.15.1 + +* Wed Feb 13 2019 Martin Kyral - 5.15.0-1 +- 5.15.0 + +* Fri Feb 01 2019 Fedora Release Engineering - 5.14.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sun Jan 20 2019 Martin Kyral - 5.14.90-1 +- 5.14.90 + +* Tue Nov 27 2018 Rex Dieter - 5.14.4-1 +- 5.14.4 + +* Thu Nov 08 2018 Martin Kyral - 5.14.3-1 +- 5.14.3 + +* Wed Oct 24 2018 Rex Dieter - 5.14.2-1 +- 5.14.2 + +* Tue Oct 16 2018 Rex Dieter - 5.14.1-1 +- 5.14.1 + +* Fri Oct 05 2018 Rex Dieter - 5.14.0-1 +- 5.14.0 + +* Fri Sep 14 2018 Martin Kyral - 5.13.90-1 +- 5.13.90 + +* Tue Sep 04 2018 Rex Dieter - 5.13.5-1 +- 5.13.5 + +* Thu Aug 02 2018 Rex Dieter - 5.13.4-1 +- 5.13.4 + +* Fri Jul 13 2018 Fedora Release Engineering - 5.13.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Jul 11 2018 Martin Kyral - 5.13.3-1 +- 5.13.3 + +* Mon Jul 09 2018 Martin Kyral - 5.13.2-1 +- 5.13.2 + +* Tue Jun 19 2018 Martin Kyral - 5.13.1-1 +- 5.13.1 + +* Sat Jun 09 2018 Rex Dieter - 5.13.0-1 +- 5.13.0 + +* Fri May 18 2018 Martin Kyral - 5.12.90-1 +- 5.12.90 + +* Tue May 01 2018 Rex Dieter - 5.12.5-1 +- 5.12.5 + +* Tue Mar 27 2018 Rex Dieter - 5.12.4-1 +- 5.12.4 + +* Tue Mar 06 2018 Rex Dieter - 5.12.3-1 +- 5.12.3 + +* Wed Feb 21 2018 Jan Grulich - 5.12.2-1 +- 5.12.2 + +* Tue Feb 13 2018 Jan Grulich - 5.12.1-1 +- 5.12.1 + +* Wed Feb 07 2018 Fedora Release Engineering - 5.12.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Fri Feb 02 2018 Jan Grulich - 5.12.0-1 +- 5.12.0 + +* Mon Jan 15 2018 Jan Grulich - 5.11.95-1 +- 5.11.95 + +* Tue Jan 02 2018 Rex Dieter - 5.11.5-1 +- 5.11.5 + +* Thu Nov 30 2017 Martin Kyral - 5.11.4-1 +- 5.11.4 + +* Wed Nov 08 2017 Rex Dieter - 5.11.3-1 +- 5.11.3 + +* Wed Oct 25 2017 Martin Kyral - 5.11.2-1 +- 5.11.2 + +* Tue Oct 17 2017 Rex Dieter - 5.11.1-1 +- 5.11.1 + +* Wed Oct 11 2017 Martin Kyral - 5.11.0-1 +- 5.11.0 + +* Thu Aug 24 2017 Rex Dieter - 5.10.5-1 +- 5.10.5 + +* Thu Aug 03 2017 Fedora Release Engineering - 5.10.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 5.10.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Jul 21 2017 Rex Dieter - 5.10.4-1 +- 5.10.4 + +* Tue Jun 27 2017 Rex Dieter - 5.10.3-1 +- 5.10.3 + +* Thu Jun 15 2017 Rex Dieter - 5.10.2-1 +- 5.10.2 + +* Tue Jun 06 2017 Rex Dieter - 5.10.1-1 +- 5.10.1 + +* Wed May 31 2017 Jan Grulich - 5.10.0-1 +- 5.10.0 + +* Wed Apr 26 2017 Rex Dieter - 5.9.5-1 +- 5.9.5 + +* Thu Mar 23 2017 Rex Dieter - 5.9.4-1 +- 5.9.4 + +* Sat Mar 04 2017 Rex Dieter - 5.9.3-2 +- rebuild + +* Wed Mar 01 2017 Jan Grulich - 5.9.3-1 +- 5.9.3 + +* Tue Feb 21 2017 Rex Dieter - 5.8.6-1 +- 5.8.6 + +* Fri Feb 10 2017 Fedora Release Engineering - 5.8.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Wed Dec 28 2016 Rex Dieter - 5.8.5-1 +- 5.8.5 + +* Tue Nov 22 2016 Rex Dieter - 5.8.4-1 +- 5.8.4 + +* Tue Nov 01 2016 Rex Dieter - 5.8.3-1 +- 5.8.3 + +* Tue Oct 18 2016 Rex Dieter - 5.8.2-1 +- 5.8.2 + +* Tue Oct 11 2016 Rex Dieter - 5.8.1-1 +- 5.8.1 + +* Thu Sep 29 2016 Rex Dieter - 5.8.0-1 +- 5.8.0 + +* Thu Sep 22 2016 Rex Dieter - 5.7.95-1 +- 5.7.95 + +* Tue Sep 13 2016 Rex Dieter - 5.7.5-1 +- 5.7.5 + +* Tue Aug 23 2016 Rex Dieter - 5.7.4-1 +- 5.7.4 + +* Tue Aug 02 2016 Rex Dieter - 5.7.3-1 +- 5.7.3 + +* Tue Jul 19 2016 Rex Dieter - 5.7.2-1 +- 5.7.2 + +* Tue Jul 12 2016 Rex Dieter - 5.7.1-1 +- 5.7.1 + +* Thu Jun 30 2016 Rex Dieter - 5.7.0-1 +- 5.7.0 + +* Sat Jun 25 2016 Rex Dieter - 5.6.95-1 +- 5.6.95 + +* Tue Jun 14 2016 Rex Dieter - 5.6.5-1 +- 5.6.5 + +* Sat May 14 2016 Rex Dieter - 5.6.4-1 +- 5.6.4 + +* Tue Apr 19 2016 Rex Dieter - 5.6.3-1 +- 5.6.3 + +* Sat Apr 09 2016 Rex Dieter - 5.6.2-1 +- 5.6.2 + +* Fri Apr 08 2016 Rex Dieter - 5.6.1-1 +- 5.6.1 + +* Tue Mar 01 2016 Daniel Vrátil - 5.5.5-1 +- Plasma 5.5.5 + +* Thu Feb 04 2016 Fedora Release Engineering - 5.5.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jan 27 2016 Daniel Vrátil - 5.5.4-1 +- Plasma 5.5.4 + +* Thu Jan 07 2016 Daniel Vrátil - 5.5.3-1 +- Plasma 5.5.3 + +* Thu Dec 31 2015 Rex Dieter - 5.5.2-1 +- 5.5.2 + +* Fri Dec 18 2015 Daniel Vrátil - 5.5.1-1 +- Plasma 5.5.1 + +* Thu Dec 03 2015 Daniel Vrátil - 5.5.0-1 +- Plasma 5.5.0 + +* Wed Nov 25 2015 Daniel Vrátil - 5.4.95-1 +- Plasma 5.4.95 + +* Thu Nov 05 2015 Daniel Vrátil - 5.4.3-1 +- Plasma 5.4.3 + +* Thu Oct 01 2015 Rex Dieter - 5.4.2-1 +- 5.4.2 + +* Thu Oct 01 2015 Rex Dieter 5.4.1-2 +- cosmetics + +* Wed Sep 09 2015 Rex Dieter - 5.4.1-1 +- 5.4.1 + +* Fri Aug 21 2015 Daniel Vrátil - 5.4.0-1 +- Plasma 5.4.0 + +* Thu Aug 13 2015 Daniel Vrátil - 5.3.95-1 +- Plasma 5.3.95 + +* Thu Jun 25 2015 Daniel Vrátil - 5.3.2-1 +- Plasma 5.3.2 + +* Wed Jun 17 2015 Fedora Release Engineering - 5.3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Tue May 26 2015 Daniel Vrátil - 5.3.1-1 +- Plasma 5.3.1 + +* Mon Apr 27 2015 Daniel Vrátil - 5.3.0-1 +- Plasma 5.3.0 + +* Wed Apr 22 2015 Daniel Vrátil - 5.2.95-1 +- Plasma 5.2.95 + +* Sat Apr 04 2015 Rex Dieter +- 5.2.2-2 +- -common: Conflicts: ksysguard < 5.2 (#1185851) +- -devel: Conflicts: kde-workspace-devel < 1:4.11.16-11 + +* Fri Mar 20 2015 Daniel Vrátil - 5.2.2-1 +- Plasma 5.2.2 + +* Fri Feb 27 2015 Daniel Vrátil - 5.2.1-2 +- Rebuild (GCC 5) + +* Wed Feb 25 2015 Daniel Vrátil - 5.2.1-2 +- split shared parts needed by both KF5 and KDE4 versions into -common + +* Tue Feb 24 2015 Daniel Vrátil - 5.2.1-1 +- Plasma 5.2.1 + +* Mon Feb 02 2015 Rex Dieter 5.2.0-2 +- bump Obsoletes: kf5-ksysguard < 5.1.95 + +* Mon Jan 26 2015 Daniel Vrátil - 5.2.0-1 +- Plasma 5.2.0 + +* Wed Jan 21 2015 Jan Grulich - 5.1.95-3 +- Obsolete kf5-ksysguard + +* Tue Jan 20 2015 Jan Grulich - 5.1.95-2 +- Rename to libksysguard + +* Mon Jan 12 2015 Daniel Vrátil - 5.1.95-1 +- Plasma 5.1.95 Beta + +* Mon Jan 05 2015 Jan Grulich - 5.1.1-2 +- Better URL + Use make install instead of make_install macro + +* Fri Nov 07 2014 Daniel Vrátil - 5.1.1-1 +- Plasma 5.1.1 + +* Tue Oct 14 2014 Daniel Vrátil - 5.1.0.1-1 +- Plasma 5.1.0.1 + +* Thu Oct 09 2014 Daniel Vrátil - 5.1.0-1 +- Plasma 5.1.0 + +* Tue Sep 16 2014 Daniel Vrátil - 5.0.2-1 +- Plasma 5.0.2 + +* Sun Aug 10 2014 Daniel Vrátil - 5.0.1-1 +- Plasma 5.0.1 + +* Wed Jul 16 2014 Daniel Vrátil - 5.0.0-1 +- Plasma 5.0.0 + +* Wed Jun 11 2014 Daniel Vrátil - 4.97.0-2.20140611git887e946 +- Update to latest git snapshot + + +* Sat May 17 2014 Daniel Vrátil - 4.96.0-2.20140514git87ae01f +- Fix Source + +* Wed May 14 2014 Daniel Vrátil - 4.96.0-2.20140611gitf7a2bbe +- Update to latest git snapshot + +* Fri Apr 25 2014 Daniel Vrátil 4.95.0-1.20140425git1908ec8 +- Initial package diff --git a/sonic-system-info/sonic-system-info.spec b/sonic-system-info/sonic-system-info.spec new file mode 100644 index 0000000..b27d714 --- /dev/null +++ b/sonic-system-info/sonic-system-info.spec @@ -0,0 +1,974 @@ +%define _disable_source_fetch 0 +%define debug_package %{nil} +%define oldname kinfocenter + +# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval +ExcludeArch: %{ix86} + +Name: sonic-system-info + +Version: 6.6.4 +Release: 1%{?dist} +Summary: KDE Info Center + +License: BSD-2-Clause AND BSD-3-Clause AND CC0-1.0 AND FSFAP AND GPL-2.0-only AND GPL-2.0-or-later AND GPL-3.0-only AND LGPL-2.1-or-later AND LGPL-3.0-only AND (GPL-2.0-only OR GPL-3.0-only) AND (LGPL-2.1-only OR LGPL-3.0-only) +#URL: https://invent.kde.org/plasma/% +URL: https://github.com/Sonic-DE/%{name} + +#Source0: http://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz +#Source1: http://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz.sig +Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz + +BuildRequires: qt6-qtbase-devel + +BuildRequires: kf6-rpm-macros +BuildRequires: extra-cmake-modules + +BuildRequires: cmake(KF6Completion) +BuildRequires: cmake(KF6Config) +BuildRequires: cmake(KF6ConfigWidgets) +BuildRequires: cmake(KF6CoreAddons) +BuildRequires: cmake(KF6I18n) +BuildRequires: cmake(KF6IconThemes) +BuildRequires: cmake(KF6KCMUtils) +BuildRequires: cmake(KF6KIO) +BuildRequires: cmake(KF6Service) +BuildRequires: cmake(KF6Solid) +BuildRequires: cmake(KF6WindowSystem) +BuildRequires: cmake(KF6XmlGui) +BuildRequires: cmake(KF6Declarative) +BuildRequires: cmake(KF6Package) +BuildRequires: cmake(KF6DocTools) +BuildRequires: mesa-libGL-devel +BuildRequires: mesa-libGLES-devel +BuildRequires: mesa-libEGL-devel +BuildRequires: mesa-libGLU-devel +BuildRequires: libX11-devel +BuildRequires: pciutils-devel +BuildRequires: pkgconfig(libusb-1.0) +BuildRequires: desktop-file-utils +BuildRequires: libappstream-glib +BuildRequires: pkgconfig(libudev) +%ifnarch s390 s390x +BuildRequires: libraw1394-devel +%endif + +BuildRequires: cmake(KF6Kirigami2) +Requires: kf6-kirigami2%{?_isa} + +# runtime query of usb.ids, oui.txt +Requires: hwdata + +# Runtime dependencies +Requires: plasma-systemsettings +Requires: wayland-utils +%ifarch %{ix86} x86_64 aarch64 +Requires: dmidecode +%endif +Requires: vulkan-tools +Requires: xdpyinfo +Requires: egl-utils +Requires: fwupd +Requires: aha +Requires: clinfo +Requires: pulseaudio-utils +Requires: libdisplay-info-tools + +# When kinfocenter was split out from kde-workspace +Conflicts: kde-workspace < 4.11.15-3 +Conflicts: kinfocenter + +%description +%{summary}. + + +%prep +%autosetup -p1 + + +%build +%cmake_kf6 +%cmake_build + + +%install +%cmake_install +%find_lang %{name} --all-name --with-html + +%check +desktop-file-validate %{buildroot}%{_datadir}/applications/org.kde.kinfocenter.desktop +desktop-file-validate %{buildroot}%{_datadir}/applications/kcm_about-distro.desktop +desktop-file-validate %{buildroot}%{_datadir}/applications/kcm_energyinfo.desktop +# commented out until upstream fixes a duplicate entries problem +#appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/*.appdata.xml + +%files -f %{name}.lang +%{_datadir}/applications/kcm_energyinfo.desktop +%{_bindir}/kinfocenter +%{_kf6_libdir}/libKInfoCenterInternal.so +%{_kf6_qtplugindir}/plasma/kcms/*.so +%{_kf6_qtplugindir}/plasma/kcms/kinfocenter/*.so +%{_datadir}/metainfo/org.kde.kinfocenter.appdata.xml +%{_datadir}/applications/org.kde.kinfocenter.desktop +%{_datadir}/applications/kcm_about-distro.desktop +%{_kf6_datadir}/dbus-1/system-services/org.kde.kinfocenter.dmidecode.service +%{_kf6_datadir}/dbus-1/system.d/org.kde.kinfocenter.dmidecode.conf +%{_libexecdir}/kinfocenter-opengl-helper +%{_kf6_datadir}/kinfocenter/ +%{_kf6_datadir}/polkit-1/actions/org.kde.kinfocenter.dmidecode.policy +%{_qt6_archdatadir}/qml/org/kde/kinfocenter/ +%{_kf6_libexecdir}/kauth/kinfocenter-dmidecode-helper +%{_libexecdir}/kinfocenter-vulkan-helper + +%changelog +* Fri Apr 10 2026 Steve Cossette - 6.6.4-1 +- 6.6.4 + +* Tue Mar 17 2026 Steve Cossette - 6.6.3-1 +- 6.6.3 + +* Tue Mar 03 2026 Steve Cossette - 6.6.2-1 +- 6.6.2 + +* Tue Feb 24 2026 Steve Cossette - 6.6.1-1 +- 6.6.1 + +* Thu Feb 12 2026 Steve Cossette - 6.6.0-1 +- 6.6.0 + +* Tue Jan 27 2026 Steve Cossette - 6.5.91-1 +- 6.5.91 + +* Fri Jan 16 2026 Fedora Release Engineering - 6.5.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + +* Tue Jan 13 2026 farchord@gmail.com - 6.5.90-1 +- 6.5.90 + +* Tue Jan 13 2026 farchord@gmail.com - 6.5.5-1 +- 6.5.5 + +* Tue Dec 09 2025 Steve Cossette - 6.5.4-1 +- 6.5.4 + +* Tue Nov 18 2025 Steve Cossette - 6.5.3-1 +- 6.5.3 + +* Tue Nov 04 2025 Steve Cossette - 6.5.2-1 +- 6.5.2 + +* Tue Oct 28 2025 Steve Cossette - 6.5.1-1 +- 6.5.1 + +* Fri Oct 17 2025 Steve Cossette - 6.5.0-1 +- 6.5.0 + +* Thu Oct 02 2025 Steve Cossette - 6.4.91-1 +- 6.4.91 + +* Thu Oct 02 2025 Jan Grulich - 6.4.5-2 +- Rebuild (qt6) + +* Thu Sep 25 2025 Steve Cossette - 6.4.90-1 +- 6.4.90 + +* Tue Sep 16 2025 farchord@gmail.com - 6.4.5-1 +- 6.4.5 + +* Sat Aug 16 2025 Marc Deop i Argemí - 6.4.4-2 +- Drop i686 support (leaf package) + +* Wed Aug 06 2025 Steve Cossette - 6.4.4-1 +- 6.4.4 + +* Thu Jul 24 2025 Fedora Release Engineering - 6.4.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + +* Tue Jul 15 2025 Steve Cossette - 6.4.3-1 +- 6.4.3 + +* Thu Jul 03 2025 Steve Cossette - 6.4.2-1 +- 6.4.2 + +* Tue Jun 24 2025 Marc Deop i Argemí - 6.4.1-1 +- 6.4.1 + +* Wed Jun 18 2025 Steve Cossette - 6.4.0-2 +- Fix for missing BR + +* Mon Jun 16 2025 Steve Cossette - 6.4.0-1 +- 6.4.0 + +* Sat May 31 2025 Marc Deop i Argemí - 6.3.91-2 +- Add signature file + +* Fri May 30 2025 Steve Cossette - 6.3.91-1 +- 6.3.91 + +* Thu May 15 2025 Marc Deop i Argemí - 6.3.90-1 +- 6.3.90 + +* Tue May 06 2025 Steve Cossette - 6.3.5-1 +- 6.3.5 + +* Mon Apr 14 2025 Jan Grulich - 6.3.4-2 +- Rebuild (qt6) + +* Wed Apr 02 2025 Marc Deop i Argemí - 6.3.4-1 +- 6.3.4 + +* Fri Mar 28 2025 Jan Grulich - 6.3.3-2 +- Rebuild (qt6) + +* Tue Mar 11 2025 Steve Cossette - 6.3.3-1 +- 6.3.3 + +* Tue Feb 25 2025 Steve Cossette - 6.3.2-1 +- 6.3.2 + +* Tue Feb 18 2025 Steve Cossette - 6.3.1-1 +- 6.3.1 + +* Thu Feb 06 2025 Marc Deop i Argemí - 6.3.0-1 +- 6.3.0 + +* Thu Jan 23 2025 Steve Cossette - 6.2.91-1 +- 6.2.91 + +* Fri Jan 17 2025 Fedora Release Engineering - 6.2.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + +* Thu Jan 09 2025 Steve Cossette - 6.2.90-1 +- Beta 6.2.90 + +* Tue Dec 31 2024 Steve Cossette - 6.2.5-1 +- 6.2.5 + +* Tue Nov 26 2024 Marc Deop i Argemí - 6.2.4-1 +- 6.2.4 + +* Tue Nov 05 2024 Steve Cossette - 6.2.3-1 +- 6.2.3 + +* Tue Oct 22 2024 Steve Cossette - 6.2.2-1 +- 6.2.2 + +* Tue Oct 15 2024 Steve Cossette - 6.2.1-1 +- 6.2.1 + +* Thu Oct 03 2024 Marc Deop i Argemí - 6.2.0-1 +- 6.2.0 + +* Thu Sep 12 2024 Marc Deop i Argemí - 6.1.90-1 +- 6.1.90 + +* Tue Sep 10 2024 Marc Deop i Argemí - 6.1.5-1 +- 6.1.5 + +* Fri Aug 09 2024 Steve Cossette - 6.1.4-1 +- 6.1.4 + +* Sun Jul 28 2024 Thomas Duckworth - 6.1.3-4 +- Require pulseaudio-utils, which provides pactl + +* Wed Jul 24 2024 Marc Deop i Argemí - 6.1.3-3 +- rebuilt + +* Thu Jul 18 2024 Fedora Release Engineering - 6.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Tue Jul 16 2024 Marc Deop i Argemí - 6.1.3-1 +- 6.1.3 + +* Wed Jul 03 2024 Marc Deop i Argemí - 6.1.2-1 +- 6.1.2 + +* Tue Jun 25 2024 Marc Deop i Argemí - 6.1.1-1 +- 6.1.1 + +* Thu Jun 13 2024 Marc Deop i Argemí - 6.1.0-1 +- 6.1.0 + +* Fri May 24 2024 Marc Deop i Argemí - 6.0.90-1 +- 6.0.90 + +* Wed May 22 2024 Marc Deop i Argemí - 6.0.5-1 +- 6.0.5 + +* Tue Apr 16 2024 Marc Deop i Argemí - 6.0.4-1 +- 6.0.4 + +* Tue Mar 26 2024 Marc Deop i Argemí - 6.0.3-1 +- 6.0.3 + +* Tue Mar 12 2024 Marc Deop i Argemí - 6.0.2-1 +- 6.0.2 + +* Wed Mar 06 2024 Marc Deop i Argemí - 6.0.1-1 +- 6.0.1 + +* Wed Feb 21 2024 Marc Deop i Argemí - 6.0.0-1 +- 6.0.0 + +* Wed Jan 31 2024 Marc Deop i Argemí - 5.93.0-1 +- 5.93.0 + +* Thu Jan 25 2024 Fedora Release Engineering - 5.92.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Jan 21 2024 Fedora Release Engineering - 5.92.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Wed Jan 10 2024 Marc Deop i Argemí - 5.92.0-1 +- 5.92.0 + +* Thu Dec 21 2023 Marc Deop i Argemí - 5.91.0-1 +- 5.91.0 + +* Wed Dec 13 2023 Timothée Ravier - 5.90.0-2 +- Only require dmidecode on i686, x86_64 & aarch64 + +* Sun Dec 03 2023 Justin Zobel - 5.90.0-1 +- Update to 5.90.0 + +* Sun Nov 12 2023 Steve Cossette - 5.27.80-1 +- 5.27.80 + +* Tue Oct 24 2023 Steve Cossette - 5.27.9-1 +- 5.27.9 + +* Tue Sep 12 2023 justin.zobel@gmail.com - 5.27.8-1 +- 5.27.8 + +* Tue Aug 01 2023 Marc Deop i Argemí - 5.27.7-1 +- 5.27.7 + +* Thu Jul 20 2023 Fedora Release Engineering - 5.27.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Sun Jun 25 2023 Marc Deop i Argemí - 5.27.6-1 +- 5.27.6 + +* Wed May 10 2023 Marc Deop i Argemí - 5.27.5-1 +- 5.27.5 + +* Tue Apr 04 2023 Marc Deop i Argemí - 5.27.4-1 +- 5.27.4 + +* Tue Mar 14 2023 Marc Deop i Argemí - 5.27.3-1 +- 5.27.3 + +* Tue Feb 28 2023 Marc Deop i Argemí - 5.27.2-1 +- 5.27.2 + +* Tue Feb 21 2023 Marc Deop i Argemí - 5.27.1-1 +- 5.27.1 + +* Thu Feb 09 2023 Marc Deop - 5.27.0-1 +- 5.27.0 + +* Thu Jan 19 2023 Marc Deop - 5.26.90-1 +- 5.26.90 + +* Thu Jan 19 2023 Fedora Release Engineering - 5.26.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Thu Jan 05 2023 Justin Zobel - 5.26.5-1 +- Update to 5.26.5 + +* Tue Nov 29 2022 Marc Deop - 5.26.4-1 +- 5.26.4 + +* Wed Nov 09 2022 Marc Deop - 5.26.3-1 +- 5.26.3 + +* Wed Oct 26 2022 Marc Deop - 5.26.2-1 +- 5.26.2 + +* Tue Oct 18 2022 Marc Deop - 5.26.1-1 +- 5.26.1 + +* Thu Oct 06 2022 Marc Deop - 5.26.0-1 +- 5.26.0 + +* Sat Sep 17 2022 Marc Deop - 5.25.90-1 +- 5.25.90 + +* Sun Sep 11 2022 Vitaly Zaitsev - 5.25.5-2 +- Converted all external runtime checkers as a weak dependencies. + +* Wed Sep 07 2022 Marc Deop - 5.25.5-1 +- 5.25.5 + +* Mon Aug 22 2022 Timothée Ravier - 5.25.4-3 +- Require vulkan-info and recommend xdpyinfo (#2054995) + +* Wed Aug 17 2022 Rex Dieter 5.25.4-2 +- Requires: aha (#2095937) +- fix changelog + +* Wed Aug 03 2022 Justin Zobel - 5.25.4-1 +- Update to 5.25.4 + +* Thu Jul 21 2022 Fedora Release Engineering - 5.25.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Tue Jul 12 2022 Marc Deop - 5.25.3-1 +- 5.25.3 + +* Tue Jun 28 2022 Marc Deop - 5.25.2-1 +- 5.25.2 + +* Tue Jun 21 2022 Marc Deop - 5.25.1-1 +- 5.25.1 + +* Thu Jun 09 2022 Marc Deop - 5.25.0-1 +- 5.25.0 + +* Fri May 20 2022 Marc Deop - 5.24.90-1 +- 5.24.90 + +* Tue May 17 2022 Justin Zobel - 5.24.5-2 +- Add runtime dependencies + +* Tue May 03 2022 Marc Deop - 5.24.5-1 +- 5.24.5 + +* Thu Mar 31 2022 Justin Zobel - 5.24.4-1 +- Update to 5.24.4 + +* Tue Mar 08 2022 Marc Deop - 5.24.3-1 +- 5.24.3 + +* Tue Feb 22 2022 Rex Dieter - 5.24.2-1 +- 5.24.2 + +* Tue Feb 15 2022 Marc Deop - 5.24.1-1 +- 5.24.1 + +* Thu Feb 03 2022 Marc Deop - 5.24.0-1 +- 5.24.0 + +* Thu Jan 20 2022 Fedora Release Engineering - 5.23.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Thu Jan 13 2022 Marc Deop - 5.23.90-1 +- 5.23.90 + +* Tue Jan 04 2022 Marc Deop - 5.23.5-1 +- 5.23.5 + +* Tue Dec 14 2021 Marc Deop - 5.23.4-1 +- 5.23.4 + +* Wed Nov 10 2021 Rex Dieter - 5.23.3-1 +- 5.23.3 + +* Tue Oct 26 2021 Rex Dieter - 5.23.2-1 +- 5.23.2 + +* Sat Oct 23 2021 Marc Deop - 5.23.1-1 +- 5.23.1 + +* Fri Oct 08 2021 Marc Deop - 5.23.0-1 +- 5.23.0 + +* Sun Sep 19 2021 Marc Deop - 5.22.90-2 +- Remove patch as it's applied upstream already +- Adjust files section + +* Fri Sep 17 2021 Marc Deop - 5.22.90-1 +- 5.22.90 + +* Tue Aug 31 2021 Jan Grulich - 5.22.5-1 +- 5.22.5 + +* Tue Jul 27 2021 Jan Grulich - 5.22.4-1 +- 5.22.4 + +* Thu Jul 22 2021 Fedora Release Engineering - 5.22.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Mon Jul 12 2021 Jan Grulich - 5.22.3-1 +- 5.22.3 + +* Tue Jun 22 2021 Jan Grulich - 5.22.2.1-1 +- 5.22.2.1 + +* Tue Jun 22 2021 Jan Grulich - 5.22.2-1 +- 5.22.2 + +* Fri Jun 18 2021 Rex Dieter - 5.22.1-2 +- Backport fix for displaying plasma version (kde#436954) +- drop unused kdelibs4support dep + +* Tue Jun 15 2021 Jan Grulich - 5.22.1-1 +- 5.22.1 + +* Sun Jun 06 2021 Jan Grulich - 5.22.0-1 +- 5.22.0 + +* Thu May 13 2021 Rex Dieter - 5.21.90-1 +- 5.21.90 + +* Tue May 04 2021 Jan Grulich - 5.21.5-1 +- 5.21.5 + +* Mon Apr 26 2021 Rex Dieter - 5.21.4-2 +- Requires: hwdata +- update URL +- make kf5-kwayland dep unconditional +- drop Req: kf5-filesystem + +* Tue Apr 06 2021 Jan Grulich - 5.21.4-1 +- 5.21.4 + +* Tue Mar 16 2021 Jan Grulich - 5.21.3-1 +- 5.21.3 + +* Tue Mar 02 2021 Jan Grulich - 5.21.2-1 +- 5.21.2 + +* Tue Feb 23 2021 Jan Grulich - 5.21.1-1 +- 5.21.1 + +* Thu Feb 11 2021 Jan Grulich - 5.21.0-1 +- 5.21.0 + +* Tue Jan 26 2021 Fedora Release Engineering - 5.20.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Thu Jan 21 2021 Jan Grulich - 5.20.90-1 +- 5.20.90 (beta) + +* Tue Jan 5 2021 Jan Grulich - 5.20.5-1 +- 5.20.5 + +* Tue Dec 1 2020 Jan Grulich - 5.20.4-1 +- 5.20.4 + +* Wed Nov 11 2020 Jan Grulich - 5.20.3-1 +- 5.20.3 + +* Tue Oct 27 2020 Jan Grulich - 5.20.2-1 +- 5.20.2 + +* Tue Oct 20 2020 Jan Grulich - 5.20.1-1 +- 5.20.1 + +* Sun Oct 11 2020 Jan Grulich - 5.20.0-1 +- 5.20.0 + +* Fri Sep 18 2020 Jan Grulich - 5.19.90-1 +- 5.19.90 + +* Tue Sep 01 2020 Jan Grulich - 5.19.5-1 +- 5.19.5 + +* Tue Jul 28 2020 Jan Grulich - 5.19.4-1 +- 5.19.4 + +* Tue Jul 28 2020 Fedora Release Engineering - 5.19.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue Jul 07 2020 Jan Grulich - 5.19.3-1 +- 5.19.3 + +* Tue Jun 23 2020 Jan Grulich - 5.19.2-1 +- 5.19.2 + +* Wed Jun 17 2020 Martin Kyral - 5.19.1-1 +- 5.19.1 + +* Tue Jun 9 2020 Martin Kyral - 5.19.0-1 +- 5.19.0 + +* Fri May 15 2020 Martin Kyral - 5.18.90-1 +- 5.18.90 + +* Tue May 05 2020 Jan Grulich - 5.18.5-1 +- 5.18.5 + +* Sat Apr 04 2020 Rex Dieter - 5.18.4.1-1 +- 5.18.4.1 + +* Tue Mar 31 2020 Jan Grulich - 5.18.4-1 +- 5.18.4 + +* Tue Mar 10 2020 Jan Grulich - 5.18.3-1 +- 5.18.3 + +* Tue Feb 25 2020 Jan Grulich - 5.18.2-1 +- 5.18.2 + +* Tue Feb 18 2020 Jan Grulich - 5.18.1-1 +- 5.18.1 + +* Tue Feb 11 2020 Jan Grulich - 5.18.0-1 +- 5.18.0 + +* Wed Jan 29 2020 Fedora Release Engineering - 5.17.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Jan 16 2020 Jan Grulich - 5.17.90-1 +- 5.17.90 + +* Wed Jan 08 2020 Jan Grulich - 5.17.5-1 +- 5.17.5 + +* Thu Dec 05 2019 Jan Grulich - 5.17.4-1 +- 5.17.4 + +* Wed Nov 13 2019 Martin Kyral - 5.17.3-1 +- 5.17.3 + +* Wed Oct 30 2019 Jan Grulich - 5.17.2-1 +- 5.17.2 + +* Wed Oct 23 2019 Jan Grulich - 5.17.1-1 +- 5.17.1 + +* Thu Oct 10 2019 Jan Grulich - 5.17.0-1 +- 5.17.0 + +* Fri Sep 20 2019 Martin Kyral - 5.16.90-1 +- 5.16.90 + +* Fri Sep 06 2019 Martin Kyral - 5.16.5-1 +- 5.16.5 + +* Tue Jul 30 2019 Martin Kyral - 5.16.4-1 +- 5.16.4 + +* Thu Jul 25 2019 Fedora Release Engineering - 5.16.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Wed Jul 10 2019 Martin Kyral - 5.16.3-1 +- 5.16.3 + +* Wed Jun 26 2019 Martin Kyral - 5.16.2-1 +- 5.16.2 + +* Tue Jun 18 2019 Rex Dieter - 5.16.1-1 +- 5.16.1 + +* Tue Jun 11 2019 Martin Kyral - 5.16.0-1 +- 5.16.0 + +* Thu May 16 2019 Martin Kyral - 5.15.90-1 +- 5.15.90 + +* Thu May 09 2019 Martin Kyral - 5.15.5-1 +- 5.15.5 + +* Wed Apr 03 2019 Rex Dieter - 5.15.4-1 +- 5.15.4 + +* Tue Mar 12 2019 Martin Kyral - 5.15.3-1 +- 5.15.3 + +* Tue Feb 26 2019 Rex Dieter - 5.15.2-1 +- 5.15.2 + +* Tue Feb 19 2019 Rex Dieter - 5.15.1-1 +- 5.15.1 + +* Wed Feb 13 2019 Martin Kyral - 5.15.0-1 +- 5.15.0 + +* Fri Feb 01 2019 Fedora Release Engineering - 5.14.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sun Jan 20 2019 Martin Kyral - 5.14.90-1 +- 5.14.90 + +* Tue Nov 27 2018 Rex Dieter - 5.14.4-1 +- 5.14.4 + +* Thu Nov 08 2018 Martin Kyral - 5.14.3-1 +- 5.14.3 + +* Wed Oct 24 2018 Rex Dieter - 5.14.2-1 +- 5.14.2 + +* Tue Oct 16 2018 Rex Dieter - 5.14.1-1 +- 5.14.1 + +* Fri Oct 05 2018 Rex Dieter - 5.14.0-1 +- 5.14.0 + +* Fri Sep 14 2018 Martin Kyral - 5.13.90-1 +- 5.13.90 + +* Tue Sep 04 2018 Rex Dieter - 5.13.5-1 +- 5.13.5 + +* Thu Aug 02 2018 Rex Dieter - 5.13.4-1 +- 5.13.4 + +* Fri Jul 13 2018 Fedora Release Engineering - 5.13.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Jul 11 2018 Martin Kyral - 5.13.3-1 +- 5.13.3 + +* Mon Jul 09 2018 Martin Kyral - 5.13.2-1 +- 5.13.2 + +* Tue Jun 19 2018 Martin Kyral - 5.13.1-1 +- 5.13.1 + +* Sat Jun 09 2018 Rex Dieter - 5.13.0-1 +- 5.13.0 + +* Fri May 18 2018 Martin Kyral - 5.12.90-1 +- 5.12.90 + +* Tue May 01 2018 Rex Dieter - 5.12.5-1 +- 5.12.5 + +* Tue Mar 27 2018 Rex Dieter - 5.12.4-1 +- 5.12.4 + +* Tue Mar 06 2018 Rex Dieter - 5.12.3-1 +- 5.12.3 + +* Wed Feb 21 2018 Jan Grulich - 5.12.2-1 +- 5.12.2 + +* Tue Feb 13 2018 Jan Grulich - 5.12.1-1 +- 5.12.1 + +* Wed Feb 07 2018 Fedora Release Engineering - 5.12.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Fri Feb 02 2018 Jan Grulich - 5.12.0-1 +- 5.12.0 + +* Mon Jan 15 2018 Jan Grulich - 5.11.95-1 +- 5.11.95 + +* Tue Jan 02 2018 Rex Dieter - 5.11.5-1 +- 5.11.5 + +* Thu Nov 30 2017 Martin Kyral - 5.11.4-1 +- 5.11.4 + +* Wed Nov 08 2017 Rex Dieter - 5.11.3-1 +- 5.11.3 + +* Wed Oct 25 2017 Martin Kyral - 5.11.2-1 +- 5.11.2 + +* Tue Oct 17 2017 Rex Dieter - 5.11.1-1 +- 5.11.1 + +* Wed Oct 11 2017 Martin Kyral - 5.11.0-1 +- 5.11.0 + +* Thu Aug 24 2017 Rex Dieter - 5.10.5-1 +- 5.10.5 + +* Thu Aug 03 2017 Fedora Release Engineering - 5.10.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 5.10.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Jul 21 2017 Rex Dieter - 5.10.4-1 +- 5.10.4 + +* Tue Jun 27 2017 Rex Dieter - 5.10.3-1 +- 5.10.3 + +* Thu Jun 15 2017 Rex Dieter - 5.10.2-1 +- 5.10.2 + +* Tue Jun 06 2017 Rex Dieter - 5.10.1-1 +- 5.10.1 + +* Wed May 31 2017 Jan Grulich - 5.10.0-1 +- 5.10.0 + +* Wed Apr 26 2017 Rex Dieter - 5.9.5-2 +- use %%find_lang for handbooks + +* Wed Apr 26 2017 Rex Dieter - 5.9.5-1 +- 5.9.5 + +* Thu Mar 23 2017 Rex Dieter - 5.9.4-1 +- 5.9.4 + +* Sat Mar 04 2017 Rex Dieter - 5.9.3-2 +- rebuild + +* Wed Mar 01 2017 Jan Grulich - 5.9.3-1 +- 5.9.3 + +* Tue Feb 21 2017 Rex Dieter - 5.8.6-1 +- 5.8.6 + +* Fri Feb 10 2017 Fedora Release Engineering - 5.8.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Wed Dec 28 2016 Rex Dieter - 5.8.5-1 +- 5.8.5 + +* Tue Nov 22 2016 Rex Dieter - 5.8.4-1 +- 5.8.4 + +* Tue Nov 01 2016 Rex Dieter - 5.8.3-1 +- 5.8.3 + +* Tue Oct 18 2016 Rex Dieter - 5.8.2-1 +- 5.8.2 + +* Tue Oct 11 2016 Rex Dieter - 5.8.1-1 +- 5.8.1 + +* Thu Sep 29 2016 Rex Dieter - 5.8.0-1 +- 5.8.0 + +* Thu Sep 22 2016 Rex Dieter - 5.7.95-1 +- 5.7.95 + +* Tue Sep 13 2016 Rex Dieter - 5.7.5-1 +- 5.7.5 + +* Tue Aug 23 2016 Rex Dieter - 5.7.4-1 +- 5.7.4 + +* Tue Aug 02 2016 Rex Dieter - 5.7.3-1 +- 5.7.3 + +* Tue Jul 19 2016 Rex Dieter - 5.7.2-1 +- 5.7.2 + +* Tue Jul 12 2016 Rex Dieter - 5.7.1-1 +- 5.7.1 + +* Thu Jun 30 2016 Rex Dieter - 5.7.0-1 +- 5.7.0 + +* Sat Jun 25 2016 Rex Dieter - 5.6.95-1 +- 5.6.95 + +* Tue Jun 14 2016 Rex Dieter - 5.6.5-1 +- 5.6.5 + +* Sat May 14 2016 Rex Dieter - 5.6.4-1 +- 5.6.4 + +* Sun May 08 2016 Rex Dieter - 5.6.3-2 +- pull in upstream fixes (including a crash-on-close fix) + +* Tue Apr 19 2016 Rex Dieter - 5.6.3-1 +- 5.6.3 + +* Sat Apr 09 2016 Rex Dieter - 5.6.2-1 +- 5.6.2 + +* Fri Apr 08 2016 Rex Dieter - 5.6.1-1 +- 5.6.1 + +* Tue Mar 01 2016 Daniel Vrátil - 5.5.5-1 +- Plasma 5.5.5 + +* Thu Feb 04 2016 Fedora Release Engineering - 5.5.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jan 27 2016 Daniel Vrátil - 5.5.4-1 +- Plasma 5.5.4 + +* Thu Jan 07 2016 Daniel Vrátil - 5.5.3-1 +- Plasma 5.5.3 + +* Thu Dec 31 2015 Rex Dieter - 5.5.2-1 +- 5.5.2 + +* Fri Dec 18 2015 Daniel Vrátil - 5.5.1-1 +- Plasma 5.5.1 + +* Thu Dec 03 2015 Daniel Vrátil - 5.5.0-1 +- Plasma 5.5.0 + +* Wed Nov 25 2015 Daniel Vrátil - 5.4.95-1 +- Plasma 5.4.95 + +* Thu Nov 05 2015 Daniel Vrátil - 5.4.3-1 +- Plasma 5.4.3 + +* Thu Oct 01 2015 Rex Dieter - 5.4.2-1 +- 5.4.2 + +* Wed Sep 09 2015 Rex Dieter - 5.4.1-1 +- 5.4.1 + +* Fri Aug 21 2015 Daniel Vrátil - 5.4.0-1 +- Plasma 5.4.0 + +* Thu Aug 13 2015 Daniel Vrátil - 5.3.95-1 +- Plasma 5.3.95 + +* Thu Jun 25 2015 Daniel Vrátil - 5.3.2-1 +- Plasma 5.3.2 + +* Wed Jun 17 2015 Fedora Release Engineering - 5.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Tue Jun 09 2015 Rex Dieter 5.3.1-2 +- .spec cosmetics, improve %%find_lang/%%lang usage + +* Tue May 26 2015 Daniel Vrátil - 5.3.1-1 +- Plasma 5.3.1 + +* Mon Apr 27 2015 Daniel Vrátil - 5.3.0-1 +- Plasma 5.3.0 + +* Wed Apr 22 2015 Daniel Vrátil - 5.2.95-1 +- Plasma 5.2.95 + +* Fri Mar 20 2015 Daniel Vrátil - 5.2.2-1 +- Plasma 5.2.2 + +* Fri Feb 27 2015 Daniel Vrátil - 5.2.1-2 +- Rebuild (GCC 5) + +* Tue Feb 24 2015 Daniel Vrátil - 5.2.1-1 +- Plasma 5.2.1 + +* Thu Jan 29 2015 Dan Horák - 5.2.0-2 +- no FireWire on s390(x) + +* Mon Jan 26 2015 Daniel Vrátil - 5.2.0-1 +- Plasma 5.2.0 + +* Mon Jan 12 2015 Daniel Vrátil - 5.1.95-1.beta +- Plasma 5.1.95 Beta + +* Wed Dec 17 2014 Daniel Vrátil - 5.1.2-2 +- Plasma 5.1.2 + +* Fri Nov 07 2014 Daniel Vrátil - 5.1.1-1 +- Plasma 5.1.1 + +* Tue Oct 14 2014 Daniel Vrátil - 5.1.0.1-1 +- Plasma 5.1.0.1 + +* Thu Oct 09 2014 Daniel Vrátil - 5.1.0-1 +- Plasma 5.1.0 + +* Tue Sep 16 2014 Daniel Vrátil - 5.0.2-1 +- Plasma 5.0.2 + +* Sun Aug 10 2014 Daniel Vrátil - 5.0.1-1 +- Plasma 5.0.1 + +* Thu Jul 24 2014 Daniel Vrátil - 5.0.0-2 +- Rebuild + +* Wed Jul 16 2014 Daniel Vrátil - 5.0.0-1 +- Plasma 5.0.0 + +* Wed May 14 2014 Daniel Vrátil - 4.90.1-1.20140514git1b86b1a +- Intial snapshot diff --git a/sonic-win.spec b/sonic-win.spec deleted file mode 100644 index a0b2679..0000000 --- a/sonic-win.spec +++ /dev/null @@ -1,205 +0,0 @@ -%define _disable_source_fetch 0 -%define debug_package %{nil} - -Name: sonic-win -Version: 6.4.5 -Release: 8%{?dist} -Summary: KWin window manager for SonicDE (fork of kwin) - -%global plasma_version %{version} - -License: GPL-2.0-or-later -URL: https://github.com/Sonic-DE/sonic-win -Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz - -BuildRequires: extra-cmake-modules -BuildRequires: kf6-rpm-macros -BuildRequires: systemd-rpm-macros - -# Qt -BuildRequires: cmake(QAccessibilityClient6) -BuildRequires: qt6-qtbase-devel -BuildRequires: qt6-qtbase-private-devel -BuildRequires: qt6-qtsensors-devel -BuildRequires: qt6-qttools-devel -BuildRequires: qt6-qtwayland-devel -BuildRequires: cmake(Qt6Core5Compat) -BuildRequires: cmake(Qt6Svg) -BuildRequires: cmake(Qt6Multimedia) - -# X11/OpenGL -BuildRequires: pkgconfig(libxcvt) -BuildRequires: mesa-libGL-devel -BuildRequires: mesa-libEGL-devel -BuildRequires: mesa-libgbm-devel -BuildRequires: libxkbcommon-devel -BuildRequires: libxkbcommon-x11-devel -BuildRequires: libX11-devel -BuildRequires: libXi-devel -BuildRequires: libxcb-devel -BuildRequires: libICE-devel -BuildRequires: libSM-devel -BuildRequires: libXcursor-devel -BuildRequires: xcb-util-wm-devel -BuildRequires: xcb-util-image-devel -BuildRequires: xcb-util-keysyms-devel -BuildRequires: xcb-util-cursor-devel -BuildRequires: xcb-util-devel -BuildRequires: libepoxy-devel -BuildRequires: libcap-devel - -BuildRequires: lcms2-devel -BuildRequires: glib2-devel -BuildRequires: pipewire-devel - -# Wayland -BuildRequires: wayland-devel >= 1.22.0 -BuildRequires: wayland-protocols-devel -BuildRequires: pkgconfig(libinput) >= 0.10 -BuildRequires: pkgconfig(libudev) - -%if 0%{?rhel} == 10 -# Integrate with Xlibre on EL10 -BuildRequires: xlibre-xserver-devel -Requires: xlibre-xserver-Xorg -Requires: xlibre-xf86-input-libinput -%else -BuildRequires: pkgconfig(xwayland) -%endif - -# KF6 -BuildRequires: cmake(KF6Completion) -BuildRequires: cmake(KF6Config) -BuildRequires: cmake(KF6ConfigWidgets) -BuildRequires: cmake(KF6CoreAddons) -BuildRequires: cmake(KF6Crash) -BuildRequires: cmake(KF6DBusAddons) -BuildRequires: cmake(KF6GlobalAccel) -BuildRequires: cmake(KF6GuiAddons) -BuildRequires: cmake(KF6I18n) -BuildRequires: cmake(KF6KIO) -BuildRequires: cmake(KF6Notifications) -BuildRequires: cmake(KF6Service) -BuildRequires: cmake(KF6WidgetsAddons) -BuildRequires: cmake(KF6WindowSystem) -BuildRequires: cmake(KF6DocTools) -BuildRequires: cmake(KF6KCMUtils) -BuildRequires: cmake(KF6NewStuff) -BuildRequires: cmake(KF6Declarative) -BuildRequires: cmake(KF6IconThemes) -BuildRequires: cmake(KF6IdleTime) -BuildRequires: cmake(KF6TextWidgets) -BuildRequires: cmake(KF6Kirigami2) -BuildRequires: cmake(KF6Runner) -BuildRequires: cmake(KF6Svg) - -# Workspace components -BuildRequires: cmake(KDecoration3) -BuildRequires: kscreenlocker-devel -BuildRequires: plasma-breeze-devel -BuildRequires: plasma-wayland-protocols-devel -BuildRequires: cmake(KGlobalAccelD) -BuildRequires: libdisplay-info-devel - -BuildRequires: cmake(KWayland) -BuildRequires: cmake(Plasma) -BuildRequires: cmake(PlasmaActivities) - -BuildRequires: libeis-devel -BuildRequires: pkgconfig(libcanberra) - -# Conflicts with kwin-x11 -Conflicts: kwin-x11 - -Requires: sonic-interface-libraries%{?_isa} >= %{plasma_version} -Requires: kscreenlocker%{?_isa} -Requires: kf6-kirigami2%{?_isa} -Requires: kf6-kdeclarative%{?_isa} -Requires: qt6-qtmultimedia%{?_isa} -Requires: qt6-qtdeclarative%{?_isa} - -%description -Sonic Win is a fork of KWin, the window manager and compositor for SonicDE, -focusing on an optimized X11 experience. - -%package libs -Summary: KWin libraries for SonicDE -Conflicts: kwin-x11-libs - -%description libs -Shared libraries for sonic-win. - -%package devel -Summary: Development files for %{name} -Requires: %{name}-libs%{?_isa} = %{version}-%{release} -Requires: %{name}%{?_isa} = %{version}-%{release} -Conflicts: kwin-x11-devel - -%description devel -Development files for sonic-win. -Provides: kwin-devel = %{version}-%{release} -Provides: kwin-x11-devel = %{version}-%{release} -Provides: cmake(KWinDBusInterface) = %{version} - -%prep -%autosetup -p1 - -%build -%cmake_kf6 -%cmake_build - -%install -%cmake_install -# Create compatibility CMake files for sonic-workspace -mkdir -p %{buildroot}%{_libdir}/cmake/KWinDBusInterface -cat < %{buildroot}%{_libdir}/cmake/KWinDBusInterface/KWinDBusInterfaceConfig.cmake -find_package(KWinX11DBusInterface REQUIRED) -include(\${KWinX11DBusInterface_DIR}/KWinX11DBusInterfaceConfig.cmake) -EOF - -# Create compatibility symlinks for DBus interfaces -pushd %{buildroot}%{_datadir}/dbus-1/interfaces/ -for f in kwin_x11_*.xml; do - newname=$(echo $f | sed 's/kwin_x11_//') - ln -s "$f" "$newname" -done -popd - -# The translation domain in the source is likely still 'kwin' -%find_lang kwin --all-name --with-html - -%files -f kwin.lang -%license LICENSES/* -# Binares and specialized folders -%{_bindir}/kwin_x11 -%{_libdir}/kconf_update_bin/kwin* -%{_libexecdir}/kwin* -%{_userunitdir}/plasma-kwin_x11.service - -# Database and plugins -%{_libdir}/qt6/plugins/ -%{_qt6_qmldir}/org/kde/*/ - -# Data and Assets -%{_datadir}/kwin-x11/ -%{_datadir}/applications/*.desktop -%{_datadir}/dbus-1/interfaces/*.xml -%{_datadir}/icons/hicolor/*/apps/kwin-x11.* -%{_datadir}/kconf_update/kwin-x11.upd -%{_datadir}/knotifications6/kwin-x11.notifyrc -%{_datadir}/knsrcfiles/*.knsrc -%{_datadir}/krunner/dbusplugins/*.desktop -%{_datadir}/qlogging-categories6/*.categories - -%files libs -# Libraries -%{_libdir}/lib*.so.* - -%files devel -%{_includedir}/ -%{_libdir}/lib*.so -%{_libdir}/cmake/ - -%changelog -* Wed Mar 21 2026 Anders da Silva Rytter Hansen - 6.4.5-8 -- Initial release of SonicDE/KDE Plasma X11 for EL10 (Downgraded to 6.4.5 for EL 10.1 compatibility) diff --git a/sonic-win/sonic-win.spec b/sonic-win/sonic-win.spec new file mode 100644 index 0000000..6050e59 --- /dev/null +++ b/sonic-win/sonic-win.spec @@ -0,0 +1,1593 @@ +%define _disable_source_fetch 0 +%define debug_package %{nil} +%define oldname kwin_x11 + +Name: sonic-win +Version: 6.6.4 +Release: 11%{?dist} +Summary: KDE Window manager + +License: BSD-2-Clause AND BSD-3-Clause AND CC0-1.0 AND GPL-2.0-only AND GPL-2.0-or-later AND GPL-3.0-only AND GPL-3.0-or-later AND LGPL-2.0-only AND LGPL-2.0-or-later AND LGPL-2.1-only AND LGPL-2.1-or-later AND LGPL-3.0-only AND (GPL-2.0-only OR GPL-3.0-only) AND (LGPL-2.1-only OR LGPL-3.0-only) AND MIT +#URL: https://userbase.kde.org/KWin +URL: https://github.com/Sonic-DE/%{name} + +%global plasma_version %(echo %{version} | cut -d. -f1-3) + +#Source0: http://download.kde.org/%{stable_kf6}/plasma/%{maj_ver_kf6}.%{min_ver_kf6}.%{bug_ver_kf6}/%{name}-%{version}.tar.xz +#Source1: http://download.kde.org/%{stable_kf6}/plasma/%{maj_ver_kf6}.%{min_ver_kf6}.%{bug_ver_kf6}/%{name}-%{version}.tar.xz.sig +Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz + +## upstream patches + +## proposed patches + + +# Base +BuildRequires: extra-cmake-modules +BuildRequires: kf6-rpm-macros +BuildRequires: systemd-rpm-macros + +# Qt +BuildRequires: cmake(QAccessibilityClient6) +BuildRequires: qt6-qtbase-devel +BuildRequires: qt6-qtbase-static +# KWinQpaPlugin (and others?) +BuildRequires: qt6-qtbase-private-devel +BuildRequires: qt6-qttools-devel +BuildRequires: qt6-qttools-static +BuildRequires: qt6-qtwayland-devel +BuildRequires: cmake(Qt6Core5Compat) +BuildRequires: cmake(Qt6Svg) +BuildRequires: qt6-qtsensors-devel + +# X11/OpenGL +BuildRequires: pkgconfig(libxcvt) +BuildRequires: mesa-libGL-devel +BuildRequires: mesa-libEGL-devel +BuildRequires: mesa-libgbm-devel +BuildRequires: libxkbcommon-devel +BuildRequires: libxkbcommon-x11-devel +BuildRequires: libX11-devel +BuildRequires: libXi-devel +BuildRequires: libxcb-devel +BuildRequires: libICE-devel +BuildRequires: libSM-devel +BuildRequires: libXcursor-devel +BuildRequires: xcb-util-wm-devel +BuildRequires: xcb-util-image-devel +BuildRequires: xcb-util-keysyms-devel +BuildRequires: xcb-util-cursor-devel +BuildRequires: xcb-util-devel +BuildRequires: libepoxy-devel +BuildRequires: libcap-devel + +BuildRequires: lcms2-devel +BuildRequires: glib2-devel +BuildRequires: pipewire-devel + +# Wayland +BuildRequires: wayland-devel >= 1.23.0 +BuildRequires: wayland-protocols-devel +BuildRequires: libxkbcommon-devel >= 0.4 +BuildRequires: pkgconfig(libinput) >= 0.10 +BuildRequires: pkgconfig(libudev) +#BuildRequires: pkgconfig(xwayland) +BuildRequires: pkgconfig(libevdev) + +# KF6 +BuildRequires: cmake(KF6Completion) +BuildRequires: cmake(KF6Config) +BuildRequires: cmake(KF6ConfigWidgets) +BuildRequires: cmake(KF6CoreAddons) +BuildRequires: cmake(KF6Crash) +BuildRequires: cmake(KF6DBusAddons) +BuildRequires: cmake(KF6GlobalAccel) +BuildRequires: cmake(KF6GuiAddons) +BuildRequires: cmake(KF6I18n) +BuildRequires: cmake(KF6KIO) +BuildRequires: cmake(KF6Notifications) +BuildRequires: cmake(KF6Service) +BuildRequires: cmake(KF6WidgetsAddons) +BuildRequires: cmake(KF6WindowSystem) +BuildRequires: cmake(KF6DocTools) +BuildRequires: cmake(KF6KCMUtils) +BuildRequires: cmake(KF6NewStuff) +BuildRequires: cmake(KF6Declarative) +BuildRequires: cmake(KF6IconThemes) +BuildRequires: cmake(KF6IdleTime) +BuildRequires: cmake(KF6TextWidgets) +BuildRequires: cmake(KF6Kirigami2) +BuildRequires: cmake(KF6Runner) +BuildRequires: cmake(KF6Svg) +BuildRequires: cmake(KNightTime) + +BuildRequires: cmake(KDecoration3) +BuildRequires: sonic-screenlocker-devel +BuildRequires: plasma-breeze-devel +BuildRequires: plasma-wayland-protocols-devel +BuildRequires: cmake(KGlobalAccelD) +BuildRequires: libdisplay-info-devel + +BuildRequires: cmake(KWayland) +BuildRequires: cmake(Plasma) +BuildRequires: cmake(PlasmaActivities) + +# Unknowns +BuildRequires: libeis-devel +BuildRequires: pkgconfig(libcanberra) + +## Runtime deps +Requires: %{name}-libs%{?_isa} = %{version}-%{release} +Requires: %{name}-common%{?_isa} = %{version}-%{release} +Requires: sonic-screenlocker%{?_isa} +Requires: kf6-kirigami2%{?_isa} +Requires: kf6-kdeclarative%{?_isa} +Requires: sonic-interface-libraries%{?_isa} >= %{plasma_version} +Requires: qt6-qtmultimedia%{?_isa} +Requires: qt6-qtdeclarative%{?_isa} +Requires: aurorae%{?_isa} +Requires: iio-sensor-proxy%{?_isa} + +# Before kwin was split out from kde-workspace into a subpackage +Conflicts: kde-workspace%{?_isa} < 4.11.14-2 + +Obsoletes: kwin-gles < 5 +Obsoletes: kwin-gles-libs < 5 + +# Split of X11 variant into subpackage +Obsoletes: kwin < %{version}-%{release} + +#Requires: kwin-wayland = %{version}-%{release} + +# Merge -wayland subpackage +Conflicts: kwin-wayland < 6.3.90 +Obsoletes: kwin-wayland < 6.3.90 +#Provides: kwin-wayland = %{version}-%{release} +#Provides: kwin-wayland%{?_isa} = %{version}-%{release} + +# Obsolete kwin-wayland-nvidia package as this is now done automatically +# by kwin-wayland +Obsoletes: kwin-wayland-nvidia < 5.20.2-2 +#Provides: kwin-wayland-nvidia = %{version}-%{release} +# Obsolete -x11 for Plasma 6 +%if 0%{?fedora} +Obsoletes: kwin-x11 < 5.92.0 +%else +Obsoletes: kwin-x11 < %{version}-%{release} +Conflicts: kwin-x11 < %{version}-%{release} +%endif +%if ! 0%{?rhel} >= 10 +#Requires: (kwayland-integration%{?_isa} if kf5-kwindowsystem%{?_isa}) +%endif +%if ! 0%{?bootstrap} +#BuildRequires: xorg-x11-server-Xwayland +%endif +#Requires: xorg-x11-server-Xwayland +# KWinQpaPlugin (and others?) + +Provides: kwin = %{version}-%{release} +Provides: kwin%{?_isa} = %{version}-%{release} +Provides: kwin-x11 = %{version}-%{release} +Provides: kwin-x11%{?_isa} = %{version}-%{release} +Conflicts: kwin +Conflicts: kwin-x11 + +%description +%{summary}. + + +%package common +Summary: Common files for KWin X11 and KWin Wayland +Requires: %{name}-libs%{?_isa} = %{version}-%{release} +Requires: kwayland%{?_isa} +# Split of X11 variant into subpackage +Obsoletes: %{name}-common < 5.19.5-3 +Conflicts: kwin-common +Conflicts: kwin-x11-common +%description common +%{summary}. + +%package libs +Summary: KWin runtime libraries +# Before kwin-libs was split out from kde-workspace into a subpackage +Conflicts: kde-workspace-libs%{?_isa} < 4.11.14-2 +# kwin uses wl_display_set_default_max_buffer_size from wayland 1.23.0 +# https://bugzilla.redhat.com/show_bug.cgi?id=2312499 +Requires: libwayland-server%{?_isa} >= 1.23.0 +Conflicts: kwin-libs +Conflicts: kwin-x11-libs +%description libs +%{summary}. + +%package devel +Summary: Development files for %{name} +Requires: %{name}-libs%{?_isa} = %{version}-%{release} +Requires: %{name}-common%{?_isa} = %{version}-%{release} +Requires: kf6-kconfig-devel +Requires: kf6-kservice-devel +Requires: sonic-frameworks-windowsystem +Conflicts: kde-workspace-devel < 5.0.0-1 +Conflicts: kwin-devel +Conflicts: kwin-x11-devel +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + +%package doc +Summary: User manual for %{name} +Requires: %{name} = %{version}-%{release} +BuildArch: noarch +Conflicts: kwin-doc +Conflicts: kwin-x11-doc +%description doc +%{summary}. + + +%prep +%autosetup -p1 + +%build +%cmake_kf6 +%cmake_build + +%install +%cmake_install + +%find_lang %{name} --with-html --all-name +grep "%{_kf6_docdir}" %{name}.lang > %{name}-doc.lang +cat %{name}.lang %{name}-doc.lang | sort | uniq -u > kwin6.lang + +# co-own Xwayland-session.d folder +mkdir -p %{buildroot}%{_sysconfdir}/xdg/Xwayland-session.d + +# temporary(?) hack to allow initial-setup to use /usr/bin/kwin too +#ln -sr %{buildroot}%{_kf6_bindir}/kwin_wayland %{buildroot}%{_bindir}/kwin + + +%files +%{_bindir}/kwin_x11 +#%{_bindir}/kwin_wayland_wrapper +%{_datadir}/kwin-x11/ +%caps(cap_sys_nice=ep) %{_kf6_bindir}/kwin_x11 +%{_userunitdir}/plasma-kwin_x11.service +%dir %{_sysconfdir}/xdg/Xwayland-session.d + +%files common -f kwin6.lang +%{_kf6_qtplugindir}/plasma/kcms/systemsettings/*.so +%{_kf6_qtplugindir}/plasma/kcms/systemsettings_qwidgets/*.so +%{_kf6_qtplugindir}/kwin-x11/ +%{_kf6_qtplugindir}/kf6/packagestructure/kwin_*.so +%{_qt6_qmldir}/org/kde/kwin_x11/ +%{_kf6_libdir}/kconf_update_bin/kwin5_update_default_rules_x11 +%{_kf6_libdir}/kconf_update_bin/kwin-6.0-delete-desktop-switching-shortcuts-x11 +%{_kf6_libdir}/kconf_update_bin/kwin-6.0-remove-breeze-tabbox-default-x11 +%{_kf6_libdir}/kconf_update_bin/kwin-6.0-reset-active-mouse-screen-x11 +%{_kf6_libdir}/kconf_update_bin/kwin-6.1-remove-gridview-expose-shortcuts-x11 +%{_kf6_libdir}/kconf_update_bin/kwin-6.5-showpaint-changes-x11 +%{_libexecdir}/kwin-applywindowdecoration-x11 +%{_libexecdir}/kwin_killer_helper_x11 +#%{_libexecdir}/kwin-tabbox-preview +%{_datadir}/kconf_update/kwin-x11.upd +%{_kf6_datadir}/knotifications6/kwin-x11.notifyrc +#%{_kf6_datadir}/config.kcfg/kwin.kcfg +#%{_kf6_datadir}/config.kcfg/kwindecorationsettings.kcfg +#%{_kf6_datadir}/config.kcfg/virtualdesktopssettings.kcfg +#%{_kf6_datadir}/config.kcfg/nightlightsettings.kcfg +%{_datadir}/icons/hicolor/*/apps/kwin-x11.* +%{_datadir}/knsrcfiles/*.knsrc +%{_datadir}/krunner/dbusplugins/kwin-runner-windows-x11.desktop +%{_datadir}/applications/*.desktop +#%{_bindir}/kwindowprop + +%files libs +%{_kf6_datadir}/qlogging-categories6/org_kde_kwin_x11.categories +%{_libdir}/libkwin-x11.so.* +%{_libdir}/libkcmkwincommon-x11.so.* + +%files devel +%{_datadir}/dbus-1/interfaces/*.xml +#%{_libdir}/cmake/KWinDBusInterface +%{_libdir}/cmake/KWinX11 +%{_libdir}/cmake/KWinX11DBusInterface +%{_includedir}/kwin-x11 +%{_libdir}/libkwin-x11.so + +%files doc -f %{name}-doc.lang +%license LICENSES/*.txt + + +%changelog +* Sun Apr 12 2026 Steve Cossette - 6.6.4-2 +- Added evdev as BR for controller support (#22) + +* Fri Apr 10 2026 Steve Cossette - 6.6.4-1 +- 6.6.4 + +* Wed Mar 25 2026 Steve Cossette - 6.6.3-2 +- Disable DRM color pipelines on AMD + +* Tue Mar 17 2026 Steve Cossette - 6.6.3-1 +- 6.6.3 + +* Fri Mar 06 2026 Timothée Ravier - 6.6.2-2 +- Require iio-sensor-proxy instead of qt6-qtsensors + +* Tue Mar 03 2026 Steve Cossette - 6.6.2-1 +- 6.6.2 + +* Tue Feb 24 2026 Steve Cossette - 6.6.1-1 +- 6.6.1 + +* Sun Feb 15 2026 Neal Gompa - 6.6.0-2 +- Rebuild for libdisplay-info 0.3.0 + +* Thu Feb 12 2026 Steve Cossette - 6.6.0-1 +- 6.6.0 + +* Tue Jan 27 2026 Steve Cossette - 6.5.91-1 +- 6.5.91 + +* Fri Jan 16 2026 Fedora Release Engineering - 6.5.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + +* Tue Jan 13 2026 farchord@gmail.com - 6.5.90-1 +- 6.5.90 + +* Tue Jan 13 2026 farchord@gmail.com - 6.5.5-1 +- 6.5.5 + +* Fri Dec 12 2025 Steve Cossette - 6.5.4-2 +- Added urgent upstream fix + +* Tue Dec 09 2025 Steve Cossette - 6.5.4-1 +- 6.5.4 + +* Tue Nov 18 2025 Steve Cossette - 6.5.3-1 +- 6.5.3 + +* Mon Nov 10 2025 Janne Grunau - 6.5.2-2 +- Add patch to snap items to pixelgrid + +* Tue Nov 04 2025 Steve Cossette - 6.5.2-1 +- 6.5.2 + +* Sun Nov 02 2025 Neal Gompa - 6.5.1-2 +- Add patch to make kwin retry when drm device is initially not ready + +* Tue Oct 28 2025 Steve Cossette - 6.5.1-1 +- 6.5.1 + +* Wed Oct 22 2025 Steve Cossette - 6.5.0-2 +- Fix for kwin suspend crash + +* Fri Oct 17 2025 Steve Cossette - 6.5.0-1 +- 6.5.0 + +* Thu Oct 02 2025 Steve Cossette - 6.4.91-1 +- 6.4.91 + +* Tue Sep 30 2025 Jan Grulich - 6.4.5-2 +- Rebuild (qt6) + +* Thu Sep 25 2025 Steve Cossette - 6.4.90-1 +- 6.4.90 + +* Tue Sep 16 2025 farchord@gmail.com - 6.4.5-1 +- 6.4.5 + +* Tue Sep 02 2025 Jan Grulich - 6.4.4-5 +- Rebuild (qt6) + +* Mon Sep 01 2025 Marc Deop i Argemí - 6.4.4-4 +- Backport upstream patch + +* Tue Aug 26 2025 Alberto Maiaron - 6.4.4-3 +- Patch for issue 504959, Patch1: 598438b9bcb9487c9dc85e4eb5f84e3b73a71051.patch + +* Thu Aug 21 2025 Steve Cossette - 6.4.4-2 +- Workaround amdgpu applying GAMMA_LUT in test-only commits + +* Wed Aug 06 2025 Steve Cossette - 6.4.4-1 +- 6.4.4 + +* Thu Jul 24 2025 Fedora Release Engineering - 6.4.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + +* Tue Jul 15 2025 Steve Cossette - 6.4.3-1 +- 6.4.3 + +* Thu Jul 03 2025 Steve Cossette - 6.4.2-1 +- 6.4.2 + +* Tue Jun 24 2025 Marc Deop i Argemí - 6.4.1-1 +- 6.4.1 + +* Mon Jun 16 2025 Steve Cossette - 6.4.0-1 +- 6.4.0 + +* Sun Jun 08 2025 Jan Grulich - 6.3.91-3 +- Rebuild (qt6) + +* Sat May 31 2025 Marc Deop i Argemí - 6.3.91-2 +- Add signature file + +* Fri May 30 2025 Steve Cossette - 6.3.91-1 +- 6.3.91 + +* Fri May 16 2025 Neal Gompa - 6.3.90-1 +- Update 6.3.90 +- Merge kwin-wayland subpackage into main package + +* Mon May 12 2025 Neal Gompa - 6.3.5-2 +- Backport support for a11y keyboard monitor interface + +* Tue May 06 2025 Steve Cossette - 6.3.5-1 +- 6.3.5 + +* Mon Apr 14 2025 Jan Grulich - 6.3.4-3 +- Rebuild (qt6) + +* Thu Apr 10 2025 Alessandro Astone - 6.3.4-2 +- Backport patch to fix a common crash + +* Wed Apr 02 2025 Marc Deop i Argemí - 6.3.4-1 +- 6.3.4 + +* Tue Mar 25 2025 Jan Grulich - 6.3.3-2 +- Rebuild (qt6) + +* Wed Mar 12 2025 Steve Cossette - 6.3.3-1 +- 6.3.3 + +* Wed Mar 12 2025 Steve Cossette - 6.3.3-2 +- Fixed kwin project version + +* Tue Mar 11 2025 Steve Cossette - 6.3.3-1 +- 6.3.3 + +* Sat Mar 08 2025 Steve Cossette - 6.3.2.1-3 +- REVERT: Fix for a wayland-only crash + +* Wed Mar 05 2025 Steve Cossette - 6.3.2.1-2 +- Fix for a wayland-only crash + +* Thu Feb 27 2025 Steve Cossette - 6.3.2.1-1 +- 6.3.2.1 + +* Tue Feb 25 2025 Steve Cossette - 6.3.2-1 +- 6.3.2 + +* Tue Feb 18 2025 Steve Cossette - 6.3.1-1 +- 6.3.1 + +* Fri Feb 14 2025 Steve Cossette - 6.3.0-3 +- Added pipewire fix to build on lower versions (F40) + +* Wed Feb 12 2025 Steve Cossette - 6.3.0-2 +- Added patch for critical X11 crash + +* Thu Feb 06 2025 Marc Deop i Argemí - 6.3.0-1 +- 6.3.0 + +* Tue Feb 04 2025 Adam Williamson - 6.2.91-2 +- Backport fix for Xwayland crash issue (rhbz#2338761) + +* Thu Jan 23 2025 Steve Cossette - 6.2.91-1 +- 6.2.91 + +* Fri Jan 17 2025 Fedora Release Engineering - 6.2.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + +* Thu Jan 09 2025 Steve Cossette - 6.2.90-1 +- Beta 6.2.90 + +* Tue Dec 31 2024 Steve Cossette - 6.2.5-1 +- 6.2.5 + +* Tue Nov 26 2024 Marc Deop i Argemí - 6.2.4-1 +- 6.2.4 + +* Sun Nov 17 2024 Alessandro Astone - 6.2.3-2 +- Backport fix for keyboard focus after using the task switcher + https://bugs.kde.org/show_bug.cgi?id=495844 + https://bugs.kde.org/show_bug.cgi?id=491398 + +* Tue Nov 05 2024 Steve Cossette - 6.2.3-1 +- 6.2.3 + +* Tue Oct 22 2024 Steve Cossette - 6.2.2-1 +- 6.2.2 + +* Wed Oct 16 2024 Steve Cossette - 6.2.1.1-1 +- 6.2.1.1 + +* Wed Oct 16 2024 Adam Williamson - 6.2.1-2 +- Re-apply backport of MR #6409 (it was not in 6.2.0 or 6.2.1) (rhbz#2312900) + +* Tue Oct 15 2024 Steve Cossette - 6.2.1-1 +- 6.2.1 + +* Mon Oct 14 2024 Jan Grulich - 6.2.0-3 +- Rebuild (qt6) + +* Sun Oct 13 2024 Neal Gompa - 6.2.0-2 +- Backport patches from upstream + + Disable triple buffering with NVIDIA + + Fall back to an overlay plane if no cursor plane is available + +* Thu Oct 03 2024 Marc Deop i Argemí - 6.2.0-1 +- 6.2.0 + +* Wed Sep 25 2024 Neal Gompa - 6.1.90-4 +- Backport patch to run Xwayland-session.d scripts + +* Wed Sep 18 2024 Adam Williamson - 6.1.90-3 +- Backport MR #6409 to fix slowness with software rendering (rhbz#2312900) + +* Tue Sep 17 2024 Steve Cossette - 6.1.90-2 +- Added libwayland-server version requirement to be >= 1.23.0 (rhbz#2312499) + +* Thu Sep 12 2024 Marc Deop i Argemí - 6.1.90-1 +- 6.1.90 + +* Tue Sep 10 2024 Marc Deop i Argemí - 6.1.5-1 +- 6.1.5 + +* Tue Sep 10 2024 Janne Grunau - 6.1.4-2 +- Backport patches to use DRM render node for DMAbuf feedback (fixes + rhbx#2270430) + +* Fri Aug 09 2024 Steve Cossette - 6.1.4-1 +- 6.1.4 + +* Wed Jul 24 2024 Marc Deop i Argemí - 6.1.3-3 +- rebuilt + +* Thu Jul 18 2024 Fedora Release Engineering - 6.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Tue Jul 16 2024 Marc Deop i Argemí - 6.1.3-1 +- 6.1.3 + +* Thu Jul 04 2024 Marc Deop i Argemí - 6.1.2-1 +- 6.1.2 + +* Thu Jul 04 2024 Kevin Kofler - 6.1.1.2-2 +- Rebuild for libdisplay-info 0.2.0 + +* Thu Jun 27 2024 Steve Cossette - 6.1.1.2-1 +- 6.1.1.2 + +* Tue Jun 25 2024 Marc Deop i Argemí - 6.1.1-1 +- 6.1.1 + +* Tue Jun 18 2024 Steve Cossette - 6.1.0-3 +- Added libeis as a build dependancy + +* Mon Jun 17 2024 Alessandro Astone - 6.1.0-2 +- Backport patch to allow org.freedesktop.locale1 in livesys + +* Thu Jun 13 2024 Marc Deop i Argemí - 6.1.0-1 +- 6.1.0 + +* Fri May 24 2024 Marc Deop i Argemí - 6.0.90-1 +- 6.0.90 + +* Wed May 22 2024 Marc Deop i Argemí - 6.0.5-1 +- 6.0.5 + +* Mon May 20 2024 Jan Grulich - 6.0.4.1-4 +- Backport fix for drag and drop causing Chrome to freeze + +* Tue May 14 2024 Steve Cossette - 6.0.4.1-3 +- backport linux-drm-syncobj-v1 support + +* Sat May 04 2024 Neal Gompa - 6.0.4.1-2 +- Persist CAP_SYS_NICE capability for kwin_wayland binary + +* Mon Apr 22 2024 Marc Deop i Argemí - 6.0.4.1-1 +- 6.0.4.1 + +* Tue Apr 16 2024 Marc Deop i Argemí - 6.0.4-1 +- 6.0.4 + +* Thu Apr 04 2024 Jan Grulich - 6.0.3.1-3 +- Rebuild (qt6) + +* Sun Mar 31 2024 Neal Gompa - 6.0.3.1-2 +- Fix libplasma dependency (Kevin Kofler) + +* Wed Mar 27 2024 Marc Deop i Argemí - 6.0.3.1-1 +- 6.0.3.1 + +* Tue Mar 26 2024 Marc Deop i Argemí - 6.0.3-1 +- 6.0.3 + +* Tue Mar 12 2024 Marc Deop i Argemí - 6.0.2-1 +- 6.0.2 + +* Wed Mar 06 2024 Marc Deop i Argemí - 6.0.1-1 +- 6.0.1 + +* Fri Mar 1 2024 Marie Loise Nolden - 6.0.0-2 +- use BuildRequires: cmake(QAccessibilityClient6) for Qt6 version + +* Wed Feb 21 2024 Marc Deop i Argemí - 6.0.0-1 +- 6.0.0 + +* Fri Feb 16 2024 Jan Grulich - 5.93.0-5 +- Rebuild (qt6) + +* Thu Feb 15 2024 Alessandro Astone - 5.93.0-4 +- Stricter x11 obsoletes version + +* Thu Feb 15 2024 Alessandro Astone - 5.93.0-3 +- Backport patch to fix window screencasts being vertically mirrored + +* Sat Feb 03 2024 Steve Cossette - 5.93.0-2 +- Added patch that fixes kwin glitch with HDR and some other issues + +* Wed Jan 31 2024 Marc Deop i Argemí - 5.93.0-1 +- 5.93.0 + +* Thu Jan 25 2024 Fedora Release Engineering - 5.92.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Jan 21 2024 Fedora Release Engineering - 5.92.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Wed Jan 10 2024 Marc Deop i Argemí - 5.92.0-1 +- 5.92.0 + +* Wed Jan 03 2024 Alessandro Astone - 5.91.0-2 +- Only provide firstboot(windowmanager) with kwin-x11 + +* Thu Dec 21 2023 Marc Deop i Argemí - 5.91.0-1 +- 5.91.0 + +* Mon Dec 18 2023 Neal Gompa - 5.90.0-3 +- Add BR for xwayland + +* Mon Dec 04 2023 Alessandro Astone - 5.90.0-2 +- Enable kactivities support + +* Sun Dec 03 2023 Justin Zobel - 5.90.0-1 +- Update to 5.90.0 + +* Wed Nov 29 2023 Jan Grulich - 5.27.80-6 +- Rebuild (qt6) + +* Fri Nov 24 2023 Alessandro Astone - 5.27.80-5 +- Explicit QML runtime dependencies + +* Fri Nov 24 2023 Alessandro Astone - 5.27.80-4 +- plasma-framework was renamed + +* Fri Nov 17 2023 Neal Gompa - 5.27.80-3 +- Drop -x11 subpackage and have -wayland subpackage obsolete it + +* Wed Nov 15 2023 Steve Cossette - 5.27.80-2 +- Updated -common requirement mistake + +* Mon Nov 13 2023 Steve Cossette - 5.27.80-1 +- 5.27.80 + +* Fri Nov 03 2023 Neal Gompa - 5.27.9-2 +- Mark kwin-x11 as deprecated + +* Tue Oct 24 2023 Steve Cossette - 5.27.9-1 +- 5.27.9 + +* Tue Sep 12 2023 justin.zobel@gmail.com - 5.27.8-1 +- 5.27.8 + +* Tue Aug 01 2023 Marc Deop i Argemí - 5.27.7-1 +- 5.27.7 + +* Thu Jul 20 2023 Fedora Release Engineering - 5.27.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Sun Jun 25 2023 Marc Deop i Argemí - 5.27.6-1 +- 5.27.6 + +* Wed May 10 2023 Marc Deop i Argemí - 5.27.5-1 +- 5.27.5 + +* Wed Apr 12 2023 Marc Deop marcdeop@fedoraproject.org - 5.27.4.1-1 +- Re-spin from upstream + +* Tue Apr 04 2023 Marc Deop i Argemí - 5.27.4-1 +- 5.27.4 + +* Mon Mar 20 2023 Marc Deop i Argemí - 5.27.3-2 +- Add patch from upstream +- Fixes BZ#2180100 + +* Tue Mar 14 2023 Marc Deop i Argemí - 5.27.3-1 +- 5.27.3 + +* Tue Feb 28 2023 Marc Deop i Argemí - 5.27.2-1 +- 5.27.2 + +* Sun Feb 26 2023 Marc Deop i Argemí - 5.27.1-3 +- Add missing BuildRequires +- Clean up commented code + +* Wed Feb 22 2023 Marc Deop i Argemí - 5.27.1-2 +- Add patch to fix BZ#2168034 + +* Tue Feb 21 2023 Marc Deop i Argemí - 5.27.1-1 +- 5.27.1 + +* Mon Feb 20 2023 Adam Williamson - 5.27.0-2 +- Allow VT switching even if global shortcuts are disabled + +* Thu Feb 09 2023 Marc Deop - 5.27.0-1 +- 5.27.0 + +* Thu Jan 19 2023 Marc Deop - 5.26.90-1 +- 5.26.90 + +* Thu Jan 19 2023 Fedora Release Engineering - 5.26.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Thu Jan 05 2023 Justin Zobel - 5.26.5-1 +- Update to 5.26.5 + +* Tue Nov 29 2022 Marc Deop - 5.26.4-1 +- 5.26.4 + +* Wed Nov 09 2022 Marc Deop - 5.26.3-1 +- 5.26.3 + +* Wed Oct 26 2022 Marc Deop - 5.26.2-1 +- 5.26.2 + +* Tue Oct 18 2022 Marc Deop - 5.26.1-1 +- 5.26.1 + +* Thu Oct 06 2022 Marc Deop - 5.26.0-1 +- 5.26.0 + +* Sat Sep 17 2022 Marc Deop - 5.25.90-1 +- 5.25.90 + +* Wed Sep 07 2022 Marc Deop - 5.25.5-1 +- 5.25.5 + +* Wed Aug 03 2022 Justin Zobel - 5.25.4-1 +- Update to 5.25.4 + +* Thu Jul 21 2022 Fedora Release Engineering - 5.25.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Thu Jul 14 2022 Jan Grulich - 5.25.3-2 +- Rebuild (qt5) + +* Tue Jul 12 2022 Marc Deop - 5.25.3-1 +- 5.25.3 + +* Tue Jun 28 2022 Marc Deop - 5.25.2-1 +- 5.25.2 + +* Tue Jun 21 2022 Marc Deop - 5.25.1-1 +- 5.25.1 + +* Thu Jun 09 2022 Marc Deop - 5.25.0-1 +- 5.25.0 + +* Fri May 20 2022 Marc Deop - 5.24.90-1 +- 5.24.90 +- remove kwayland-server dependency + +* Tue May 17 2022 Jan Grulich - 5.24.5-2 +- Rebuild (qt5) + +* Tue May 03 2022 Marc Deop - 5.24.5-1 +- 5.24.5 + +* Thu Mar 31 2022 Justin Zobel - 5.24.4-1 +- Update to 5.24.4 and remove patch + +* Mon Mar 21 2022 Adam Williamson - 5.24.3-3 +- Backport MR #2163 (edited to cover vbox) to fix VM cursor offset (#2063969) + +* Thu Mar 10 2022 Marc Deop - 5.24.3-2 +- Rebuild (qt5) + +* Tue Mar 08 2022 Marc Deop - 5.24.3-1 +- 5.24.3 + +* Tue Mar 08 2022 Jan Grulich - 5.24.2-3 +- Rebuild (qt5) + +* Wed Feb 23 2022 Rex Dieter - 5.24.2-2 +- pull in upstream fix for https://bugs.kde.org/show_bug.cgi?id=449273 + +* Tue Feb 22 2022 Rex Dieter - 5.24.2-1 +- 5.24.2 + +* Tue Feb 15 2022 Marc Deop - 5.24.1-1 +- 5.24.1 + +* Fri Feb 11 2022 Marc Deop - 5.24.0-2 +- Rebuild due to tarball re-spin + +* Thu Feb 03 2022 Marc Deop - 5.24.0-1 +- 5.24.0 + +* Thu Jan 20 2022 Fedora Release Engineering - 5.23.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Thu Jan 13 2022 Marc Deop - 5.23.90-1 +- 5.23.90 + +* Tue Jan 04 2022 Marc Deop - 5.23.5-1 +- 5.23.5 + +* Tue Dec 14 2021 Marc Deop - 5.23.4-1 +- 5.23.4 + +* Wed Nov 10 2021 Rex Dieter - 5.23.3-1 +- 5.23.3 + +* Tue Oct 26 2021 Rex Dieter - 5.23.2-1 +- 5.23.2 + +* Sat Oct 23 2021 Marc Deop - 5.23.1-1 +- 5.23.1 + +* Fri Oct 08 2021 Marc Deop - 5.23.0-1 +- 5.23.0 + +* Sun Sep 19 2021 Marc Deop - 5.22.90-2 +- Remove patch already applied upstream +- Add BuildRequires plasma-wayland-protocols-devel +- Adjust files section + +* Fri Sep 17 2021 Marc Deop - 5.22.90-1 +- 5.22.90 + +* Fri Sep 10 2021 Rex Dieter - 5.22.5-2 +- pull in proposed libglvnd-1.3.4 FTBFS fix (kde#440372, rh#2002431) + +* Tue Aug 31 2021 Jan Grulich - 5.22.5-1 +- 5.22.5 + +* Tue Jul 27 2021 Jan Grulich - 5.22.4-1 +- 5.22.4 + +* Thu Jul 22 2021 Fedora Release Engineering - 5.22.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Mon Jul 12 2021 Jan Grulich - 5.22.3-1 +- 5.22.3 + +* Tue Jun 22 2021 Jan Grulich - 5.22.2.1-1 +- 5.22.2.1 + +* Tue Jun 22 2021 Jan Grulich - 5.22.2-1 +- 5.22.2 + +* Tue Jun 15 2021 Jan Grulich - 5.22.1-1 +- 5.22.1 + +* Sun Jun 06 2021 Jan Grulich - 5.22.0-1 +- 5.22.0 + +* Fri May 14 2021 Rex Dieter - 5.21.90-1 +- 5.21.90 + +* Thu May 13 2021 Jonathan Wakely - 5.21.5-3 +- Add patch to fix focus follows mouse (#1960208) + +* Wed May 05 2021 Jan Grulich - 5.21.5-2 +- Use dma-bufs for screensharing only when client asks for it + +* Tue May 04 2021 Jan Grulich - 5.21.5-1 +- 5.21.5 + +* Tue Apr 06 2021 Jan Grulich - 5.21.4-1 +- 5.21.4 + +* Tue Mar 16 2021 Jan Grulich - 5.21.3-1 +- 5.21.3 + +* Tue Mar 02 2021 Jan Grulich - 5.21.2-1 +- 5.21.2 + +* Tue Feb 23 2021 Jan Grulich - 5.21.1-1 +- 5.21.1 + +* Mon Feb 15 2021 Jan Grulich - 5.21.0-2 +- Tarball respin + +* Thu Feb 11 2021 Jan Grulich - 5.21.0-1 +- 5.21.0 + +* Mon Feb 08 2021 Neal Gompa - 5.20.90-4 +- Add patch to ensure Xauthority file is generated for Wayland (rhbz#1921947) + +* Thu Jan 28 2021 Rex Dieter - 5.20.90-3 +- pull in upstream wayland fix (kde#432189) +- .spec cosmetics +- revert BR: make (not needed) + +* Tue Jan 26 2021 Fedora Release Engineering - 5.20.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Thu Jan 21 2021 Jan Grulich - 5.20.90-1 +- 5.20.90 (beta) + +* Tue Jan 5 16:03:31 CET 2021 Jan Grulich - 5.20.5-1 +- 5.20.5 + +* Fri Jan 01 2021 Rex Dieter - 5.20.4-3 +- -wayland: add explicit versioned dep on kwayland-server + +* Thu Dec 10 10:57:46 CET 2020 Jan Grulich - 5.20.4-2 +- Fix screensharing on Wayland with Chromium + +* Tue Dec 1 09:42:59 CET 2020 Jan Grulich - 5.20.4-1 +- 5.20.4 + +* Mon Nov 30 2020 Jan Grulich - 5.20.3-3 +- Fix screensharing for xwayland apps + +* Mon Nov 23 07:53:19 CET 2020 Jan Grulich - 5.20.3-2 +- rebuild (qt5) + +* Wed Nov 11 08:33:06 CET 2020 Jan Grulich - 5.20.3-1 +- 5.20.3 + +* Thu Nov 5 07:55:10 CET 2020 Jan Grulich - 5.20.2-3 +- Backport upstream fix for clipboard issue + +* Sat Oct 31 10:01:51 EDT 2020 Neal Gompa - 5.20.2-2 +- Obsolete kwin-wayland-nvidia package by kwin-wayland since kwin now + automatically supports NVIDIA graphics correctly on Wayland + +* Tue Oct 27 14:23:03 CET 2020 Jan Grulich - 5.20.2-1 +- 5.20.2 + +* Tue Oct 20 15:28:57 CEST 2020 Jan Grulich - 5.20.1-1 +- 5.20.1 + +* Tue Oct 13 14:51:44 CEST 2020 Jan Grulich - 5.20.0-2 +- Updated sources + +* Sun Oct 11 19:50:03 CEST 2020 Jan Grulich - 5.20.0-1 +- 5.20.0 + +* Sat Oct 03 2020 Neal Gompa - 5.19.90-2 +- Use Wayland by default for F34+ + https://fedoraproject.org/wiki/Changes/WaylandByDefaultForPlasma + +* Fri Sep 18 2020 Jan Grulich - 5.19.90-1 +- 5.19.90 + +* Thu Sep 17 2020 Neal Gompa - 5.19.5-3 +- Split out X11 support and set up conditional for Wayland by default +- Add kwin-wayland-nvidia package for NVIDIA driver configuration + +* Fri Sep 11 2020 Jan Grulich - 5.19.5-2 +- rebuild (qt5) + +* Tue Sep 01 2020 Jan Grulich - 5.19.5-1 +- 5.19.5 + +* Tue Jul 28 2020 Jan Grulich - 5.19.4-1 +- 5.19.4 + +* Tue Jul 28 2020 Fedora Release Engineering - 5.19.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue Jul 14 2020 Jan Grulich - 5.19.3-2 +- Don't perform MouseActivateRaiseAndPassClick for topmost windows + +* Tue Jul 07 2020 Jan Grulich - 5.19.3-1 +- 5.19.3 + +* Tue Jun 23 2020 Jan Grulich - 5.19.2-1 +- 5.19.2 + +* Wed Jun 17 2020 Martin Kyral - 5.19.1-1 +- 5.19.1 + +* Tue Jun 9 2020 Martin Kyral - 5.19.0-1 +- 5.19.0 + +* Fri May 15 2020 Martin Kyral - 5.18.90-1 +- 5.18.90 + +* Tue May 05 2020 Jan Grulich - 5.18.5-1 +- 5.18.5 + +* Mon Apr 06 2020 Rex Dieter - 5.18.4.1-2 +- rebuild (qt5) + +* Sat Apr 04 2020 Rex Dieter - 5.18.4.1-1 +- 5.18.4.1 + +* Tue Mar 31 2020 Jan Grulich - 5.18.4-1 +- 5.18.4 + +* Tue Mar 10 2020 Jan Grulich - 5.18.3-1 +- 5.18.3 + +* Tue Feb 25 2020 Jan Grulich - 5.18.2-1 +- 5.18.2 + +* Tue Feb 18 2020 Jan Grulich - 5.18.1-1 +- 5.18.1 + +* Tue Feb 11 2020 Jan Grulich - 5.18.0-1 +- 5.18.0 + +* Wed Jan 29 2020 Fedora Release Engineering - 5.17.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Jan 16 2020 Jan Grulich - 5.17.90-1 +- 5.17.90 + +* Wed Jan 08 2020 Jan Grulich - 5.17.5-1 +- 5.17.5 + +* Mon Dec 09 2019 Jan Grulich - 5.17.4-2 +- rebuild (qt5) + +* Thu Dec 05 2019 Jan Grulich - 5.17.4-1 +- 5.17.4 + +* Wed Nov 13 2019 Martin Kyral - 5.17.3-1 +- 5.17.3 + +* Wed Oct 30 2019 Jan Grulich - 5.17.2-1 +- 5.17.2 + +* Wed Oct 23 2019 Jan Grulich - 5.17.1-1 +- 5.17.1 + +* Wed Oct 16 2019 Jan Grulich - 5.17.0-2 +- Updated tarball + +* Thu Oct 10 2019 Jan Grulich - 5.17.0-1 +- 5.17.0 + +* Wed Sep 25 2019 Jan Grulich - 5.16.90-2 +- rebuild (qt5) + +* Fri Sep 20 2019 Martin Kyral - 5.16.90-1 +- 5.16.90 + +* Fri Sep 06 2019 Martin Kyral - 5.16.5-1 +- 5.16.5 + +* Tue Jul 30 2019 Martin Kyral - 5.16.4-1 +- 5.16.4 + +* Thu Jul 25 2019 Fedora Release Engineering - 5.16.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Wed Jul 10 2019 Martin Kyral - 5.16.3-1 +- 5.16.3 + +* Wed Jun 26 2019 Martin Kyral - 5.16.2-1 +- 5.16.2 + +* Tue Jun 25 2019 Rex Dieter - 5.16.1-3 +- rebuild (qt5) + +* Wed Jun 19 2019 Rex Dieter - 5.16.1-2 +- pull in 5.16 branch fix + +* Tue Jun 18 2019 Rex Dieter - 5.16.1-1 +- 5.16.1 + +* Mon Jun 17 2019 Jan Grulich - 5.16.0-2 +- rebuild (qt5) + +* Tue Jun 11 2019 Martin Kyral - 5.16.0-1 +- 5.16.0 + +* Wed Jun 05 2019 Jan Grulich - 5.15.90-2 +- rebuild (qt5) + +* Thu May 16 2019 Martin Kyral - 5.15.90-1 +- 5.15.90 + +* Thu May 09 2019 Martin Kyral - 5.15.5-1 +- 5.15.5 + +* Wed Apr 03 2019 Rex Dieter - 5.15.4-1 +- 5.15.4 + +* Wed Mar 13 2019 Martin Kyral - 5.15.3.2-1 +- 5.15.3.2 +- tarball respun to remove docs causing build issues with KDocTools < 5.57 + +* Tue Mar 12 2019 Martin Kyral - 5.15.3-1 +- 5.15.3 + +* Sun Mar 03 2019 Rex Dieter - 5.15.2-3 +- rebuild (qt5) + +* Thu Feb 28 2019 Pete Walter - 5.15.2-2 +- Update wayland deps + +* Tue Feb 26 2019 Rex Dieter - 5.15.2-1 +- 5.15.2 + +* Tue Feb 19 2019 Rex Dieter - 5.15.1-1 +- 5.15.1 + +* Wed Feb 13 2019 Martin Kyral - 5.15.0-1 +- 5.15.0 + +* Fri Feb 01 2019 Fedora Release Engineering - 5.14.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sun Jan 20 2019 Martin Kyral - 5.14.90-1 +- 5.14.90 + +* Wed Dec 12 2018 Rex Dieter - 5.14.4-2 +- rebuild (qt5) + +* Tue Nov 27 2018 Rex Dieter - 5.14.4-1 +- 5.14.4 + +* Thu Nov 08 2018 Martin Kyral - 5.14.3-1 +- 5.14.3 + +* Wed Oct 24 2018 Rex Dieter - 5.14.2-1 +- 5.14.2 + +* Tue Oct 16 2018 Rex Dieter - 5.14.1-1 +- 5.14.1 + +* Fri Oct 05 2018 Rex Dieter - 5.14.0-1 +- 5.14.0 + +* Fri Sep 21 2018 Jan Grulich - 5.13.90-2 +- rebuild (qt5) + +* Fri Sep 14 2018 Martin Kyral - 5.13.90-1 +- 5.13.90 + +* Tue Sep 04 2018 Rex Dieter - 5.13.5-1 +- 5.13.5 + +* Fri Aug 24 2018 Rex Dieter - 5.13.4-2 +- rebuild + +* Thu Aug 02 2018 Rex Dieter - 5.13.4-1 +- 5.13.4 + +* Fri Jul 20 2018 Rex Dieter - 5.13.3-4 +- use %%_qt5_qmldir (#1604528) + +* Fri Jul 13 2018 Fedora Release Engineering - 5.13.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Jul 11 2018 Martin Kyral - 5.13.3-1 +- 5.13.3 + +* Mon Jul 09 2018 Martin Kyral - 5.13.2-1 +- 5.13.2 + +* Thu Jun 21 2018 Rex Dieter - 5.13.1-2 +- rebuild (qt5) + +* Tue Jun 19 2018 Martin Kyral - 5.13.1-1 +- 5.13.1 + +* Sat Jun 09 2018 Rex Dieter - 5.13.0-1 +- 5.13.0 + +* Sun May 27 2018 Rex Dieter - 5.12.90-2 +- rebuild (qt5) + +* Fri May 18 2018 Martin Kyral - 5.12.90-1 +- 5.12.90 + +* Tue May 01 2018 Rex Dieter - 5.12.5-1 +- 5.12.5 + +* Tue Mar 27 2018 Rex Dieter - 5.12.4-1 +- 5.12.4 + +* Thu Mar 15 2018 Rex Dieter - 5.12.3-2 +- -common: add versioned dep on kf5-kwayland (no longer optional) +- use %%make_build %%ldconfig_scriptlets +- BR: libcap-devel + +* Tue Mar 06 2018 Rex Dieter - 5.12.3-1 +- 5.12.3 + +* Wed Feb 21 2018 Jan Grulich - 5.12.2-1 +- 5.12.2 + +* Tue Feb 13 2018 Jan Grulich - 5.12.1-1 +- 5.12.1 + +* Wed Feb 07 2018 Fedora Release Engineering - 5.12.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Sun Feb 04 2018 Rex Dieter - 5.12.0-2 +- respin + +* Fri Feb 02 2018 Jan Grulich - 5.12.0-1 +- 5.12.0 + +* Thu Jan 18 2018 Igor Gnatenko - 5.11.95-2 +- Remove obsolete scriptlets + +* Mon Jan 15 2018 Jan Grulich - 5.11.95-1 +- 5.11.95 + +* Tue Jan 02 2018 Rex Dieter - 5.11.5-1 +- 5.11.5 + +* Wed Dec 20 2017 Jan Grulich - 5.11.4-2 +- rebuild (qt5) + +* Thu Nov 30 2017 Martin Kyral - 5.11.4-1 +- 5.11.4 + +* Mon Nov 27 2017 Rex Dieter - 5.11.3-2 +- rebuild (qt5) + +* Wed Nov 08 2017 Rex Dieter - 5.11.3-1 +- 5.11.3 + +* Wed Oct 25 2017 Martin Kyral - 5.11.2-1 +- 5.11.2 + +* Tue Oct 17 2017 Rex Dieter - 5.11.1-1 +- 5.11.1 + +* Wed Oct 11 2017 Martin Kyral - 5.11.0-1 +- 5.11.0 + +* Wed Oct 11 2017 Rex Dieter - 5.10.5-3 +- confirmed only -wayland uses private api + +* Tue Oct 10 2017 Jan Grulich - 5.10.5-2 +- rebuild (qt5) + +* Thu Aug 24 2017 Rex Dieter - 5.10.5-1 +- 5.10.5 + +* Thu Aug 03 2017 Fedora Release Engineering - 5.10.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 5.10.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Thu Jul 20 2017 Rex Dieter - 5.10.4-1 +- 5.10.4 + +* Wed Jul 19 2017 Rex Dieter - 5.10.3.1-2 +- rebuild (qt5) + +* Mon Jul 03 2017 Rex Dieter - 5.10.3.1-1 +- kwin-5.10.3.1 + +* Mon Jul 03 2017 Rex Dieter - 5.10.3-3 +- respin + +* Sun Jul 02 2017 Rex Dieter - 5.10.3-2 +- enable tests, support %%bootstrap, update URL + +* Tue Jun 27 2017 Rex Dieter - 5.10.3-1 +- 5.10.3 + +* Thu Jun 15 2017 Rex Dieter - 5.10.2-1 +- 5.10.2 + +* Tue Jun 06 2017 Rex Dieter - 5.10.1-1 +- 5.10.1 + +* Wed May 31 2017 Jan Grulich - 5.10.0-1 +- 5.10.0 + +* Thu May 11 2017 Rex Dieter - 5.9.5-3 +- rebuild (qt5) + +* Wed Apr 26 2017 Rex Dieter - 5.9.5-2 +- -doc: use %%find_lang --with-html + +* Wed Apr 26 2017 Rex Dieter - 5.9.5-1 +- 5.9.5 + +* Fri Mar 31 2017 Rex Dieter - 5.9.4-2 +- rebuild (qt5), update URL + +* Thu Mar 23 2017 Rex Dieter - 5.9.4-1 +- 5.9.4 + +* Sat Mar 04 2017 Rex Dieter - 5.9.3-2 +- rebuild + +* Wed Mar 01 2017 Jan Grulich - 5.9.3-1 +- 5.9.3 + +* Tue Feb 21 2017 Rex Dieter - 5.8.6-1 +- 5.8.6 + +* Fri Feb 10 2017 Fedora Release Engineering - 5.8.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Wed Dec 28 2016 Rex Dieter - 5.8.5-1 +- 5.8.5 + +* Thu Dec 15 2016 Rex Dieter - 5.8.4-3 +- rebuild (qt5) + +* Sat Dec 03 2016 Rex Dieter - 5.8.4-2 +- rebuild (qt5) + +* Tue Nov 22 2016 Rex Dieter - 5.8.4-1 +- 5.8.4 + +* Thu Nov 17 2016 Rex Dieter - 5.8.3-2 +- release++ + +* Thu Nov 17 2016 Rex Dieter - 5.8.3-1.2 +- branch rebuild (qt5) + +* Tue Nov 01 2016 Rex Dieter - 5.8.3-1 +- 5.8.3 + +* Mon Oct 31 2016 Rex Dieter - 5.8.2-2 +- pull in upstream fixes + +* Tue Oct 18 2016 Rex Dieter - 5.8.2-1 +- 5.8.2 + +* Tue Oct 11 2016 Rex Dieter - 5.8.1-1 +- 5.8.1 + +* Thu Sep 29 2016 Rex Dieter - 5.8.0-1 +- 5.8.0 + +* Thu Sep 22 2016 Rex Dieter - 5.7.95-1 +- 5.7.95 + +* Tue Sep 13 2016 Rex Dieter - 5.7.5-1 +- 5.7.5 + +* Tue Aug 23 2016 Rex Dieter - 5.7.4-1 +- 5.7.4 + +* Tue Aug 02 2016 Rex Dieter - 5.7.3-2 +- patch-n-relax breeze verision + +* Tue Aug 02 2016 Rex Dieter - 5.7.3-1 +- 5.7.3 + +* Fri Jul 22 2016 Rex Dieter - 5.7.2-2 +- BR: plasma-breeze-devel + +* Tue Jul 19 2016 Rex Dieter - 5.7.2-1 +- 5.7.2 + +* Tue Jul 19 2016 Rex Dieter - 5.7.1-5 +- rebuild (qt5) + +* Fri Jul 15 2016 Rex Dieter - 5.7.1-4 +- add versioned qt5 dep in main pkg too + +* Thu Jul 14 2016 Rex Dieter - 5.7.1-3 +- -wayland: Requires: xorg-x11-server-Xwayland + +* Thu Jul 14 2016 Rex Dieter - 5.7.1-2 +- -wayland: KWinQpaPlugin uses private Qt5 apis, BR: qt5-qtbase-private-devel + +* Tue Jul 12 2016 Rex Dieter - 5.7.1-1 +- 5.7.1 + +* Thu Jun 30 2016 Rex Dieter - 5.7.0-1 +- 5.7.0 + +* Sat Jun 25 2016 Rex Dieter - 5.6.95-1 +- 5.6.95 + +* Tue Jun 14 2016 Rex Dieter - 5.6.5-1 +- 5.6.5 + +* Sat May 14 2016 Rex Dieter - 5.6.4-1 +- 5.6.4 + +* Wed Apr 20 2016 Rex Dieter - 5.6.3-2 +- tighten kscreenlocker, kdecoration runtime deps (#1328942) +- -wayland: relax kwayland-integration runtime dep + +* Tue Apr 19 2016 Rex Dieter - 5.6.3-1 +- 5.6.3 + +* Sat Apr 09 2016 Rex Dieter - 5.6.2-1 +- 5.6.2 + +* Fri Apr 08 2016 Rex Dieter - 5.6.1-1 +- 5.6.1 + +* Tue Mar 01 2016 Daniel Vrátil - 5.5.5-1 +- Plasma 5.5.5 + +* Thu Feb 04 2016 Fedora Release Engineering - 5.5.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jan 27 2016 Daniel Vrátil - 5.5.4-1 +- Plasma 5.5.4 + +* Thu Jan 14 2016 Rex Dieter 5.5.3-2 +- -BR: cmake, use %%license + +* Thu Jan 07 2016 Daniel Vrátil - 5.5.3-1 +- Plasma 5.5.3 + +* Thu Dec 31 2015 Rex Dieter 5.5.2-2 +- update URL, use %%majmin_ver for more plasma-related deps + +* Thu Dec 31 2015 Rex Dieter - 5.5.2-1 +- 5.5.2 + +* Fri Dec 18 2015 Daniel Vrátil - 5.5.1-1 +- Plasma 5.5.1 + +* Thu Dec 03 2015 Daniel Vrátil - 5.5.0-1 +- Plasma 5.5.0 + +* Wed Nov 25 2015 Daniel Vrátil - 5.4.95-1 +- Plasma 5.4.95 + +* Thu Nov 05 2015 Daniel Vrátil - 5.4.3-1 +- Plasma 5.4.3 + +* Sat Oct 24 2015 Rex Dieter 5.4.2-4 +- respin (rawhide) + +* Fri Oct 23 2015 Rex Dieter 5.4.2-3 +- latest batch of upstream fixes (kde#344278,kde#354164,kde#351763,kde#354090) + +* Tue Oct 20 2015 Rex Dieter 5.4.2-2 +- .spec cosmetics, backport kwin/aurorae crasher fix (kde#346857) + +* Thu Oct 01 2015 Rex Dieter - 5.4.2-1 +- 5.4.2 + +* Thu Oct 01 2015 Rex Dieter 5.4.1-3 +- tigthen kdecorration-devel dep + +* Thu Oct 01 2015 Rex Dieter 5.4.1-2 +- -devel: move dbus xml interface files here + +* Wed Sep 09 2015 Rex Dieter - 5.4.1-1 +- 5.4.1 + +* Wed Sep 02 2015 Rex Dieter 5.4.0-4 +- versioned kf5-kwayland dep too +- make kwayland-integration dep arch'd + +* Wed Sep 02 2015 Rex Dieter 5.4.0-3 +- add versioned Requires: kwin-libs dep to main pkg + +* Tue Aug 25 2015 Daniel Vrátil - 5.4.0-2 +- add upstream patch to fix crash +- make sure kwayland-integration is installed for kwin-wayland + +* Fri Aug 21 2015 Daniel Vrátil - 5.4.0-1 +- Plasma 5.4.0 + +* Thu Aug 13 2015 Daniel Vrátil - 5.3.95-1 +- Plasma 5.3.95 + +* Thu Jun 25 2015 Daniel Vrátil - 5.3.2-1 +- Plasma 5.3.2 + +* Wed Jun 17 2015 Rex Dieter 5.3.1-4 +- BR: kf5-kcompletion-devel kf5-kiconthemes-devel kf5-kio-devel + +* Wed Jun 17 2015 Fedora Release Engineering - 5.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Tue May 26 2015 Daniel Vrátil - 5.3.1-1 +- Plasma 5.3.1 + +* Tue May 19 2015 Rex Dieter 5.3.0-5 +- move dbus xml files to -libs (so present for -devel) + +* Sun May 17 2015 Rex Dieter - 5.3.0-4 +- followup SM fix, discard support (kde#341930) +- note qt5-qtmultimedia dep is runtime-only + +* Thu May 14 2015 Rex Dieter - 5.3.0-3 +- test candidate SM fixes (reviewboard#123580,kde#341930) +- move libkdeinit bits out of -libs +- move dbus interface xml to runtime pkg +- drop %%config from knsrc files +- enable wayland support (f21+) +- .spec cosmetics + +* Wed Apr 29 2015 Jan Grulich - 5.3.0-2 +- BR xcb-util-cursor-devel + +* Mon Apr 27 2015 Daniel Vrátil - 5.3.0-1 +- Plasma 5.3.0 + +* Wed Apr 22 2015 Daniel Vrátil - 5.2.95-1 +- Plasma 5.2.95 + +* Tue Apr 07 2015 Rex Dieter 5.2.2-2 +- tarball respin + +* Fri Mar 20 2015 Daniel Vrátil - 5.2.2-1 +- Plasma 5.2.2 + +* Fri Feb 27 2015 Daniel Vrátil - 5.2.1-4 +- Rebuild (GCC 5) + +* Fri Feb 27 2015 Rex Dieter - 5.2.1-3 +- Provide /usr/bin/kwin too (#1197135) +- bump plasma_version macro + +* Fri Feb 27 2015 Rex Dieter 5.2.1-2 +- Provides: firstboot(windowmanager) = kwin_x11 (#605675) + +* Tue Feb 24 2015 Daniel Vrátil - 5.2.1-1 +- Plasma 5.2.1 + +* Sun Feb 08 2015 Daniel Vrátil - 5.2.0.1-2 +- Obsoletes: kwin-gles, kwin-gles-libs + +* Wed Jan 28 2015 Daniel Vrátil - 5.2.0.1-1 +- Update to upstream hotfix release 5.2.0.1 (kwindeco KCM bugfix) + +* Wed Jan 28 2015 Daniel Vrátil - 5.2.0-3 +- add upstream patch for bug #341971 - fixes Window decorations KCM + +* Tue Jan 27 2015 Daniel Vrátil - 5.2.0-2 +- -doc: Don't require arch-specific kwin in noarch package + +* Mon Jan 26 2015 Daniel Vrátil - 5.2.0-1 +- Plasma 5.2.0 + +* Mon Jan 12 2015 Daniel Vrátil - 5.1.95-1.beta +- Plasma 5.1.95 Beta + +* Wed Dec 17 2014 Daniel Vrátil - 5.1.2-2 +- Plasma 5.1.2 + +* Tue Nov 18 2014 Daniel Vrátil - 5.1.1-3 +- Fixed license +- Fixed scriptlets +- Fixed Conflicts in -devel +- -docs is noarch + +* Wed Nov 12 2014 Daniel Vrátil - 5.1.1-2 +- added optional Wayland support + +* Fri Nov 07 2014 Daniel Vrátil - 5.1.1-1 +- Plasma 5.1.1 + +* Tue Oct 14 2014 Daniel Vrátil - 5.1.0.1-1 +- Plasma 5.1.0.1 + +* Thu Oct 09 2014 Daniel Vrátil - 5.1.0-1 +- Plasma 5.1.0 + +* Tue Sep 16 2014 Daniel Vrátil - 5.0.2-1 +- Plasma 5.0.2 + +* Sun Aug 10 2014 Daniel Vrátil - 5.0.1-1 +- Plasma 5.0.1 + +* Wed Jul 16 2014 Daniel Vrátil 5.0.0-1 +- Plasma 5.0.0 + +* Wed May 14 2014 Daniel Vrátil 4.96.0-1.20140514git61c631c +- Update to latest upstream git snapshot + +* Fri Apr 25 2014 Daniel Vrátil 4.95.0-1.20140425gitb92f4a6 +- Initial package diff --git a/sonic-win/tree.txt b/sonic-win/tree.txt new file mode 100644 index 0000000..4cdf215 --- /dev/null +++ b/sonic-win/tree.txt @@ -0,0 +1,1864 @@ +/home/xlibre/rpmbuild/BUILDROOT/sonic-win-6.6.4-2.el10.x86_64/ +├── etc +│   └── xdg +│   └── Xwayland-session.d +└── usr + ├── bin + │   └── kwin_x11 + ├── include + │   └── kwin-x11 + │   ├── activities.h + │   ├── appmenu.h + │   ├── atoms.h + │   ├── client_machine.h + │   ├── compositor.h + │   ├── config-kwin.h + │   ├── core + │   │   ├── colorlut3d.h + │   │   ├── colorpipeline.h + │   │   ├── colorpipelinestage.h + │   │   ├── colorspace.h + │   │   ├── colortransformation.h + │   │   ├── drmdevice.h + │   │   ├── gbmgraphicsbufferallocator.h + │   │   ├── graphicsbufferallocator.h + │   │   ├── graphicsbuffer.h + │   │   ├── graphicsbufferview.h + │   │   ├── iccprofile.h + │   │   ├── inputbackend.h + │   │   ├── inputdevice.h + │   │   ├── outputbackend.h + │   │   ├── outputconfiguration.h + │   │   ├── output.h + │   │   ├── outputlayer.h + │   │   ├── overlaywindow.h + │   │   ├── pixelgrid.h + │   │   ├── renderbackend.h + │   │   ├── renderjournal.h + │   │   ├── renderlayerdelegate.h + │   │   ├── renderlayer.h + │   │   ├── renderloop.h + │   │   ├── renderloop_p.h + │   │   ├── rendertarget.h + │   │   ├── renderviewport.h + │   │   ├── session_consolekit.h + │   │   ├── session.h + │   │   ├── session_logind.h + │   │   ├── session_noop.h + │   │   └── shmgraphicsbufferallocator.h + │   ├── cursor.h + │   ├── cursorsource.h + │   ├── dbusinterface.h + │   ├── debug_console.h + │   ├── effect + │   │   ├── animationeffect.h + │   │   ├── effect.h + │   │   ├── effecthandler.h + │   │   ├── effecttogglablestate.h + │   │   ├── effectwindow.h + │   │   ├── globals.h + │   │   ├── offscreeneffect.h + │   │   ├── offscreenquickview.h + │   │   ├── quickeffect.h + │   │   ├── timeline.h + │   │   └── xcb.h + │   ├── focuschain.h + │   ├── ftrace.h + │   ├── gestures.h + │   ├── globalshortcuts.h + │   ├── group.h + │   ├── idledetector.h + │   ├── input_event.h + │   ├── input_event_spy.h + │   ├── input.h + │   ├── internalwindow.h + │   ├── keyboard_input.h + │   ├── keyboard_layout.h + │   ├── keyboard_layout_switching.h + │   ├── keyboard_repeat.h + │   ├── killwindow.h + │   ├── kscreenintegration.h + │   ├── kwin_export.h + │   ├── lidswitchtracker.h + │   ├── main.h + │   ├── mousebuttons.h + │   ├── netinfo.h + │   ├── onscreennotification.h + │   ├── opengl + │   │   ├── abstract_opengl_context_attribute_builder.h + │   │   ├── egl_context_attribute_builder.h + │   │   ├── eglcontext.h + │   │   ├── egldisplay.h + │   │   ├── eglimagetexture.h + │   │   ├── eglnativefence.h + │   │   ├── eglswapchain.h + │   │   ├── eglutils_p.h + │   │   ├── glframebuffer.h + │   │   ├── gllut3D.h + │   │   ├── gllut.h + │   │   ├── glplatform.h + │   │   ├── glrendertimequery.h + │   │   ├── glshader.h + │   │   ├── glshadermanager.h + │   │   ├── gltexture.h + │   │   ├── gltexture_p.h + │   │   ├── glutils.h + │   │   ├── glvertexbuffer.h + │   │   └── openglcontext.h + │   ├── options.h + │   ├── osd.h + │   ├── outline.h + │   ├── outputconfigurationstore.h + │   ├── placeholderoutput.h + │   ├── placement.h + │   ├── placementtracker.h + │   ├── plugin.h + │   ├── pluginmanager.h + │   ├── pointer_input.h + │   ├── rulebooksettings.h + │   ├── rules.h + │   ├── scene + │   │   ├── borderoutline.h + │   │   ├── borderradius.h + │   │   ├── cursordelegate_opengl.h + │   │   ├── cursoritem.h + │   │   ├── cursorscene.h + │   │   ├── decorationitem.h + │   │   ├── dndiconitem.h + │   │   ├── imageitem.h + │   │   ├── itemgeometry.h + │   │   ├── item.h + │   │   ├── itemrenderer.h + │   │   ├── itemrenderer_opengl.h + │   │   ├── outlinedborderitem.h + │   │   ├── rootitem.h + │   │   ├── scene.h + │   │   ├── shadowitem.h + │   │   ├── surfaceitem.h + │   │   ├── surfaceitem_internal.h + │   │   ├── surfaceitem_x11.h + │   │   ├── windowitem.h + │   │   ├── workspacescene.h + │   │   └── workspacescene_opengl.h + │   ├── screenedge.h + │   ├── screenlockerwatcher.h + │   ├── shadow.h + │   ├── sm.h + │   ├── tablet_input.h + │   ├── tabletmodemanager.h + │   ├── touch_input.h + │   ├── useractions.h + │   ├── utils + │   │   ├── common.h + │   │   ├── c_ptr.h + │   │   ├── cursortheme.h + │   │   ├── damagejournal.h + │   │   ├── drm_format_helper.h + │   │   ├── edid.h + │   │   ├── executable_path.h + │   │   ├── filedescriptor.h + │   │   ├── kernel.h + │   │   ├── memorymap.h + │   │   ├── orientationsensor.h + │   │   ├── ramfile.h + │   │   ├── realtime.h + │   │   ├── resource.h + │   │   ├── serviceutils.h + │   │   ├── softwarevsyncmonitor.h + │   │   ├── version.h + │   │   ├── vsyncmonitor.h + │   │   └── xcbutils.h + │   ├── virtualdesktopsdbustypes.h + │   ├── virtualdesktops.h + │   ├── virtualkeyboard_dbus.h + │   ├── window.h + │   ├── workspace.h + │   ├── x11eventfilter.h + │   ├── x11window.h + │   └── xkb.h + ├── lib + │   └── systemd + │   └── user + │   └── plasma-kwin_x11.service + ├── lib64 + │   ├── cmake + │   │   ├── KWinX11 + │   │   │   ├── KWinX11Config.cmake + │   │   │   ├── KWinX11ConfigVersion.cmake + │   │   │   ├── KWinX11Targets.cmake + │   │   │   └── KWinX11Targets-release.cmake + │   │   └── KWinX11DBusInterface + │   │   └── KWinX11DBusInterfaceConfig.cmake + │   ├── kconf_update_bin + │   │   ├── kwin5_update_default_rules_x11 + │   │   ├── kwin-6.0-delete-desktop-switching-shortcuts-x11 + │   │   ├── kwin-6.0-remove-breeze-tabbox-default-x11 + │   │   ├── kwin-6.0-reset-active-mouse-screen-x11 + │   │   ├── kwin-6.1-remove-gridview-expose-shortcuts-x11 + │   │   └── kwin-6.5-showpaint-changes-x11 + │   ├── libkcmkwincommon-x11.so.6 -> libkcmkwincommon-x11.so.6.6.4 + │   ├── libkcmkwincommon-x11.so.6.6.4 + │   ├── libkwin-x11.so -> libkwin-x11.so.6 + │   ├── libkwin-x11.so.6 -> libkwin-x11.so.6.6.4 + │   ├── libkwin-x11.so.6.6.4 + │   └── qt6 + │   ├── plugins + │   │   ├── kf6 + │   │   │   └── packagestructure + │   │   │   ├── kwin_aurorae_x11.so + │   │   │   ├── kwin_decoration_x11.so + │   │   │   ├── kwin_effect_x11.so + │   │   │   ├── kwin_scripts_x11.so + │   │   │   └── kwin_windowswitcher_x11.so + │   │   ├── kwin-x11 + │   │   │   ├── effects + │   │   │   │   └── configs + │   │   │   │   ├── kcm_kwin4_genericscripted.so + │   │   │   │   ├── kwin_blur_config.so + │   │   │   │   ├── kwin_diminactive_config.so + │   │   │   │   ├── kwin_glide_config.so + │   │   │   │   ├── kwin_magiclamp_config.so + │   │   │   │   ├── kwin_mouseclick_config.so + │   │   │   │   ├── kwin_mousemark_config.so + │   │   │   │   ├── kwin_overview_config.so + │   │   │   │   ├── kwin_slide_config.so + │   │   │   │   ├── kwin_thumbnailaside_config.so + │   │   │   │   ├── kwin_tileseditor_config.so + │   │   │   │   ├── kwin_trackmouse_config.so + │   │   │   │   ├── kwin_windowview_config.so + │   │   │   │   └── kwin_wobblywindows_config.so + │   │   │   └── plugins + │   │   │   ├── krunnerintegration.so + │   │   │   └── nightlight.so + │   │   └── plasma + │   │   └── kcms + │   │   ├── systemsettings + │   │   │   ├── kcm_animations_x11.so + │   │   │   ├── kcm_kwindecoration_x11.so + │   │   │   ├── kcm_kwin_effects_x11.so + │   │   │   ├── kcm_kwinrules_x11.so + │   │   │   ├── kcm_kwin_scripts_x11.so + │   │   │   └── kcm_kwin_virtualdesktops_x11.so + │   │   └── systemsettings_qwidgets + │   │   ├── kcm_kwinoptions_x11.so + │   │   ├── kcm_kwinscreenedges_x11.so + │   │   ├── kcm_kwintabbox_x11.so + │   │   ├── kcm_kwintouchscreen_x11.so + │   │   └── kwincompositing.so + │   └── qml + │   └── org + │   └── kde + │   └── kwin_x11 + │   └── private + │   ├── effects + │   │   ├── effectsplugin.qmltypes + │   │   ├── kde-qmlmodule.version + │   │   ├── libeffectsplugin.so + │   │   ├── qmldir + │   │   ├── WindowHeapDelegate.qml + │   │   └── WindowHeap.qml + │   └── kdecoration + │   ├── kdecorationprivatedeclarative.qmltypes + │   ├── kde-qmlmodule.version + │   ├── libkdecorationprivatedeclarative.so + │   └── qmldir + ├── libexec + │   ├── kwin-applywindowdecoration-x11 + │   └── kwin_killer_helper_x11 + └── share + ├── applications + │   ├── kcm_animations_x11.desktop + │   ├── kcm_kwindecoration_x11.desktop + │   ├── kcm_kwin_effects_x11.desktop + │   ├── kcm_kwinoptions_x11.desktop + │   ├── kcm_kwinrules_x11.desktop + │   ├── kcm_kwin_scripts_x11.desktop + │   ├── kcm_kwintabbox_x11.desktop + │   ├── kcm_kwin_virtualdesktops_x11.desktop + │   ├── kwincompositing.desktop + │   └── org.kde.kwin_x11.killer.desktop + ├── dbus-1 + │   └── interfaces + │   ├── kwin_x11_org.kde.kwin.Compositing.xml + │   ├── kwin_x11_org.kde.kwin.Effects.xml + │   ├── kwin_x11_org.kde.kwin.InputDevice.xml + │   ├── kwin_x11_org.kde.KWin.NightLight.xml + │   ├── kwin_x11_org.kde.KWin.Plugins.xml + │   ├── kwin_x11_org.kde.KWin.TabletModeManager.xml + │   ├── kwin_x11_org.kde.KWin.VirtualDesktopManager.xml + │   ├── kwin_x11_org.kde.kwin.VirtualKeyboard.xml + │   └── kwin_x11_org.kde.KWin.xml + ├── doc + │   └── HTML + │   ├── ca + │   │   └── kcontrol + │   │   ├── desktop-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwindecoration-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwineffects-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwinscreenedges-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwintabbox-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwintouchscreen-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwinvirtualkeyboard-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── windowbehaviour-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── windowspecific-x11 + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── en + │   │   └── kcontrol + │   │   ├── desktop-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwindecoration-x11 + │   │   │   ├── button.png + │   │   │   ├── configure.png + │   │   │   ├── decoration.png + │   │   │   ├── index.cache.bz2 + │   │   │   ├── index.docbook + │   │   │   └── main.png + │   │   ├── kwineffects-x11 + │   │   │   ├── configure-effects.png + │   │   │   ├── dialog-information.png + │   │   │   ├── index.cache.bz2 + │   │   │   ├── index.docbook + │   │   │   └── video.png + │   │   ├── kwinscreenedges-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwintabbox-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   ├── index.docbook + │   │   │   └── taskswitcher.png + │   │   ├── kwintouchscreen-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwinvirtualkeyboard-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── windowbehaviour-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── windowspecific-x11 + │   │   ├── akgregator-info.png + │   │   ├── akregator-attributes.png + │   │   ├── akregator-fav.png + │   │   ├── config-win-behavior.png + │   │   ├── emacs-attribute.png + │   │   ├── emacs-info.png + │   │   ├── Face-smile.png + │   │   ├── focus-stealing-pop2top-attribute.png + │   │   ├── index.cache.bz2 + │   │   ├── index.docbook + │   │   ├── knotes-attribute.png + │   │   ├── knotes-info.png + │   │   ├── kopete-attribute-2.png + │   │   ├── kopete-chat-attribute.png + │   │   ├── kopete-chat-info.png + │   │   ├── kopete-info.png + │   │   ├── kwin-detect-window.png + │   │   ├── kwin-kopete-rules.png + │   │   ├── kwin-rule-editor.png + │   │   ├── kwin-rules-main-n-akregator.png + │   │   ├── kwin-rules-main.png + │   │   ├── kwin-rules-ordering.png + │   │   ├── kwin-window-attributes.png + │   │   ├── kwin-window-matching.png + │   │   ├── pager-4-desktops.png + │   │   ├── tbird-compose-attribute.png + │   │   ├── tbird-compose-info.png + │   │   ├── tbird-main-attribute.png + │   │   ├── tbird-main-info.png + │   │   ├── tbird-reminder-attribute-2.png + │   │   ├── tbird-reminder-info.png + │   │   ├── window-matching-emacs.png + │   │   ├── window-matching-init.png + │   │   ├── window-matching-knotes.png + │   │   ├── window-matching-kopete-chat.png + │   │   ├── window-matching-kopete.png + │   │   ├── window-matching-ready-akregator.png + │   │   ├── window-matching-tbird-compose.png + │   │   ├── window-matching-tbird-main.png + │   │   └── window-matching-tbird-reminder.png + │   ├── es + │   │   └── kcontrol + │   │   ├── desktop-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwindecoration-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwineffects-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwinscreenedges-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwintouchscreen-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── kwinvirtualkeyboard-x11 + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── it + │   │   └── kcontrol + │   │   ├── desktop-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwindecoration-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwineffects-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwinscreenedges-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwintabbox-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwintouchscreen-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwinvirtualkeyboard-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── windowbehaviour-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── windowspecific-x11 + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── nl + │   │   └── kcontrol + │   │   ├── desktop-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwindecoration-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwineffects-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwinscreenedges-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwintabbox-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwintouchscreen-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwinvirtualkeyboard-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── windowbehaviour-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── windowspecific-x11 + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── pt_BR + │   │   └── kcontrol + │   │   ├── desktop-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwindecoration-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwineffects-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwinscreenedges-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwintabbox-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwintouchscreen-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwinvirtualkeyboard-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── windowbehaviour-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── windowspecific-x11 + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── tr + │   │   └── kcontrol + │   │   ├── desktop-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwindecoration-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwineffects-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwinscreenedges-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwintabbox-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwintouchscreen-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── kwinvirtualkeyboard-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── windowbehaviour-x11 + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── windowspecific-x11 + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   └── uk + │   └── kcontrol + │   ├── desktop-x11 + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── kwindecoration-x11 + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── kwineffects-x11 + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── kwinscreenedges-x11 + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── kwintabbox-x11 + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── kwintouchscreen-x11 + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── kwinvirtualkeyboard-x11 + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── windowbehaviour-x11 + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   └── windowspecific-x11 + │   ├── index.cache.bz2 + │   └── index.docbook + ├── icons + │   └── hicolor + │   ├── 16x16 + │   │   └── apps + │   │   └── kwin-x11.png + │   ├── 32x32 + │   │   └── apps + │   │   └── kwin-x11.png + │   ├── 48x48 + │   │   └── apps + │   │   └── kwin-x11.png + │   └── scalable + │   └── apps + │   └── kwin-x11.svgz + ├── kconf_update + │   └── kwin-x11.upd + ├── knotifications6 + │   └── kwin-x11.notifyrc + ├── knsrcfiles + │   ├── kwineffect-x11.knsrc + │   ├── kwinscripts-x11.knsrc + │   ├── kwinswitcher-x11.knsrc + │   └── window-decorations-x11.knsrc + ├── krunner + │   └── dbusplugins + │   └── kwin-runner-windows-x11.desktop + ├── kwin-x11 + │   ├── builtin-effects + │   │   ├── blendchanges.json + │   │   ├── blur.json + │   │   ├── colorblindnesscorrection.json + │   │   ├── colorpicker.json + │   │   ├── contrast.json + │   │   ├── diminactive.json + │   │   ├── fallapart.json + │   │   ├── glide.json + │   │   ├── highlightwindow.json + │   │   ├── invert.json + │   │   ├── kscreen.json + │   │   ├── magiclamp.json + │   │   ├── magnifier.json + │   │   ├── mouseclick.json + │   │   ├── mousemark.json + │   │   ├── outputlocator.json + │   │   ├── overview.json + │   │   ├── screenedge.json + │   │   ├── screenshot.json + │   │   ├── sheet.json + │   │   ├── showfps.json + │   │   ├── showpaint.json + │   │   ├── slideback.json + │   │   ├── slide.json + │   │   ├── slidingpopups.json + │   │   ├── startupfeedback.json + │   │   ├── systembell.json + │   │   ├── thumbnailaside.json + │   │   ├── tileseditor.json + │   │   ├── trackmouse.json + │   │   ├── windowview.json + │   │   ├── wobblywindows.json + │   │   └── zoom.json + │   ├── effects + │   │   ├── dialogparent + │   │   │   ├── contents + │   │   │   │   └── code + │   │   │   │   └── main.js + │   │   │   └── metadata.json + │   │   ├── dimscreen + │   │   │   ├── contents + │   │   │   │   └── code + │   │   │   │   └── main.js + │   │   │   └── metadata.json + │   │   ├── eyeonscreen + │   │   │   ├── contents + │   │   │   │   └── code + │   │   │   │   └── main.js + │   │   │   └── metadata.json + │   │   ├── fade + │   │   │   ├── contents + │   │   │   │   ├── code + │   │   │   │   │   └── main.js + │   │   │   │   └── config + │   │   │   │   └── main.xml + │   │   │   └── metadata.json + │   │   ├── fadedesktop + │   │   │   ├── contents + │   │   │   │   └── code + │   │   │   │   └── main.js + │   │   │   └── metadata.json + │   │   ├── fadingpopups + │   │   │   ├── contents + │   │   │   │   └── code + │   │   │   │   └── main.js + │   │   │   └── metadata.json + │   │   ├── frozenapp + │   │   │   ├── contents + │   │   │   │   └── code + │   │   │   │   └── main.js + │   │   │   └── metadata.json + │   │   ├── fullscreen + │   │   │   ├── contents + │   │   │   │   └── code + │   │   │   │   └── main.js + │   │   │   └── metadata.json + │   │   ├── login + │   │   │   ├── contents + │   │   │   │   ├── code + │   │   │   │   │   └── main.js + │   │   │   │   ├── config + │   │   │   │   │   └── main.xml + │   │   │   │   └── ui + │   │   │   │   └── config.ui + │   │   │   └── metadata.json + │   │   ├── logout + │   │   │   ├── contents + │   │   │   │   └── code + │   │   │   │   └── main.js + │   │   │   └── metadata.json + │   │   ├── maximize + │   │   │   ├── contents + │   │   │   │   └── code + │   │   │   │   └── main.js + │   │   │   └── metadata.json + │   │   ├── outputlocator + │   │   │   └── qml + │   │   │   └── OutputLabel.qml + │   │   ├── scale + │   │   │   ├── contents + │   │   │   │   ├── code + │   │   │   │   │   └── main.js + │   │   │   │   ├── config + │   │   │   │   │   └── main.xml + │   │   │   │   └── ui + │   │   │   │   └── config.ui + │   │   │   └── metadata.json + │   │   ├── sessionquit + │   │   │   ├── contents + │   │   │   │   └── code + │   │   │   │   └── main.js + │   │   │   └── metadata.json + │   │   ├── showfps + │   │   │   └── qml + │   │   │   ├── main-fallback.qml + │   │   │   └── main.qml + │   │   ├── squash + │   │   │   ├── contents + │   │   │   │   └── code + │   │   │   │   └── main.js + │   │   │   └── metadata.json + │   │   ├── tileseditor + │   │   │   └── qml + │   │   │   ├── layouts.svg + │   │   │   ├── main.qml + │   │   │   ├── ResizeCorner.qml + │   │   │   ├── ResizeHandle.qml + │   │   │   └── TileDelegate.qml + │   │   ├── translucency + │   │   │   ├── contents + │   │   │   │   ├── code + │   │   │   │   │   └── main.js + │   │   │   │   ├── config + │   │   │   │   │   └── main.xml + │   │   │   │   └── ui + │   │   │   │   └── config.ui + │   │   │   └── metadata.json + │   │   ├── windowaperture + │   │   │   ├── contents + │   │   │   │   └── code + │   │   │   │   └── main.js + │   │   │   └── metadata.json + │   │   └── windowview + │   │   └── qml + │   │   └── main.qml + │   ├── frames + │   │   └── plasma + │   │   ├── frame_none.qml + │   │   ├── frame_styled.qml + │   │   └── frame_unstyled.qml + │   ├── kcm_kwintabbox + │   │   ├── desktop.png + │   │   ├── dolphin.png + │   │   ├── falkon.png + │   │   ├── kmail.png + │   │   └── systemsettings.png + │   ├── onscreennotification + │   │   └── plasma + │   │   ├── dummydata + │   │   │   └── osd.qml + │   │   └── main.qml + │   ├── outline + │   │   └── plasma + │   │   └── outline.qml + │   ├── scripts + │   │   ├── desktopchangeosd + │   │   │   ├── contents + │   │   │   │   └── ui + │   │   │   │   ├── main.qml + │   │   │   │   └── osd.qml + │   │   │   └── metadata.json + │   │   ├── minimizeall + │   │   │   ├── contents + │   │   │   │   └── code + │   │   │   │   └── main.js + │   │   │   └── metadata.json + │   │   ├── synchronizeskipswitcher + │   │   │   ├── contents + │   │   │   │   └── code + │   │   │   │   └── main.js + │   │   │   └── metadata.json + │   │   └── videowall + │   │   ├── contents + │   │   │   ├── code + │   │   │   │   └── main.js + │   │   │   ├── config + │   │   │   │   └── main.xml + │   │   │   └── ui + │   │   │   └── config.ui + │   │   └── metadata.json + │   ├── tabbox + │   │   └── thumbnail_grid + │   │   ├── contents + │   │   │   └── ui + │   │   │   └── main.qml + │   │   └── metadata.json + │   ├── tm_inner.png + │   └── tm_outer.png + ├── locale + │   ├── af + │   │   └── LC_MESSAGES + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── ar + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── as + │   │   └── LC_MESSAGES + │   │   └── kwin_x11.mo + │   ├── ast + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── az + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── be + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── be@latin + │   │   └── LC_MESSAGES + │   │   └── kwin_x11.mo + │   ├── bg + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── bn + │   │   └── LC_MESSAGES + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── bn_IN + │   │   └── LC_MESSAGES + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── br + │   │   └── LC_MESSAGES + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── bs + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── ca + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── ca@valencia + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── cs + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── csb + │   │   └── LC_MESSAGES + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   └── kwin_x11.mo + │   ├── cy + │   │   └── LC_MESSAGES + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── da + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── de + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── el + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── en_GB + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── eo + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── es + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── et + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── eu + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── fa + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── fi + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── fr + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── fy + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── ga + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── gl + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── gu + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── he + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── hi + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── hne + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── hr + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── hsb + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── hu + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── ia + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── id + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── is + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── it + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── ja + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── ka + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── kk + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── km + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── kn + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── ko + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── ku + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── lt + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── lv + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── mai + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── mk + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── ml + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── mr + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── ms + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── nb + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── nds + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── ne + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── nl + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── nn + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── oc + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── or + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── pa + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── pl + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── pt + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── pt_BR + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── ro + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── ru + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── sa + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── se + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── si + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── sk + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── sl + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── sq + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── sr + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── sr@ijekavian + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── sr@ijekavianlatin + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── sr@latin + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── sv + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── ta + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── te + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── tg + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── th + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── tok + │   │   └── LC_MESSAGES + │   │   └── kcm_kwinrules_x11.mo + │   ├── tr + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── ug + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── uk + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── uz + │   │   └── LC_MESSAGES + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── uz@cyrillic + │   │   └── LC_MESSAGES + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── vi + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── wa + │   │   └── LC_MESSAGES + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── xh + │   │   └── LC_MESSAGES + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   ├── zh_CN + │   │   └── LC_MESSAGES + │   │   ├── kcm_animations_x11.mo + │   │   ├── kcmkwincommon_x11.mo + │   │   ├── kcmkwincompositing_x11.mo + │   │   ├── kcm_kwindecoration_x11.mo + │   │   ├── kcm_kwin_effects_x11.mo + │   │   ├── kcm_kwinrules_x11.mo + │   │   ├── kcmkwinscreenedges_x11.mo + │   │   ├── kcm_kwin_scripts_x11.mo + │   │   ├── kcm_kwintabbox_x11.mo + │   │   ├── kcm_kwin_virtualdesktops_x11.mo + │   │   ├── kcmkwm_x11.mo + │   │   └── kwin_x11.mo + │   └── zh_TW + │   └── LC_MESSAGES + │   ├── kcm_animations_x11.mo + │   ├── kcmkwincommon_x11.mo + │   ├── kcmkwincompositing_x11.mo + │   ├── kcm_kwindecoration_x11.mo + │   ├── kcm_kwin_effects_x11.mo + │   ├── kcm_kwinrules_x11.mo + │   ├── kcmkwinscreenedges_x11.mo + │   ├── kcm_kwin_scripts_x11.mo + │   ├── kcm_kwintabbox_x11.mo + │   ├── kcm_kwin_virtualdesktops_x11.mo + │   ├── kcmkwm_x11.mo + │   └── kwin_x11.mo + └── qlogging-categories6 + └── org_kde_kwin_x11.categories + +432 directories, 1430 files diff --git a/sonic-workspace.spec b/sonic-workspace.spec deleted file mode 100644 index 2d701aa..0000000 --- a/sonic-workspace.spec +++ /dev/null @@ -1,268 +0,0 @@ -%define _disable_source_fetch 0 -%define debug_package %{nil} - -Name: sonic-workspace -Version: 6.4.5 -Release: 5%{?dist} -Summary: Core workspace components for SonicDE (fork of plasma-workspace) - -License: GPL-2.0-or-later -URL: https://github.com/Sonic-DE/sonic-workspace -Source0: %{url}/archive/refs/tags/v%{version}.tar.gz - -%global plasma_version %(echo %{version} | cut -d. -f1-3) - -BuildRequires: extra-cmake-modules -BuildRequires: kf6-rpm-macros -BuildRequires: qt6-qtbase-devel -BuildRequires: qt6-qtbase-private-devel -BuildRequires: qt6-qtdeclarative-devel -BuildRequires: qt6-qtdeclarative-private-devel -BuildRequires: qt6-qtsvg-devel -BuildRequires: qt6-qtwayland-devel -BuildRequires: qt6-qtlocation-devel -BuildRequires: qt6-qtshadertools-devel -BuildRequires: qcoro-qt6-devel -BuildRequires: phonon-qt6-devel -BuildRequires: wayland-devel -BuildRequires: wayland-protocols-devel -BuildRequires: plasma-wayland-protocols-devel -BuildRequires: cmake(Qt6Core5Compat) - -BuildRequires: cmake(KF6Config) -BuildRequires: cmake(KF6Archive) -BuildRequires: cmake(KF6Declarative) -BuildRequires: cmake(KF6ConfigWidgets) -BuildRequires: cmake(KF6CoreAddons) -BuildRequires: cmake(KF6Crash) -BuildRequires: cmake(KF6DBusAddons) -BuildRequires: cmake(KF6GlobalAccel) -BuildRequires: cmake(KF6GuiAddons) -BuildRequires: cmake(KF6I18n) -BuildRequires: cmake(KF6IdleTime) -BuildRequires: cmake(KF6KIO) -BuildRequires: cmake(KF6Notifications) -BuildRequires: cmake(KF6NotifyConfig) -BuildRequires: cmake(KF6Runner) -BuildRequires: cmake(KF6Service) -BuildRequires: cmake(KF6Solid) -BuildRequires: cmake(KF6WidgetsAddons) -BuildRequires: cmake(KF6WindowSystem) -BuildRequires: cmake(KF6XmlGui) -BuildRequires: cmake(KF6DocTools) -BuildRequires: cmake(KF6ItemModels) -BuildRequires: cmake(KF6KDED) -BuildRequires: cmake(KF6StatusNotifierItem) -BuildRequires: cmake(KF6UnitConversion) -BuildRequires: cmake(KF6Wallet) -BuildRequires: cmake(KF6KCMUtils) -BuildRequires: cmake(KF6NewStuff) -BuildRequires: cmake(KF6Package) -BuildRequires: cmake(KF6Parts) -BuildRequires: cmake(KF6Prison) -BuildRequires: cmake(KF6Sonnet) -BuildRequires: cmake(KF6TextEditor) -BuildRequires: cmake(KF6TextWidgets) -BuildRequires: cmake(KF6Svg) -BuildRequires: cmake(KF6Kirigami2) -BuildRequires: cmake(KF6KirigamiAddons) -BuildRequires: cmake(KF6NetworkManagerQt) -BuildRequires: cmake(KF6QuickCharts) -BuildRequires: cmake(KF6UserFeedback) -BuildRequires: cmake(KF6Baloo) -BuildRequires: cmake(KF6Holidays) -BuildRequires: kf6-kdesu-devel -BuildRequires: pkgconfig(libqalculate) -BuildRequires: sonic-win-devel -BuildRequires: sonic-interface-libraries-devel -BuildRequires: kdecoration-devel -BuildRequires: libkscreen-devel -BuildRequires: libksysguard-devel -BuildRequires: plasma-activities-devel -BuildRequires: cmake(KSysGuard) -BuildRequires: cmake(Plasma5Support) -BuildRequires: cmake(KScreenLocker) -BuildRequires: cmake(Breeze) -BuildRequires: cmake(KExiv2Qt6) -BuildRequires: cmake(KPipeWire) -BuildRequires: cmake(PlasmaActivities) -BuildRequires: cmake(PlasmaActivitiesStats) -BuildRequires: cmake(KF6Screen) -BuildRequires: cmake(KWayland) -BuildRequires: cmake(Plasma) -BuildRequires: cmake(PlasmaQuick) -BuildRequires: cmake(LayerShellQt) - -BuildRequires: pkgconfig(x11) -BuildRequires: pkgconfig(xau) -BuildRequires: pkgconfig(xcb) -BuildRequires: pkgconfig(xcomposite) -BuildRequires: pkgconfig(xcursor) -BuildRequires: pkgconfig(xdamage) -BuildRequires: pkgconfig(xext) -BuildRequires: pkgconfig(xfixes) -BuildRequires: pkgconfig(xft) -BuildRequires: pkgconfig(xi) -BuildRequires: pkgconfig(xinerama) -BuildRequires: pkgconfig(xres) -BuildRequires: pkgconfig(xkbcommon) -BuildRequires: pkgconfig(xkbfile) -BuildRequires: pkgconfig(xpm) -BuildRequires: pkgconfig(xrender) -BuildRequires: pkgconfig(xtst) -BuildRequires: pkgconfig(xxf86vm) -BuildRequires: pkgconfig(ice) -BuildRequires: pkgconfig(sm) -BuildRequires: pkgconfig(xcb-aux) -BuildRequires: pkgconfig(xcb-cursor) -BuildRequires: pkgconfig(xcb-image) -BuildRequires: pkgconfig(xcb-event) -BuildRequires: pkgconfig(xcb-util) -BuildRequires: pkgconfig(xcb-keysyms) -BuildRequires: pkgconfig(xcb-icccm) -BuildRequires: pkgconfig(xcb-renderutil) -BuildRequires: pkgconfig(xcb-atom) -BuildRequires: pkgconfig(xcb-ewmh) -BuildRequires: systemd-devel -BuildRequires: NetworkManager-libnm-devel -BuildRequires: glib2-devel -BuildRequires: polkit-qt6-1-devel -BuildRequires: PackageKit-Qt6-devel -BuildRequires: appstream-qt-devel -BuildRequires: iso-codes-devel -BuildRequires: libcanberra-devel -BuildRequires: fontconfig-devel -BuildRequires: zlib-devel -BuildRequires: libicu-devel - -Requires: sonic-win -Requires: xmessage -Requires: xprop -Requires: xrdb -Requires: xsetroot - -Conflicts: plasma-workspace-x11 - -Provides: plasma-workspace%{?_isa} >= %{plasma_version} -Provides: plasma-workspace >= %{plasma_version} -Obsoletes: plasma-workspace <= %{plasma_version} - -Provides: plasma-workspace-libs%{?_isa} >= %{plasma_version} -Provides: plasma-workspace-libs >= %{plasma_version} -Obsoletes: plasma-workspace-libs <= %{plasma_version} - -Provides: libkworkspace6%{?_isa} >= %{plasma_version} -Provides: libkworkspace6 >= %{plasma_version} -Obsoletes: libkworkspace6 <= %{plasma_version} - -Provides: desktop-notification-daemon - -%description -Core workspace components for SonicDE, fork of plasma-workspace. - -%package devel -Summary: Development files for %{name} -Requires: %{name}%{?_isa} = %{version}-%{release} -Conflicts: plasma-workspace-devel - -%description devel -Development files for sonic-workspace. - -%package x11 -Summary: SonicDE X11 session -#Requires: %{name}%{?_isa} = %{version}-%{release} -Requires: xlibre-xserver-Xorg -Conflicts: plasma-workspace-x11 - -%description x11 -SonicDE X11 session. - -%prep -%autosetup -p1 - -%build -%cmake_kf6 -%cmake_build - -%install -%cmake_install -# Many translation files have different names than the package -%find_lang plasmanetworkmanagement --all-name || : -%find_lang plasmashell --all-name || : - -%files -%license LICENSES/* -%{_bindir}/plasma* -%{_bindir}/krunner -%{_bindir}/ksmserver -%{_bindir}/ksplashqml -%{_bindir}/kcminit* -%{_bindir}/kde-systemd-start-condition -%{_bindir}/lookandfeeltool -%{_bindir}/kcolorschemeeditor -%{_bindir}/kfontinst -%{_bindir}/kfontview -%{_bindir}/xembedsniproxy -%{_bindir}/gmenudbusmenuproxy -%{_bindir}/startplasma-wayland -%{_libdir}/lib*.so.* -%{_libdir}/kconf_update_bin/ -%{_libexecdir}/ksmserver-logout-greeter -%{_libexecdir}/plasma* -%{_libexecdir}/kf6/kauth/ -%{_libexecdir}/kfontprint -%{_libexecdir}/baloorunner -%{_qt6_plugindir}/plasma/ -%{_qt6_plugindir}/kf6/ -%{_qt6_plugindir}/phonon_platform/ -%{_qt6_plugindir}/plasma5support/ -%{_qt6_plugindir}/plasmacalendarplugins/ -%{_qt6_qmldir}/org/kde/ -%{_userunitdir}/plasma* -%{_datadir}/plasma/ -%{_datadir}/plasma5support/ -%{_datadir}/applications/*.desktop -%{_datadir}/desktop-directories/ -%{_datadir}/config.kcfg/ -%{_datadir}/dbus-1/ -%{_datadir}/doc/ -%{_datadir}/icons/ -%{_datadir}/kconf_update/ -%{_datadir}/kfontinst/ -%{_datadir}/kglobalaccel/ -%{_datadir}/kio*/ -%{_datadir}/knotifications6/ -%{_datadir}/knsrcfiles/ -%{_datadir}/konqsidebartng/ -%{_datadir}/krunner/ -%{_datadir}/kstyle/ -%{_datadir}/kxmlgui5/ -%{_datadir}/polkit-1/ -%{_datadir}/qlogging-categories6/ -%{_datadir}/solid/ -%{_datadir}/timezonefiles/ -%{_datadir}/wayland-sessions/ -%{_datadir}/xdg-desktop-portal/ -%{_datadir}/zsh/ -%{_datadir}/locale/*/LC_MESSAGES/*.mo -%{_sysconfdir}/xdg/* - -%files devel -%defattr(-,root,root,-) -%{_includedir}/kworkspace6/ -%{_includedir}/taskmanager/ -%{_includedir}/notificationmanager/ -%{_includedir}/colorcorrect/ -%{_includedir}/krdb/ -%{_includedir}/plasma5support/ -%{_libdir}/lib*.so -%{_libdir}/cmake/*/ - -%files x11 -%defattr(-,root,root,-) -%{_datadir}/xsessions/plasmax11.desktop -%{_bindir}/startplasma-x11 - -%changelog -* Wed Mar 21 2026 Anders da Silva Rytter Hansen - 6.4.5-5 -- Initial release of SonicDE/KDE Plasma X11 for EL10 (Downgraded to 6.4.5 for EL 10.1 compatibility) diff --git a/sonic-workspace/fedora-lookandfeel.json b/sonic-workspace/fedora-lookandfeel.json new file mode 100644 index 0000000..59ab344 --- /dev/null +++ b/sonic-workspace/fedora-lookandfeel.json @@ -0,0 +1,17 @@ +{ + "KPackageStructure": "Plasma/LookAndFeel", + "KPlugin": { + "Authors": [ + { + "Email": "kde@lists.fedoraproject.org", + "Name": "Fedora KDE SIG" + } + ], + "Category": "", + "Description": "Fedora theme by Fedora KDE SIG", + "Id": "org.fedoraproject.fedora.desktop", + "License": "GPLv2+", + "Name": "Fedora", + "Website": "https://fedoraproject.org/" + } +} diff --git a/sonic-workspace/fedoradark-lookandfeel.json b/sonic-workspace/fedoradark-lookandfeel.json new file mode 100644 index 0000000..39bc37a --- /dev/null +++ b/sonic-workspace/fedoradark-lookandfeel.json @@ -0,0 +1,17 @@ +{ + "KPackageStructure": "Plasma/LookAndFeel", + "KPlugin": { + "Authors": [ + { + "Email": "kde@lists.fedoraproject.org", + "Name": "Fedora KDE SIG" + } + ], + "Category": "", + "Description": "Fedora dark theme by Fedora KDE SIG", + "Id": "org.fedoraproject.fedoradark.desktop", + "License": "GPLv2+", + "Name": "Fedora Dark", + "Website": "https://fedoraproject.org/" + } +} diff --git a/sonic-workspace/fedoralight-lookandfeel.json b/sonic-workspace/fedoralight-lookandfeel.json new file mode 100644 index 0000000..f6f00de --- /dev/null +++ b/sonic-workspace/fedoralight-lookandfeel.json @@ -0,0 +1,17 @@ +{ + "KPackageStructure": "Plasma/LookAndFeel", + "KPlugin": { + "Authors": [ + { + "Email": "kde@lists.fedoraproject.org", + "Name": "Fedora KDE SIG" + } + ], + "Category": "", + "Description": "Fedora light theme by Fedora KDE SIG", + "Id": "org.fedoraproject.fedoralight.desktop", + "License": "GPLv2+", + "Name": "Fedora Light", + "Website": "https://fedoraproject.org/" + } +} diff --git a/sonic-workspace/kde b/sonic-workspace/kde new file mode 100644 index 0000000..e480644 --- /dev/null +++ b/sonic-workspace/kde @@ -0,0 +1,15 @@ +auth substack password-auth +auth include postlogin + +account required pam_nologin.so +account include password-auth + +password include password-auth + +session required pam_selinux.so close +session required pam_loginuid.so +session required pam_selinux.so open +session optional pam_keyinit.so force revoke +session required pam_namespace.so +session include password-auth +session include postlogin diff --git a/sonic-workspace/kde-fingerprint b/sonic-workspace/kde-fingerprint new file mode 100644 index 0000000..628568e --- /dev/null +++ b/sonic-workspace/kde-fingerprint @@ -0,0 +1,15 @@ +auth substack fingerprint-auth +auth include postlogin + +account required pam_nologin.so +account include fingerprint-auth + +password include fingerprint-auth + +session required pam_selinux.so close +session required pam_loginuid.so +session required pam_selinux.so open +session optional pam_keyinit.so force revoke +session required pam_namespace.so +session include fingerprint-auth +session include postlogin diff --git a/sonic-workspace/kde-smartcard b/sonic-workspace/kde-smartcard new file mode 100644 index 0000000..3264a71 --- /dev/null +++ b/sonic-workspace/kde-smartcard @@ -0,0 +1,15 @@ +auth substack smartcard-auth +auth include postlogin + +account required pam_nologin.so +account include smartcard-auth + +password include smartcard-auth + +session required pam_selinux.so close +session required pam_loginuid.so +session required pam_selinux.so open +session optional pam_keyinit.so force revoke +session required pam_namespace.so +session include smartcard-auth +session include postlogin diff --git a/sonic-workspace/plasma-workspace-5.27.80-enable-lock-logout-action.patch b/sonic-workspace/plasma-workspace-5.27.80-enable-lock-logout-action.patch new file mode 100644 index 0000000..09637ff --- /dev/null +++ b/sonic-workspace/plasma-workspace-5.27.80-enable-lock-logout-action.patch @@ -0,0 +1,27 @@ +From 6f6a8771afdaa27208d3aea63525f62cafe787cf Mon Sep 17 00:00:00 2001 +From: Neal Gompa +Date: Sun, 25 Sep 2022 16:46:47 -0400 +Subject: [PATCH] containmentactions/contextmenu: Enable lock/logout + actions by default + +Fedora users expect these items to exist in the desktop context menu +by default unless they've been manually disabled or removed via the +Kiosk mode. +--- + containmentactions/contextmenu/menu.cpp | 2 -- + 1 file changed, 2 deletions(-) + +diff -Naur plasma-workspace-6.0.0/containmentactions/contextmenu/menu.cpp plasma-workspace-6.0.0-b/containmentactions/contextmenu/menu.cpp +--- plasma-workspace-6.0.0/containmentactions/contextmenu/menu.cpp 2024-02-22 09:47:05.872197643 +0100 ++++ plasma-workspace-6.0.0-b/containmentactions/contextmenu/menu.cpp 2024-02-22 09:47:44.725173857 +0100 +@@ -81,8 +81,6 @@ + disabled.insert(QStringLiteral("_add panel")); + disabled.insert(QStringLiteral("configure shortcuts")); + disabled.insert(QStringLiteral("_run_command")); +- disabled.insert(QStringLiteral("_lock_screen")); +- disabled.insert(QStringLiteral("_logout")); + } + // clang-format on + +-- +2.36.1 diff --git a/sonic-workspace/plasma-workspace-5.27.80-enable-open-terminal-action.patch b/sonic-workspace/plasma-workspace-5.27.80-enable-open-terminal-action.patch new file mode 100644 index 0000000..3a40b31 --- /dev/null +++ b/sonic-workspace/plasma-workspace-5.27.80-enable-open-terminal-action.patch @@ -0,0 +1,26 @@ +From 9788427b7f4f8802ccc2d4de7fad02b19488c2c8 Mon Sep 17 00:00:00 2001 +From: Neal Gompa +Date: Sun, 25 Sep 2022 16:45:07 -0400 +Subject: [PATCH] containmentactions/contextmenu: Enable "Open Terminal" by + default + +Fedora users expect this item to exist in the desktop context menu +by default unless it has been manually disabled or removed via the +Kiosk mode. +--- + containmentactions/contextmenu/menu.cpp | 1 - + 1 file changed, 1 deletion(-) + +diff -Naur plasma-workspace-6.0.0/containmentactions/contextmenu/menu.cpp plasma-workspace-6.0.0-b/containmentactions/contextmenu/menu.cpp +--- plasma-workspace-6.0.0/containmentactions/contextmenu/menu.cpp 2024-02-21 16:42:07.000000000 +0100 ++++ plasma-workspace-6.0.0-b/containmentactions/contextmenu/menu.cpp 2024-02-22 09:31:03.958663529 +0100 +@@ -80,7 +80,6 @@ + disabled.insert(QStringLiteral("add widgets")); + disabled.insert(QStringLiteral("_add panel")); + disabled.insert(QStringLiteral("configure shortcuts")); +- disabled.insert(QStringLiteral("_open_terminal")); + disabled.insert(QStringLiteral("_run_command")); + disabled.insert(QStringLiteral("_lock_screen")); + disabled.insert(QStringLiteral("_logout")); +-- +2.36.1 diff --git a/sonic-workspace/sonic-workspace.spec b/sonic-workspace/sonic-workspace.spec new file mode 100644 index 0000000..b336cce --- /dev/null +++ b/sonic-workspace/sonic-workspace.spec @@ -0,0 +1,2478 @@ +%define _disable_source_fetch 0 +%define debug_package %{nil} +%define oldname plasma-workspace + +%bcond kf6_pim 1 + +Name: sonic-workspace +Summary: Plasma workspace, applications and applets +Version: 6.6.4 +Release: 11%{?dist} + +# Automatically converted from old format: BSD-2-Clause AND BSD-3-Clause AND CC0-1.0 AND GPL-2.0-only AND GPL-2.0-or-later AND GPL-3.0-only AND LGPL-2.0-only AND LGPL-2.0-or-later AND LGPL-2.1-only AND LGPL-2.1-or-later AND LGPL-3.0-only AND LGPL-3.0-or-later AND (GPL-2.0-only OR GPL-3.0-only) AND (LGPL-2.1-only OR LGPL-3.0-only) AND MIT - review is highly recommended. +License: BSD-2-Clause AND BSD-3-Clause AND CC0-1.0 AND GPL-2.0-only AND GPL-2.0-or-later AND GPL-3.0-only AND LGPL-2.0-only AND LGPL-2.0-or-later AND LGPL-2.1-only AND LGPL-2.1-or-later AND LGPL-3.0-only AND LGPL-3.0-or-later AND (GPL-2.0-only OR GPL-3.0-only) AND (LGPL-2.1-only OR LGPL-3.0-only) AND MIT +#URL: https://invent.kde.org/plasma/%{name} +URL: https://github.com/Sonic-DE/%{name} + +#Source0: https://download.kde.org/%{stable_kf6}/plasma/%{maj_ver_kf6}.%{min_ver_kf6}.%{bug_ver_kf6}/%{name}-%{version}.tar.xz +#Source1: https://download.kde.org/%{stable_kf6}/plasma/%{maj_ver_kf6}.%{min_ver_kf6}.%{bug_ver_kf6}/%{name}-%{version}.tar.xz.sig +Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz + +Source11: startkderc +Source15: fedora-lookandfeel.json +Source16: fedoradark-lookandfeel.json +Source17: fedoralight-lookandfeel.json + +Source100: kde +Source101: kde-fingerprint +Source102: kde-smartcard + + +## systemd user service dependencies +## (debating whether these be owned here or somewhere better... +## in the repective pkgs themselves? -- rdieter) +Source40: ssh-agent.conf +## To be dropped when EL10 and F42 is no longer supported +## Or if spice-vd-agent >= 0.23.0 is shipped in any existing release +Source41: spice-vdagent.conf + +## upstream patches + +## upstreamable Patches + +## downstream Patches +# default to enable open terminal action +Patch106: plasma-workspace-5.27.80-enable-open-terminal-action.patch +# default to enable the lock/logout actions +Patch107: plasma-workspace-5.27.80-enable-lock-logout-action.patch + +# udev +BuildRequires: zlib-devel +BuildRequires: libGL-devel +BuildRequires: mesa-libGLES-devel +BuildRequires: libSM-devel +BuildRequires: libX11-devel +BuildRequires: libXau-devel +BuildRequires: libXdmcp-devel +BuildRequires: libxkbfile-devel +BuildRequires: libXcomposite-devel +BuildRequires: libXdamage-devel +BuildRequires: libXrender-devel +BuildRequires: libXfixes-devel +BuildRequires: libXrandr-devel +BuildRequires: libXcursor-devel +BuildRequires: libXtst-devel +BuildRequires: libXft-devel +BuildRequires: libxcb-devel +BuildRequires: xcb-util-cursor-devel +BuildRequires: xcb-util-keysyms-devel +BuildRequires: xcb-util-image-devel +BuildRequires: xcb-util-renderutil-devel +BuildRequires: xcb-util-wm-devel +BuildRequires: xcb-util-devel +BuildRequires: glib2-devel +BuildRequires: fontconfig-devel +BuildRequires: boost-devel +BuildRequires: pkgconfig(libusb) +BuildRequires: libbsd-devel +BuildRequires: pam-devel +BuildRequires: libxcrypt-devel +BuildRequires: lm_sensors-devel +BuildRequires: pciutils-devel +BuildRequires: pipewire-devel +BuildRequires: unity-gtk3-module +Requires: unity-gtk3-module +%ifnarch s390 s390x +BuildRequires: libraw1394-devel +%endif +BuildRequires: libqalculate-devel +BuildRequires: libicu-devel + +BuildRequires: qt6-qtbase-devel +BuildRequires: qt6-qtbase-private-devel + +BuildRequires: qt6-qtdeclarative-devel +BuildRequires: qt6-qtsvg-devel +BuildRequires: qt6-qtwayland-devel +BuildRequires: cmake(Qt6Location) +BuildRequires: cmake(Qt6Positioning) +BuildRequires: cmake(Qt6ShaderTools) +BuildRequires: polkit-qt6-1-devel +BuildRequires: libcanberra-devel +BuildRequires: kf6-rpm-macros +BuildRequires: systemd-rpm-macros +BuildRequires: pkgconfig(libudev) +BuildRequires: systemd + +BuildRequires: extra-cmake-modules +BuildRequires: cmake(KF6Baloo) +BuildRequires: cmake(KF6Archive) +BuildRequires: cmake(KF6KCMUtils) +BuildRequires: cmake(KF6Crash) +BuildRequires: cmake(KF6DBusAddons) +BuildRequires: cmake(KF6Declarative) +BuildRequires: cmake(KF6Su) +BuildRequires: cmake(KF6DocTools) +BuildRequires: cmake(KF6GlobalAccel) +BuildRequires: cmake(KF6GuiAddons) +BuildRequires: cmake(KF6IdleTime) +BuildRequires: cmake(KF6ItemModels) +BuildRequires: cmake(KF6KIO) +BuildRequires: cmake(KF6NewStuff) +BuildRequires: cmake(KF6Notifications) +BuildRequires: cmake(KF6NotifyConfig) +BuildRequires: cmake(KF6People) +BuildRequires: cmake(KF6Runner) +BuildRequires: cmake(KF6TextEditor) +BuildRequires: cmake(KF6TextWidgets) +BuildRequires: cmake(KF6UnitConversion) +BuildRequires: cmake(KF6Wallet) +BuildRequires: cmake(KF6ThreadWeaver) +BuildRequires: cmake(KF6Kirigami) +BuildRequires: cmake(KF6KirigamiAddons) +BuildRequires: cmake(KF6QuickCharts) +BuildRequires: cmake(KF6StatusNotifierItem) +BuildRequires: cmake(KF6Svg) +BuildRequires: cmake(KF6KDED) +BuildRequires: cmake(KF6NetworkManagerQt) +BuildRequires: cmake(KF6Screen) +BuildRequires: cmake(KF6Holidays) +BuildRequires: cmake(KF6Prison) +BuildRequires: cmake(KF6UserFeedback) +BuildRequires: cmake(KNightTime) +BuildRequires: cmake(Plasma5Support) + +BuildRequires: wayland-devel >= 1.3.0 +BuildRequires: sonic-sysguard-library-devel +BuildRequires: sonic-screenlocker-devel +BuildRequires: sonic-win-devel +BuildRequires: layer-shell-qt-devel +BuildRequires: cmake(Phonon4Qt6) +BuildRequires: PackageKit-Qt6-devel +BuildRequires: cmake(KExiv2Qt6) + +BuildRequires: cmake(Plasma) +BuildRequires: cmake(KWayland) +BuildRequires: cmake(PlasmaActivities) +BuildRequires: cmake(PlasmaActivitiesStats) + +# workaround for +# The imported target "Qt6::XkbCommonSupport" references the file +# "/usr/lib64/libQt6XkbCommonSupport.a" +# but this file does not exist. +BuildRequires: qt6-qtbase-static +BuildRequires: cmake(Qt6Core5Compat) +BuildRequires: cmake(QCoro6) +BuildRequires: pkgconfig(libxcrypt) + +BuildRequires: wayland-protocols-devel +BuildRequires: plasma-wayland-protocols-devel +BuildRequires: plasma-breeze-devel >= %{majmin_ver_kf6} + +BuildRequires: chrpath +BuildRequires: desktop-file-utils + +BuildRequires: cmake(AppStreamQt) >= 1.0.0 + +# when kded_desktopnotifier.so moved here +Conflicts: kio-extras < 5.4.0 + +Recommends: plasma-welcome + +Recommends: %{name}-geolocation = %{version}-%{release} +Suggests: imsettings-qt + +Requires: %{name}-common = %{version}-%{release} +Requires: %{name}-libs%{?_isa} = %{version}-%{release} +Requires: libkworkspace6%{?_isa} = %{version}-%{release} +# for selinux settings +Requires: (policycoreutils if selinux-policy) + +Requires: kactivitymanagerd%{?_isa} +Requires: ksystemstats%{?_isa} +Requires: kf6-baloo +Requires: kf6-kded +Requires: kf6-kdoctools +Requires: sonic-frameworks-keybind +Requires: kf6-kquickcharts +Requires: kf6-kirigami +Requires: kf6-kirigami-addons +BuildRequires: kf6-kirigami-addons +Requires: kio-extras +BuildRequires: kio-extras +Requires: kio-fuse +BuildRequires: kio-fuse + +# The new volume control for PulseAudio +Recommends: plasma-pa + +# Without the platformtheme plugins we get broken fonts +Requires: kf6-frameworkintegration + +# For krunner +Recommends: plasma-milou + +# https://pagure.io/fedora-kde/SIG/issue/303 +Recommends: kde-inotify-survey + +# https://pagure.io/fedora-kde/SIG/issue/354 +Recommends: audiocd-kio + +# For a11y +Recommends: orca + +# powerdevil has a versioned dep on libkworkspace6, so (may?) +# need to avoid this dep when bootstrapping +%if ! 0%{?bootstrap} +# Power management +Requires: powerdevil +%endif + +Requires: dbus +# dbus-update-activation-environment +Requires: dbus-tools + +# Required for applications to show in kickoff and on task manager +Requires: redhat-menus + +# startkde (TODO: review, this is no longer a shell script) +Requires: coreutils +Requires: socat +Requires: xmessage +Requires: qt6-qttools + +# kconf_update +Requires: /usr/bin/qtpaths-qt6 + +Requires: xrdb xprop + +Requires: kde-settings-plasma + +# Default look-and-feel theme +Requires: plasma-lookandfeel-fedora = %{version}-%{release} + +Requires: systemd + +# Default sound theme +Requires: ocean-sound-theme + +# PolicyKit authentication agent +Requires: polkit-kde + +# onscreen keyboard +Requires: plasma-keyboard%{?_isa} + +# lockscreen look-and-feel imports qml: QtQuick.VirtualKeyboard +Requires: qt6-qtvirtualkeyboard + +Requires: (uresourced if systemd-oomd-defaults) + +# needed for task manager thumbnails under wayland and for things like +# screenshare portal +BuildRequires: kpipewire-devel + +# Require any plasmashell (plasma-desktop provides plasmashell(desktop)) +Provides: plasmashell = %{version} +Provides: plasmashell(desktop) = %{version} + +# plasmashell provides dbus service org.freedesktop.Notifications +Provides: desktop-notification-daemon + +# digitalclock applet +%if ! 0%{?bootstrap} +BuildRequires: pkgconfig(iso-codes) +%endif +Requires: iso-codes + +# Split of Xorg session into subpackage +Obsoletes: plasma-workspace <= %{plasma_version} + +# khotkeys was dropped +Obsoletes: khotkeys < 6 + +# Require Wayland session dependencies appropriately +Requires: sonic-win +#Requires: xorg-x11-server-Xwayland +Requires: qt6-qtwayland%{?_isa} +# startplasmacompositor deps +Requires: qt6-qttools +Requires: xdg-desktop-portal-kde +# Enables X11 apps to screenshare a Wayland environment +Recommends: xwaylandvideobridge +# Replace the old -wayland subpackage +Obsoletes: %{oldname}-wayland < 6.4.1-2 +Conflicts: %{oldname}-wayland < 6.4.1-2 +Conflicts: plasma-workspace-x11 +Conflicts: plasma-workspace +Provides: sonic-workspace = %{version}-%{release} +Provides: sonic-workspace%{?_isa} = %{version}-%{release} + +%description +Plasma 6 libraries and runtime components + +%package common +Summary: Common files for %{name} +Conflicts: plasma-workspace-x11-common +%description common +%{name}. + +%package -n libkworkspace6 +Summary: Runtime libkworkspace6 library +# when spilt occurred +Obsoletes: plasma-workspace < 5.4.2-2 +Obsoletes: libkworkspace5 < %{version}-%{release} +Requires: %{name}-common = %{version}-%{release} +%description -n libkworkspace6 +%{summary}. + +%package libs +Summary: Runtime libraries for %{name} +# when split out +Obsoletes: plasma-workspace < 5.4.2-2 +## omit dep on main pkg for now, means we can avoid pulling in a +## huge amount of deps (including kde4) into buildroot -- rex +#Requires: %%{name}%%{?_isa} = %%{version}-%%{release} +Requires: %{name}-common = %{version}-%{release} +# consider splitting out plasma_packagestructure content later +Provides: plasma-packagestructure = %{version}-%{release} +Conflicts: plasma-workspace-x11-libs +Conflicts: plasma-workspace-libs +Obsoletes: plasma-workspace-libs < %{version}-%{release} +%description libs +%{summary}. + +%package devel +Summary: Development files for %{name} +Requires: %{name}-libs%{?_isa} = %{version}-%{release} +Requires: libkworkspace6%{?_isa} = %{version}-%{release} +Conflicts: plasma-workspace-x11-devel +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + +%package doc +Summary: Documentation and user manuals for %{name} +# Automatically converted from old format: GFDL - review is highly recommended. +License: LicenseRef-Callaway-GFDL +# switch to noarch +Obsoletes: plasma-workspace-doc < 5.3.1-2 +Conflicts: plasma-workspace-x11-doc +Requires: %{name}-common = %{version}-%{release} +BuildArch: noarch +%description doc +Documentation and user manuals for %{name}. + + +#%package -n sddm-wayland-plasma +#Summary: Plasma Wayland SDDM greeter configuration +#Provides: sddm-greeter-displayserver +#Conflicts: sddm-greeter-displayserver +#Requires: kwin-wayland +#Requires: layer-shell-qt +# +#Requires: plasma-keyboard +#Supplements: (sddm and plasma-workspace) +#%if ! (0%{?fedora} && 0%{?fedora} < 38) +## Replace sddm-x11 with sddm-wayland-plasma +### N.B.: If sddm gets updated in F36/F37, this will need to be bumped +#Obsoletes: sddm-x11 < 0.19.0^git20230404.e652433-2 +#%endif +#BuildArch: noarch +# +#%description -n sddm-wayland-plasma +#This package contains configuration and dependencies for SDDM +#to use KWin for the Wayland compositor for the greeter. + +%package x11 +Summary: SonicDE X11 session +#Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: xlibre-xserver-Xorg +Conflicts: plasma-workspace-x11 + +%description x11 +SonicDE X11 session. + +%package -n plasma-lookandfeel-fedora +Summary: Fedora look-and-feel for Plasma +Requires: %{name} = %{version}-%{release} +# lockscreen look-and-feel imports qml: QtQuick.VirtualKeyboard +Requires: qt6-qtvirtualkeyboard +# when switched to noarch +Obsoletes: plasma-lookandfeel-fedora < 5.8.0-5 +# https://bugzilla.redhat.com/show_bug.cgi?id=1356890 +Obsoletes: f22-kde-theme < 22.4 +Obsoletes: f23-kde-theme < 23.1 +Obsoletes: f24-kde-theme < 24.6 +Obsoletes: f24-kde-theme-core < 5.10.5-2 +BuildArch: noarch +%description -n plasma-lookandfeel-fedora +%{summary}. + + +%prep +%autosetup -p1 + +# Populate initial lookandfeel package +cp -a lookandfeel/org.kde.breeze lookandfeel/org.fedoraproject.fedora +cp -a lookandfeel/org.kde.breeze lookandfeel/org.fedoraproject.fedoradark +cp -a lookandfeel/org.kde.breeze lookandfeel/org.fedoraproject.fedoralight +# Overwrite settings to configure twilight mode +cp -a lookandfeel/org.kde.breezetwilight/* lookandfeel/org.fedoraproject.fedora +# Overwrite settings to configure dark mode +cp -a lookandfeel/org.kde.breezedark/* lookandfeel/org.fedoraproject.fedoradark +# Write the correct lookandfeel package names +install -m 0644 %{SOURCE15} lookandfeel/org.fedoraproject.fedora/metadata.json +install -m 0644 %{SOURCE16} lookandfeel/org.fedoraproject.fedoradark/metadata.json +install -m 0644 %{SOURCE17} lookandfeel/org.fedoraproject.fedoralight/metadata.json +cat >> lookandfeel/CMakeLists.txt <= 11 || 0%{?fedora} >= 43) +install -m644 -p -D %{SOURCE41} %{buildroot}%{_userunitdir}/plasma-core.target.d/spice-vdagent.conf +%endif + +%find_lang all --with-html --all-name + +grep "%{_kf6_docdir}" all.lang > %{name}-doc.lang +grep libkworkspace.mo all.lang > libkworkspace6.lang +# any translations not used elsewhere, include in main pkg +cat *.lang | sort | uniq -u > %{name}.lang + + +%check +desktop-file-validate %{buildroot}%{_kf6_datadir}/applications/org.kde.{plasmashell,kcolorschemeeditor,kfontview,plasmawindowed,klipper,plasma-interactiveconsole,baloorunner,secretprompter}.desktop + +%post +if [ -s /usr/sbin/setsebool ] ; then + setsebool -P selinuxuser_execmod 1 ||: +fi + +%files common +%license LICENSES + +%files -f %{name}.lang +%{_libexecdir}/ksecretprompter +%{_kf6_datadir}/applications/org.kde.baloorunner.desktop +%{_kf6_datadir}/applications/org.kde.secretprompter.desktop +%{_kf6_datadir}/xdg-desktop-portal/kde-portals.conf +%{_sysconfdir}/xdg/menus/plasma-applications.menu +%{_kf6_bindir}/gmenudbusmenuproxy +%{_kf6_bindir}/kcminit +%{_kf6_bindir}/kcminit_startup +%{_kf6_bindir}/krunner +%{_kf6_bindir}/ksmserver +%{_kf6_bindir}/ksplashqml +%{_kf6_bindir}/plasmashell +%{_kf6_bindir}/plasmawindowed +%{_kf6_bindir}/plasma_session +%{_kf6_bindir}/plasma-apply-* +%{_kf6_bindir}/plasma-interactiveconsole +%{_kf6_bindir}/plasma-shutdown +%{_kf6_bindir}/plasma_waitforname +%{_kf6_bindir}/xembedsniproxy +%{_kf6_bindir}/kcolorschemeeditor +%{_kf6_bindir}/kde-systemd-start-condition +%{_kf6_bindir}/kfontinst +%{_kf6_bindir}/kfontview +%{_kf6_bindir}/lookandfeeltool +%{_kf6_qmldir}/org/kde/* +%{_libexecdir}/baloorunner +%{_libexecdir}/ksmserver-logout-greeter +%{_libexecdir}/kf6/kauth/fontinst* +%{_libexecdir}/kfontprint +%{_libexecdir}/plasma-changeicons +%{_libexecdir}/plasma-dbus-run-session-if-needed +%{_libexecdir}/plasma-fallback-session-* +%{_kf6_datadir}/plasma/avatars/ +%{_kf6_datadir}/plasma/plasmoids/ +%{_kf6_datadir}/plasma/wallpapers/ +%dir %{_kf6_datadir}/plasma/look-and-feel/ +%{_kf6_datadir}/plasma/look-and-feel/org.kde.breeze.desktop/ +%{_kf6_datadir}/plasma/look-and-feel/org.kde.breezedark.desktop/ +%{_kf6_datadir}/plasma/look-and-feel/org.kde.breezetwilight.desktop/ +%{_kf6_datadir}/solid/ +%{_kf6_datadir}/kstyle/ +%{_sysconfdir}/xdg/startkderc +%{_sysconfdir}/xdg/autostart/*.desktop +%{_datadir}/zsh/site-functions/_krunner +%{_datadir}/zsh/site-functions/_plasmashell +%{_datadir}/icons/hicolor/*/*/*font*.png +%{_datadir}/icons/hicolor/scalable/apps/preferences-desktop-font-installer.svgz +%{_datadir}/desktop-directories/*.directory +%{_datadir}/dbus-1/services/*.service +%{_datadir}/dbus-1/system-services/org.kde.fontinst.service +%{_datadir}/dbus-1/system.d/org.kde.fontinst.conf +%{_datadir}/knsrcfiles/*.knsrc +%{_datadir}/kfontinst/icons/hicolor/*/actions/*font*.png +%{_datadir}/konqsidebartng/virtual_folders/services/fonts.desktop +%{_datadir}/krunner/dbusplugins/plasma-runner-baloosearch.desktop +%{_datadir}/kxmlgui5/kfontviewpart/kfontviewpart.rc +%{_datadir}/kxmlgui5/kfontview/kfontviewui.rc +%{_kf6_datadir}/knotifications6/*.notifyrc +%{_kf6_datadir}/config.kcfg/* +%{_kf6_datadir}/kio_desktop/ +%{_kf6_datadir}/applications/kcm_* +%{_kf6_datadir}/applications/org.kde.plasmashell.desktop +%{_kf6_datadir}/applications/org.kde.kcolorschemeeditor.desktop +%{_kf6_datadir}/applications/org.kde.kfontview.desktop +%{_kf6_datadir}/applications/org.kde.kfontinst.desktop +%{_kf6_datadir}/applications/org.kde.plasmawindowed.desktop +%{_kf6_datadir}/applications/org.kde.plasma-fallback-session-save.desktop +%{_kf6_datadir}/applications/org.kde.klipper.desktop +%{_kf6_datadir}/kio/servicemenus/installfont.desktop +%{_kf6_datadir}/qlogging-categories6/*.categories +%{_sysconfdir}/xdg/plasmanotifyrc +%{_kf6_datadir}/polkit-1/actions/org.kde.fontinst.policy +%{_userunitdir}/*.service +%{_userunitdir}/plasma-core.target +%dir %{_userunitdir}/plasma-core.target.d/ +%{_userunitdir}/plasma-core.target.d/ssh-agent.conf +%if ! (0%{?rhel} >= 11 || 0%{?fedora} >= 43) +%{_userunitdir}/plasma-core.target.d/spice-vdagent.conf +%endif +%{_userunitdir}/plasma-workspace.target +#%{_userunitdir}/plasma-workspace-wayland.target +%{_userunitdir}/plasma-workspace-x11.target +%dir %{_userunitdir}/plasma-workspace@.target.d/ +%{_libdir}/kconf_update_bin/plasma6.3-update-clipboard-database-2-to-3 +%{_datadir}/kconf_update/plasma6.3-update-clipboard-database-2-to-3.upd +%{_libdir}/kconf_update_bin/plasmashell-6.5-remove-stop-activity-shortcut +%{_datadir}/kconf_update/plasmashell-6.5-remove-stop-activity-shortcut.upd +%{_kf6_datadir}/timezonefiles/timezones.json +%{_kf6_datadir}/applications/org.kde.plasma-interactiveconsole.desktop +# PAM +%config(noreplace) %{_sysconfdir}/pam.d/kde +%config(noreplace) %{_sysconfdir}/pam.d/kde-fingerprint +%config(noreplace) %{_sysconfdir}/pam.d/kde-smartcard +## Plasma Wayland +#%{_kf6_bindir}/startplasma +#%{_kf6_bindir}/startplasma-wayland +%{_datadir}/wayland-sessions/plasma.desktop + +%files doc -f %{name}-doc.lang + +%files -n libkworkspace6 -f libkworkspace6.lang +%{_libdir}/libkworkspace6.so.* + +%files libs +%{_libdir}/libbatterycontrol.so.* +%{_libdir}/libtaskmanager.so.* +%{_libdir}/libklipper.so.* +%{_libdir}/libkrdb.so +%{_libdir}/libnotificationmanager.* +%{_libdir}/libkfontinst* +%{_libdir}/libkmpris.so.* +# multilib'able plugins +%{_kf6_qtplugindir}/plasma/applets/ +%if %{with kf6_pim} +%{_kf6_qtplugindir}/plasmacalendarplugins/ +%endif +%{_kf6_plugindir}/kio/*.so +%{_kf6_plugindir}/kded/*.so +%{_libdir}/libklookandfeel.so.6 +%{_libdir}/libklookandfeel.so.%{version} +%{_kf6_plugindir}/krunner/* +%{_qt6_plugindir}/plasma/kcms/systemsettings/kcm_*.so +%{_kf6_qtplugindir}/kf6/parts/kfontviewpart.so +%{_kf6_qtplugindir}/kf6/thumbcreator/fontthumbnail.so +%{_kf6_qtplugindir}/kf6/kfileitemaction/wallpaperfileitemaction.so +%{_kf6_qtplugindir}/kf6/packagestructure/plasma_layouttemplate.so +%{_kf6_qtplugindir}/kf6/packagestructure/plasma_lookandfeel.so +%{_kf6_qtplugindir}/kf6/packagestructure/wallpaper_images.so +%{_kf6_qtplugindir}/plasma/containmentactions/org.kde.applauncher.so +%{_kf6_qtplugindir}/plasma/containmentactions/org.kde.contextmenu.so +%{_kf6_qtplugindir}/plasma/containmentactions/org.kde.paste.so +%{_kf6_qtplugindir}/plasma/containmentactions/org.kde.switchdesktop.so +%{_kf6_qtplugindir}/plasma/containmentactions/switchwindow.so +%{_kf6_qtplugindir}/plasma/containmentactions/switchactivity.so +%{_kf6_qtplugindir}/plasma/kcminit/kcm_fonts_init.so +%{_kf6_qtplugindir}/plasma/kcminit/kcm_style_init.so +%{_kf6_qtplugindir}/plasma/kcms/systemsettings_qwidgets/kcm_fontinst.so +%{_libexecdir}/plasma-sourceenv.sh +%{_kf6_datadir}/kconf_update/plasma6.0-remove-dpi-settings.upd +%{_kf6_datadir}/kconf_update/plasmashell-6.0-keep-default-floating-setting-for-plasma-5-panels.upd +%{_kf6_datadir}/kconf_update/plasma6.0-remove-old-shortcuts.upd +%{_kf6_datadir}/kconf_update/migrate-calendar-to-plugin-id.upd +%{_kf6_datadir}/kconf_update/migrate-calendar-to-plugin-id.py +%{_kf6_datadir}/kconf_update/plasmashell-6.0-keep-custom-position-of-panels.upd +%{_kf6_datadir}/kconf_update/plasma6.4-migrate-fullscreen-notifications-to-dnd.upd +%{_libdir}/kconf_update_bin/plasma6.0-remove-old-shortcuts +%{_libdir}/kconf_update_bin/plasmashell-6.0-keep-default-floating-setting-for-plasma-5-panels +%{_libdir}/kconf_update_bin/plasma6.0-remove-dpi-settings +%{_libdir}/kconf_update_bin/plasmashell-6.0-keep-custom-position-of-panels +%{_libdir}/kconf_update_bin/plasma6.4-migrate-fullscreen-notifications-to-dnd +%{_kf6_datadir}/kglobalaccel/org.kde.krunner.desktop + +%files devel +%{_libdir}/libbatterycontrol.so +%{_libdir}/libklipper.so +%{_libdir}/libtaskmanager.so +%{_libdir}/libkworkspace6.so +%{_includedir}/kworkspace6/ +%{_includedir}/taskmanager/ +%{_includedir}/notificationmanager/ +%{_libdir}/cmake/KRunnerAppDBusInterface/ +%{_libdir}/cmake/KSMServerDBusInterface/ +%{_libdir}/cmake/LibKLookAndFeel/ +%{_libdir}/cmake/LibKWorkspace/ +%{_libdir}/cmake/LibTaskManager/ +%{_libdir}/cmake/LibNotificationManager/ +%{_datadir}/dbus-1/interfaces/*.xml +%{_includedir}/krdb/krdb.h +%{_includedir}/krdb/krdb_export.h +%{_includedir}/klookandfeel/ +%{_libdir}/cmake/Krdb/*.cmake +%{_libdir}/libklookandfeel.so + +#%files -n sddm-wayland-plasma +#%{_prefix}/lib/sddm/sddm.conf.d/plasma-wayland.conf + +%files x11 +%defattr(-,root,root,-) +%{_datadir}/xsessions/plasmax11.desktop +%{_bindir}/startplasma-x11 + +%files -n plasma-lookandfeel-fedora +%{_kf6_datadir}/plasma/look-and-feel/org.fedoraproject.fedora*.desktop/ + + +%changelog +* Fri Apr 10 2026 Steve Cossette - 6.6.4-1 +- 6.6.4 + +* Tue Mar 17 2026 Steve Cossette - 6.6.3-1 +- 6.6.3 + +* Fri Mar 13 2026 Adam Williamson - 6.6.2-2 +- Backport MR #6413 to back off the logout greeter focus grab timeout + +* Tue Mar 03 2026 Steve Cossette - 6.6.2-1 +- 6.6.2 + +* Tue Feb 24 2026 Steve Cossette - 6.6.1-1 +- 6.6.1 + +* Thu Feb 12 2026 Steve Cossette - 6.6.0-1 +- 6.6.0 + +* Sun Feb 08 2026 Neal Gompa - 6.5.91-2 +- Unconditionally require plasma-keyboard + +* Tue Jan 27 2026 Steve Cossette - 6.5.91-1 +- 6.5.91 + +* Sat Jan 17 2026 Fedora Release Engineering - 6.5.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + +* Tue Jan 13 2026 farchord@gmail.com - 6.5.90-1 +- 6.5.90 + +* Tue Jan 13 2026 farchord@gmail.com - 6.5.5-1 +- 6.5.5 + +* Sun Dec 14 2025 Alessandro Astone - 6.5.4-2 +- Default to plasma-keyboard in sddm for f44 + +* Tue Dec 09 2025 Steve Cossette - 6.5.4-1 +- 6.5.4 + +* Fri Dec 05 2025 Neal Gompa - 6.5.3-3 +- Install light/dark variants of Fedora look and feel theme + +* Sun Nov 23 2025 Steve Cossette - 6.5.3-2 +- Rebuild + +* Tue Nov 18 2025 Steve Cossette - 6.5.3-1 +- 6.5.3 + +* Tue Nov 04 2025 Steve Cossette - 6.5.2-1 +- 6.5.2 + +* Tue Oct 28 2025 Steve Cossette - 6.5.1-1 +- 6.5.1 + +* Fri Oct 17 2025 Steve Cossette - 6.5.0-1 +- 6.5.0 + +* Sat Oct 04 2025 Steve Cossette - 6.4.91-2 +- Another rebuild for PackageKit-Qt Update + +* Thu Oct 02 2025 Steve Cossette - 6.4.91-1 +- 6.4.91 + +* Tue Sep 30 2025 Jan Grulich - 6.4.5-4 +- Rebuild (qt6) + +* Fri Sep 26 2025 Neal Gompa - 6.4.5-3 +- Drop spice-vdagent snippet for F43+ / EL11+ (RHBZ#2399742) + +* Thu Sep 25 2025 Steve Cossette - 6.4.90-1 +- 6.4.90 + +* Wed Sep 24 2025 Steve Cossette - 6.4.5-2 +- Fix for Qt 6.9.2-related crash + +* Tue Sep 16 2025 farchord@gmail.com - 6.4.5-1 +- 6.4.5 + +* Tue Aug 26 2025 Steve Cossette - 6.4.4-3 +- Adding plasma-keyboard as a runtime dependancy + +* Thu Aug 07 2025 František Zatloukal - 6.4.4-2 +- Rebuilt for icu 77.1 + +* Wed Aug 06 2025 Steve Cossette - 6.4.4-1 +- 6.4.4 + +* Wed Aug 06 2025 František Zatloukal - 6.4.3-3 +- Rebuilt for icu 77.1 + +* Fri Jul 25 2025 Fedora Release Engineering - 6.4.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + +* Tue Jul 15 2025 Steve Cossette - 6.4.3-1 +- 6.4.3 + +* Thu Jul 03 2025 Steve Cossette - 6.4.2-1 +- 6.4.2 + +* Wed Jun 25 2025 Neal Gompa - 6.4.1-2 +- Merge plasma-workspace-wayland subpackage into main package + +* Tue Jun 24 2025 Marc Deop i Argemí - 6.4.1-1 +- 6.4.1 + +* Mon Jun 16 2025 Steve Cossette - 6.4.0-1 +- 6.4.0 + +* Sat May 31 2025 Marc Deop i Argemí - 6.3.91-2 +- Add signature file + +* Fri May 30 2025 Steve Cossette - 6.3.91-1 +- 6.3.91 + +* Thu May 15 2025 Marc Deop i Argemí - 6.3.90-1 +- 6.3.90 + +* Tue May 06 2025 Steve Cossette - 6.3.5-1 +- 6.3.5 + +* Mon Apr 14 2025 Jan Grulich - 6.3.4-3 +- Rebuild (qt6) + +* Thu Apr 03 2025 Marc Deop i Argemí - 6.3.4-2 +- Backport upstream patch + +* Wed Apr 02 2025 Marc Deop i Argemí - 6.3.4-1 +- 6.3.4 + +* Tue Mar 25 2025 Jan Grulich - 6.3.3-2 +- Rebuild (qt6) + +* Tue Mar 11 2025 Steve Cossette - 6.3.3-1 +- 6.3.3 + +* Tue Feb 25 2025 Steve Cossette - 6.3.2-1 +- 6.3.2 + +* Tue Feb 18 2025 Steve Cossette - 6.3.1-1 +- 6.3.1 + +* Thu Feb 06 2025 Marc Deop i Argemí - 6.3.0-1 +- 6.3.0 + +* Sat Feb 01 2025 Björn Esser - 6.2.91-2 +- Add explicit BR: libxcrypt-devel + +* Thu Jan 23 2025 Steve Cossette - 6.2.91-1 +- 6.2.91 + +* Sat Jan 18 2025 Fedora Release Engineering - 6.2.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + +* Thu Jan 09 2025 Steve Cossette - 6.2.90-1 +- Beta 6.2.90 + +* Tue Dec 31 2024 Steve Cossette - 6.2.5-1 +- 6.2.5 + +* Sun Dec 08 2024 Pete Walter - 6.2.4-2 +- Rebuild for ICU 76 + +* Tue Nov 26 2024 Marc Deop i Argemí - 6.2.4-1 +- 6.2.4 + +* Wed Nov 13 2024 Neal Gompa - 6.2.3-2 +- Backport patch to drop xsetroot dependency +- Drop unused iceauth dependency + +* Tue Nov 05 2024 Steve Cossette - 6.2.3-1 +- 6.2.3 + +* Tue Oct 22 2024 Steve Cossette - 6.2.2-1 +- 6.2.2 + +* Wed Oct 16 2024 Steve Cossette - 6.2.1.1-1 +- 6.2.1.1 + +* Tue Oct 15 2024 Steve Cossette - 6.2.1-1 +- 6.2.1 + +* Mon Oct 14 2024 Jan Grulich - 6.2.0-3 +- Rebuild (qt6) + +* Sun Oct 06 2024 Steve Cossette - 6.2.0-2 +- 6.2.0 Respin + +* Thu Oct 03 2024 Marc Deop i Argemí - 6.2.0-1 +- 6.2.0 + +* Sun Sep 15 2024 Alessandro Astone - 6.1.90-2 +- Add missing dependency on xsetroot. + Fixes cursor in some XWayland apps. + (https://pagure.io/fedora-kde/SIG/issue/562) + +* Thu Sep 12 2024 Marc Deop i Argemí - 6.1.90-1 +- 6.1.90 + +* Tue Sep 10 2024 Marc Deop i Argemí - 6.1.5-1 +- 6.1.5 +- Add missing dependency on xsetroot. + Fixes cursor in some XWayland apps. + (https://pagure.io/fedora-kde/SIG/issue/562) + +* Wed Sep 04 2024 Miroslav Suchý - 6.1.4-3 +- convert license to SPDX + +* Thu Aug 15 2024 Alessandro Astone - 6.1.4-2 +- Set pre-generated locales (rhbz#2300192) + +* Fri Aug 09 2024 Steve Cossette - 6.1.4-1 +- 6.1.4 + +* Thu Jul 25 2024 Timothée Ravier - 6.1.3-4 +- Backport patch for https://pagure.io/fedora-kde/SIG/issue/539 + +* Wed Jul 24 2024 Marc Deop i Argemí - 6.1.3-3 +- rebuilt + +* Fri Jul 19 2024 Fedora Release Engineering - 6.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Tue Jul 16 2024 Marc Deop i Argemí - 6.1.3-1 +- 6.1.3 + +* Sat Jul 06 2024 Mukundan Ragavan - 6.1.2-2 +- rebuild for libqalculate soname update + +* Wed Jul 03 2024 Marc Deop i Argemí - 6.1.2-1 +- 6.1.2 + +* Tue Jun 25 2024 Marc Deop i Argemí - 6.1.1-1 +- 6.1.1 + +* Tue Jun 18 2024 Marc Deop i Argemí - 6.1.0-3 +- Rebuild to sort dependencies with plasma-desktop + +* Tue Jun 18 2024 Marc Deop i Argemí - 6.1.0-2 +- Rebuild due to upstream re-spin + +* Thu Jun 13 2024 Marc Deop i Argemí - 6.1.0-1 +- 6.1.0 + +* Fri May 24 2024 Marc Deop i Argemí - 6.0.90-1 +- 6.0.90 + +* Wed May 22 2024 Marc Deop i Argemí - 6.0.5-1 +- 6.0.5 + +* Tue Apr 16 2024 Marc Deop i Argemí - 6.0.4-1 +- 6.0.4 + +* Thu Apr 04 2024 Jan Grulich - 6.0.3-3 +- Rebuild (qt6) + +* Tue Apr 02 2024 Alessandro Astone - 6.0.3-2 +- Backport systray icon color bugfix + +* Tue Mar 26 2024 Marc Deop i Argemí - 6.0.3-1 +- 6.0.3 + +* Fri Mar 15 2024 Marie Loise Nolden - 6.0.2-2 +- fix startup sound by adding upstream patches + +* Tue Mar 12 2024 Marc Deop i Argemí - 6.0.2-1 +- 6.0.2 + +* Mon Mar 11 2024 Alessandro Astone - 6.0.1-2 +- Patch qtpaths binary name, avoids abort on first login + +* Wed Mar 06 2024 Marc Deop i Argemí - 6.0.1-1 +- 6.0.1 + +* Fri Mar 01 2024 Neal Gompa - 6.0.0-4 +- Add Recommends on xwaylandvideobridge for -wayland + +* Wed Feb 28 2024 Steve Cossette - 6.0.0-3 +- Updated package's build/runtime requirements + +* Mon Feb 26 2024 Alessandro Astone - 6.0.0-2 +- Respin 6.0.0 + +* Wed Feb 21 2024 Marc Deop i Argemí - 6.0.0-1 +- 6.0.0 + +* Tue Feb 20 2024 Neal Gompa - 5.93.0-6 +- Backport rudimentary auto-launch apps on reboot from 6.1 + +* Fri Feb 16 2024 Jan Grulich - 5.93.0-5 +- Rebuild (qt6) + +* Thu Feb 15 2024 Alessandro Astone - 5.93.0-4 +- Stricter x11 obsoletes version + +* Tue Feb 13 2024 Neal Gompa - 5.93.0-3 +- Drop qualifier from plasma.desktop + +* Mon Feb 12 2024 Marc Deop i Argemí - 5.93.0-2 +- Backport security patch + +* Wed Jan 31 2024 Marc Deop i Argemí - 5.93.0-1 +- 5.93.0 + +* Wed Jan 31 2024 Pete Walter - 5.92.0-7 +- Rebuild for ICU 74 + +* Thu Jan 25 2024 Fedora Release Engineering - 5.92.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Jan 21 2024 Fedora Release Engineering - 5.92.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Wed Jan 17 2024 Steve Cossette - 5.92.0-4 +- Added patch for bug: app activation/minimize problems in taskbar + +* Mon Jan 15 2024 Alessandro Astone - 5.92.0-3 +- Rebuild for plasma-breeze + +* Thu Jan 11 2024 Alessandro Astone - 5.92.0-2 +- Re-enable audiocd-kio recommends + +* Wed Jan 10 2024 Marc Deop i Argemí - 5.92.0-1 +- 5.92.0 + +* Sat Dec 23 2023 Neal Gompa - 5.91.0-2 +- Clean up uneeded conditionals in packaging + +* Thu Dec 21 2023 Marc Deop i Argemí - 5.91.0-1 +- 5.91.0 + +* Mon Dec 04 2023 Alessandro Astone - 5.90.0-2 +- Update breeze-fedora sddm theme + +* Sun Dec 03 2023 Justin Zobel - 5.90.0-1 +- Update to 5.90.0 + +* Wed Nov 29 2023 Jan Grulich - 5.27.80-15 +- Rebuild (qt6) + +* Sat Nov 25 2023 Alessandro Astone - 5.27.80-14 +- Re-enable downstream patches + +* Fri Nov 24 2023 Alessandro Astone - 5.27.80-13 +- Add missing QML dependency for lockscreen + +* Fri Nov 24 2023 Alessandro Astone - 5.27.80-12 +- Add missing QML dependency for sddm-breeze + +* Fri Nov 24 2023 Alessandro Astone - 5.27.80-11 +- Switch default sound theme + +* Tue Nov 21 2023 Alessandro Astone - 5.27.80-10 +- Convert look-and-feel metadata to json to enable the theme again +- Re-enable the fedora background + +* Mon Nov 20 2023 Alessandro Astone - 5.27.80-9 +- Rebuild for kf6-kquickcharts versioning +- Redo PAM to support upstream changes for multiple concurrent pam sessions + +* Sun Nov 19 2023 Alessandro Astone - 5.27.80-8 +- Re-enable 01-breeze-fedora + +* Sun Nov 19 2023 Alessandro Astone - 5.27.80-7 +- sddm-wayland-plasma requries layer-shell-qt + +* Sat Nov 18 2023 Alessandro Astone - 5.27.80-6 +- Fix Plasma 6 runtime requirements + +* Sat Nov 18 2023 Neal Gompa - 5.27.80-5 +- Drop -x11 subpackage and have -wayland subpackage obsolete it +- Remove all legacy conditionals from Plasma 5 + +* Sat Nov 18 2023 Alessandro Astone - 5.27.80-4 +- libkworkspace6 subpackage +- Require kf6-kirigami2-addons at runtime + +* Sat Nov 18 2023 Alessandro Astone - 5.27.80-3 +- Remove runtime dependency on deprecated khotkeys + +* Sat Nov 18 2023 Alessandro Astone - 5.27.80-2 +- Rebuild against rawhide kuserfeedback + +* Wed Nov 15 2023 Steve Cossette - 5.27.80-1 +- 5.27.80 + +* Fri Nov 03 2023 Neal Gompa - 5.27.9.1-2 +- Mark plasma-workspace-x11 as deprecated + +* Wed Oct 25 2023 Marc Deop i Argemí - 5.27.9.1-1 +- 5.27.9.1 +- Replace old %%stable macro + +* Tue Oct 24 2023 Steve Cossette - 5.27.9-1 +- 5.27.9 + +* Fri Sep 22 2023 Neal Gompa - 5.27.8-2 +- Recommend orca for a11y and require xdg-desktop-portal-kde for wayland + +* Tue Sep 12 2023 justin.zobel@gmail.com - 5.27.8-1 +- 5.27.8 + +* Sat Aug 12 2023 Marc Deop i Argemí - 5.27.7-2 +- Add upstream patch + +* Tue Aug 01 2023 Marc Deop i Argemí - 5.27.7-1 +- 5.27.7 + +* Fri Jul 21 2023 Fedora Release Engineering - 5.27.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Tue Jul 11 2023 František Zatloukal - 5.27.6-2 +- Rebuilt for ICU 73.2 + +* Sun Jun 25 2023 Marc Deop i Argemí - 5.27.6-1 +- 5.27.6 + +* Mon Jun 12 2023 Timothée Ravier - 5.27.5-2 +- Recommend kde-inotify-survey & kf5-audiocd-kio + +* Wed May 10 2023 Marc Deop i Argemí - 5.27.5-1 +- 5.27.5 + +* Wed Apr 05 2023 Neal Gompa - 5.27.4.1-2 +- Bump sddm Obsoletes for F38+ + +* Tue Apr 04 2023 Marc Deop i Argemí - 5.27.4.1-1 +- 5.27.4.1 + +* Tue Apr 04 2023 Marc Deop i Argemí - 5.27.4-1 +- 5.27.4 + +* Mon Apr 03 2023 Neal Gompa - 5.27.3-4 +- Add Obsoletes sddm-x11 for sddm-wayland transition in F38+ + +* Mon Mar 27 2023 Marc Deop i Argemí - 5.27.3-3 +- Add patch to hide the virtual keyboard indicator from sddm + +* Wed Mar 22 2023 Adam Williamson - 5.27.3-2 +- Backport MR #2767 to fix slow startup issue (#2179998) + +* Tue Mar 14 2023 Marc Deop i Argemí - 5.27.3-1 +- 5.27.3 + +* Mon Mar 13 2023 Adam Williamson - 5.27.2-3 +- Rebuild with no changes for F38 Bodhi purposes + +* Mon Mar 13 2023 Marc Deop i Argemí - 5.27.2-2 +- Add Requires: kde-settings-sddm to sddm-breeze subpackage + +* Tue Feb 28 2023 Marc Deop i Argemí - 5.27.2-1 +- 5.27.2 + +* Tue Feb 21 2023 Marc Deop i Argemí - 5.27.1-1 +- 5.27.1 +- Recommends plasma-welcome on Fedora + +* Mon Feb 20 2023 Neal Gompa - 5.27.0-4 +- Add patch to disable global shortcuts at login (#2171332) + +* Wed Feb 15 2023 Marc Deop - 5.27.0-3 +- Add wayland-protocols-devel BR +- Add kf5-libkexiv2-devel BR + +* Tue Feb 14 2023 Marc Deop marcdeop@fedoraproject.org - 5.27.0-2 +- Rebuild against new sources + +* Thu Feb 09 2023 Marc Deop - 5.27.0-1 +- 5.27.0 + +* Fri Jan 20 2023 Fedora Release Engineering - 5.26.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Thu Jan 19 2023 Marc Deop - 5.26.90-1 +- 5.26.90 + +* Thu Jan 05 2023 Justin Zobel - 5.26.5-1 +- Update to 5.26.5 + +* Sat Dec 31 2022 Pete Walter - 5.26.4.1-2 +- Rebuild for ICU 72 + +* Tue Nov 29 2022 Marc Deop - 5.26.4.1-1 +- 5.26.4.1 + +* Tue Nov 29 2022 Marc Deop - 5.26.4-1 +- 5.26.4 + +* Wed Nov 09 2022 Marc Deop - 5.26.3-1 +- 5.26.3 + +* Mon Nov 07 2022 Marc Deop marcdeop@fedoraproject.org - 5.26.2-3 +- BuildRequires for kpipewire-devel + +* Sat Nov 05 2022 Marc Deop marcdeop@fedoraproject.org - 5.26.2-2 +- Require kpipewire + +* Wed Oct 26 2022 Marc Deop - 5.26.2-1 +- 5.26.2 + +* Tue Oct 18 2022 Marc Deop - 5.26.1-1 +- 5.26.1 + +* Thu Oct 06 2022 Marc Deop - 5.26.0-1 +- 5.26.0 + +* Sun Sep 25 2022 Neal Gompa - 5.25.90-2 +- Add Fedora patches to change default desktop context menu configuration + + Enable "Open Terminal" action + + Enable "Lock" and "Logout" actions + +* Sat Sep 17 2022 Marc Deop - 5.25.90-1 +- 5.25.90 + +* Wed Sep 07 2022 Marc Deop - 5.25.5-1 +- 5.25.5 + +* Fri Aug 26 2022 Adam Williamson - 5.25.4-2 +- Disable sddm-on-wayland for F37 (#2110801) + +* Wed Aug 03 2022 Justin Zobel - 5.25.4-1 +- Update to 5.25.4 + +* Mon Aug 01 2022 Frantisek Zatloukal - 5.25.3.1-8 +- Rebuilt for ICU 71.1 + +* Wed Jul 27 2022 Troy Dawson - 5.25.3.1-7 +- Add BuildRequires libicu-devel - enables this code + https://invent.kde.org/plasma/plasma-workspace/-/merge_requests/1725 + +* Mon Jul 25 2022 Jan Grulich - 5.25.3.1-6 +- Rebuild (qt5) + +* Sun Jul 24 2022 Yaroslav Sidlovsky - 5.25.3.1-5 +- Added patch to fix #457019 + +* Fri Jul 22 2022 Fedora Release Engineering - 5.25.3.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Wed Jul 20 2022 Jan Grulich - 5.25.3.1-3 +- Disable toplevel fixed positions on Wayland + +* Thu Jul 14 2022 Jan Grulich - 5.25.3.1-2 +- Rebuild (qt5) + +* Tue Jul 12 2022 Marc Deop - 5.25.3.1-1 +- 5.25.3.1 + +* Tue Jul 12 2022 Marc Deop - 5.25.3-1 +- 5.25.3 + +* Tue Jun 28 2022 Marc Deop - 5.25.2-1 +- 5.25.2 + +* Tue Jun 21 2022 Marc Deop - 5.25.1-1 +- 5.25.1 + +* Tue Jun 14 2022 Neal Gompa - 5.25.0-2 +- Remove broken mechanism for setting default look and feel +- Always ship Fedora look and feel theme +- Drop unneeded sddm theme snapshot and patches + +* Thu Jun 09 2022 Marc Deop - 5.25.0-1 +- 5.25.0 + +* Fri May 20 2022 Marc Deop - 5.24.90-1 +- 5.24.90 + +* Tue May 17 2022 Jan Grulich - 5.24.5-3 +- Rebuild (qt5) + +* Fri May 06 2022 Mamoru TASAKA - 5.24.5-2 +- Rebuild for new gpsd + +* Tue May 03 2022 Marc Deop - 5.24.5-1 +- 5.24.5 + +* Thu Mar 31 2022 Justin Zobel - 5.24.4-1 +- Update to 5.24.4 + +* Mon Mar 14 2022 Neal Gompa - 5.24.3-2 +- Do not use the SDDM Wayland greeter by default for F36 + +* Tue Mar 08 2022 Marc Deop - 5.24.3-1 +- 5.24.3 + +* Tue Mar 08 2022 Jan Grulich - 5.24.2-4 +- Rebuild (qt5) + +* Sun Mar 06 2022 Neal Gompa - 5.24.2-3 +- Backport sddm theme improvements to fix visual bugs (#2054016, #2058468) +- Correctly set distro logo for fedora breeze sddm theme + +* Mon Feb 28 2022 Neal Gompa - 5.24.2-2 +- Refresh default look-and-feel patch to fix for Plasma 5.24 + +* Tue Feb 22 2022 Rex Dieter - 5.24.2-1 +- 5.24.2 + +* Tue Feb 15 2022 Marc Deop - 5.24.1-1 +- 5.24.1 + +* Fri Feb 11 2022 Marc Deop - 5.24.0-2 +- Rebuild due to tarball re-spin + +* Thu Feb 03 2022 Marc Deop - 5.24.0-1 +- 5.24.0 +- Add sddm-wayland-plasma subpackage to ship Wayland greeter configuration + +* Wed Jan 19 2022 Rex Dieter - 5.23.90-2 +- rebase konsole-in-contextmenu.patch (#2026789) + +* Thu Jan 13 2022 Marc Deop - 5.23.90-1 +- 5.23.90 + +* Tue Jan 04 2022 Marc Deop - 5.23.5-1 +- 5.23.5 + +* Wed Dec 29 2021 Rex Dieter - 5.23.4-2 +- -wayland: Recommends: xdg-desktop-portal-kde + +* Tue Dec 14 2021 Marc Deop - 5.23.4-1 +- 5.23.4 + +* Wed Nov 10 2021 Rex Dieter - 5.23.3-1 +- 5.23.3 + +* Tue Oct 26 2021 Rex Dieter - 5.23.2-1 +- 5.23.2 + +* Sat Oct 23 2021 Marc Deop - 5.23.1-1 +- 5.23.1 + +* Fri Oct 08 2021 Marc Deop - 5.23.0-1 +- 5.23.0 +- Add BuildRequires: systemd-rpm-macros + +* Wed Sep 22 2021 Neal Gompa - 5.22.90-4 +- Fix setup of Fedora Breeze look and feel + +* Mon Sep 20 2021 Neal Gompa - 5.22.90-3 +- Drop forked Breeze Twilight theme in favor of in-tree one + +* Mon Sep 20 2021 Marc Deop - 5.22.90-2 +- Remove patch(180) already applied upstream +- Remove patch(181) already applied upstream +- Comment out patch(100) as it does not apply cleanly +- Adjust files sections + +* Fri Sep 17 2021 Marc Deop - 5.22.90-1 +- 5.22.90 + +* Sun Sep 12 2021 Alexey Kurov - 5.22.5-2 +- fix removable devices list in devicenotifier (#1975017) + +* Tue Aug 31 2021 Jan Grulich - 5.22.5-1 +- 5.22.5 + +* Wed Aug 11 2021 Björn Esser - 5.22.4-6 +- Rebuild (gpsd) + +* Sun Aug 08 2021 Mukundan Ragavan - 5.22.4-5 +- rebuild for libqalculate + +* Mon Aug 02 2021 Rex Dieter - 5.22.4-4 +- Requires: maliit-keyboard + +* Mon Aug 02 2021 Rex Dieter - 5.22.4-3 +- conditionalize systemdBoot support +- Requires: uresourced (when systemdBoot is enabled) + +* Fri Jul 30 2021 Rex Dieter - 5.22.4-2 +- pull in upstream fix to add dependency on kwallet-pam user service + +* Tue Jul 27 2021 Jan Grulich - 5.22.4-1 +- 5.22.4 + +* Tue Jul 27 2021 Fedora Release Engineering - 5.22.3-3 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Fri Jul 16 2021 Rex Dieter - 5.22.3-2 +- add (modularized) user service dependencies for ssh-agent, spice-vdagent +- drop BR: kf5-kdelibs4support + +* Mon Jul 12 2021 Jan Grulich - 5.22.3-1 +- 5.22.3 + +* Thu Jul 01 2021 Rex Dieter - 5.22.2.1-2 +- backport upstream fixes + +* Tue Jun 22 2021 Jan Grulich - 5.22.2.1-1 +- 5.22.2.1 + +* Tue Jun 22 2021 Jan Grulich - 5.22.2-1 +- 5.22.2 + +* Tue Jun 15 2021 Jan Grulich - 5.22.1-1 +- 5.22.1 + +* Sun Jun 06 2021 Jan Grulich - 5.22.0-1 +- 5.22.0 + +* Fri May 28 2021 Rex Dieter - 5.21.90-4 +- .konsole-in-contextmenu.patch rebased + +* Tue May 18 2021 Rex Dieter - 5.21.90-3 +- Requires: ksystemstats +- make other plasma-related runtime deps arch'd + +* Sun May 16 2021 Rex Dieter - 5.21.90-2 +- drop Requires: ksysguardd (#1960934) +- s/kf5-ksysguard/libksysguard/ + +* Fri May 14 2021 Rex Dieter - 5.21.90-1 +- 5.21.90 + +* Thu May 06 2021 Rex Dieter - 5.21.5-4 +- Reset systemd failed units on login (master/ branch backport) +- actually apply buffer types patch from -3 + +* Wed May 05 2021 Jan Grulich - 5.21.5-3 +- Announce which buffer types are available on thumbnails elements + +* Wed May 05 2021 Yaroslav Sidlovsky - 5.21.5-2 +- xsetroot added as required for plasma-workspace-x11 + +* Tue May 04 2021 Jan Grulich - 5.21.5-1 +- 5.21.5 + +* Fri Apr 30 2021 Rex Dieter - 5.21.4-2 +- startkde: make compat symlink unconditionally use startplasma-x11 +- startkde: drop compat symlink in future releases (f35+) + +* Tue Apr 06 2021 Jan Grulich - 5.21.4-1 +- 5.21.4 + +* Tue Mar 16 2021 Jan Grulich - 5.21.3-1 +- 5.21.3 + +* Tue Mar 02 2021 Jan Grulich - 5.21.2-1 +- 5.21.2 + +* Mon Mar 01 2021 Rex Dieter - 5.21.1-4 +- plasma-core.target: +Before=ssh-agent.service + +* Thu Feb 25 2021 Rex Dieter - 5.21.1-3 +- plasma-workspace@.target: Wants += ssh-agent.service (#1761817) + +* Wed Feb 24 2021 Rex Dieter - 5.21.1-2 +- .spec cosmetics + +* Tue Feb 23 2021 Jan Grulich - 5.21.1-1 +- 5.21.1 + +* Thu Feb 11 2021 Jan Grulich - 5.21.0-1 +- 5.21.0 + +* Fri Jan 29 2021 Rex Dieter - 5.20.90-9 +- pull in upstream fix for lockscreen detection (kde#432251) + +* Thu Jan 28 2021 Rex Dieter - 5.20.90-7 +- pull in upstream wayland session fix (kde#432189) + +* Wed Jan 27 2021 Fedora Release Engineering - 5.20.90-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Mon Jan 25 2021 Neal Gompa - 5.20.90-5 +- Switch over to systemd user sessions + +* Mon Jan 25 2021 Neal Gompa - 5.20.90-4 +- Fix setup for default wallpaper in Fedora Breeze Twilight theme + +* Sat Jan 23 2021 Neal Gompa - 5.20.90-3 +- Fix configuration of Fedora Breeze Twilight theme + +* Fri Jan 22 2021 Neal Gompa - 5.20.90-2 +- Switch to new Breeze Twilight-based theme (pagureio#fedora-kde/SIG#12) +- Adapt Wayland by default to new upstream settings + +* Thu Jan 21 2021 Jan Grulich - 5.20.90-1 +- 5.20.90 (beta) + +* Thu Jan 14 2021 Rex Dieter - 5.20.5-4 +- rebuild (gpsd) +- update URL + +* Thu Jan 14 2021 Rex Dieter - 5.20.5-3 +- pull in upstream fix for sanitized user environment (#1754395) + +* Thu Jan 14 10:43:00 CET 2021 Jan Grulich - 5.20.5-2 +- Rebuild (gpsd) + +* Tue Jan 5 16:03:33 CET 2021 Jan Grulich - 5.20.5-1 +- 5.20.5 + +* Tue Dec 22 2020 Rex Dieter - 5.20.4-2 +- runtime dep cleanup, mostly -dbus-x11, +dbus +dbus-tools + +* Tue Dec 1 09:43:00 CET 2020 Jan Grulich - 5.20.4-1 +- 5.20.4 + +* Wed Nov 25 08:17:45 CET 2020 Jan Grulich - 5.20.3-3 +- rebuild (qt5) + +* Sun Nov 15 15:23:57 CET 2020 Vitaly Zaitsev - 5.20.3-2 +- Backported patch with crash fix on logout (#1861700). + +* Wed Nov 11 08:22:42 CET 2020 Jan Grulich - 5.20.3-1 +- 5.20.3 + +* Tue Oct 27 14:24:55 CET 2020 Jan Grulich - 5.20.2-1 +- 5.20.2 + +* Tue Oct 20 15:30:42 CEST 2020 Jan Grulich - 5.20.1.1-1 +- 5.20.1 + +* Sun Oct 11 19:50:04 CEST 2020 Jan Grulich - 5.20.0-1 +- 5.20.0 + +* Sat Oct 03 2020 Neal Gompa - 5.19.90-2 +- Use Wayland by default for F34+ + https://fedoraproject.org/wiki/Changes/WaylandByDefaultForPlasma + +* Fri Sep 18 2020 Jan Grulich - 5.19.90-1 +- 5.19.90 + +* Thu Sep 17 2020 Neal Gompa - 5.19.5-2 +- Split out Xorg session and set up conditional for Wayland by default + +* Tue Sep 01 2020 Jan Grulich - 5.19.5-1 +- 5.19.5 + +* Tue Jul 28 2020 Adam Jackson - 5.19.4-2 +- Require iceuth xrgb xprop, not xorg-x11-{server-,}utils + +* Tue Jul 28 2020 Jan Grulich - 5.19.4-1 +- 5.19.4 + +* Tue Jul 07 2020 Jan Grulich - 5.19.3-1 +- 5.19.3 + +* Wed Jul 01 2020 Rex Dieter - 5.19.2-2 +- Recommends: plasma-pa, plasma-milou + +* Tue Jun 23 2020 Jan Grulich - 5.19.2-1 +- 5.19.2 + +* Thu Jun 18 2020 Björn Esser - 5.19.1-2 +- Rebuild (gpsd) + +* Wed Jun 17 2020 Martin Kyral - 5.19.1-1 +- 5.19.1 + +* Thu Jun 11 2020 Marie Loise Nolden - 5.19.0-2 +- drop qtwebkit build dependencies + +* Tue Jun 9 2020 Martin Kyral - 5.19.0-1 +- 5.19.0 + +* Fri May 15 2020 Martin Kyral - 5.18.90-1 +- 5.18.90 + +* Tue May 05 2020 Jan Grulich - 5.18.5-1 +- 5.18.5 + +* Thu Apr 09 2020 Rex Dieter - 5.18.4.1-2 +- update patch "Qt applications lose system theme if launched via dbus activation" (#1754395) + +* Sat Apr 04 2020 Rex Dieter - 5.18.4.1-1 +- 5.18.4.1 + +* Fri Apr 03 2020 Rex Dieter - 5.18.4-2 +- patch to workaround "Qt applications lose system theme if launched via dbus activation" (#1754395) + +* Tue Mar 31 2020 Jan Grulich - 5.18.4-1 +- 5.18.4 + +* Thu Mar 19 2020 Rex Dieter - 5.18.3-2 +- f31+ plasma-lookandfeel-fedora: default to 'Fedora' wallpaper (#1812293) + +* Tue Mar 10 2020 Jan Grulich - 5.18.3-1 +- 5.18.3 + +* Sun Mar 08 2020 Mukundan Ragavan - 5.18.2-2 +- rebuild for libqalculate + +* Tue Feb 25 2020 Jan Grulich - 5.18.2-1 +- 5.18.2 + +* Tue Feb 18 2020 Jan Grulich - 5.18.1-1 +- 5.18.1 + +* Tue Feb 11 2020 Jan Grulich - 5.18.0-1 +- 5.18.0 + +* Thu Jan 30 2020 Fedora Release Engineering - 5.17.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Jan 16 2020 Jan Grulich - 5.17.90-1 +- 5.17.90 + +* Wed Jan 08 2020 Jan Grulich - 5.17.5-1 +- 5.17.5 + +* Mon Dec 23 2019 Rex Dieter - 5.17.4-2 +- provide compat /usr/bin/startkde symlink (#1785826, #1785973) + +* Thu Dec 05 2019 Jan Grulich - 5.17.4-1 +- 5.17.4 + +* Fri Nov 29 2019 Mukundan Ragavan - 5.17.3-2 +- rebuild for libqalculate + +* Wed Nov 13 2019 Martin Kyral - 5.17.3-1 +- 5.17.3 + +* Wed Oct 30 2019 Jan Grulich - 5.17.2-1 +- 5.17.2 + +* Wed Oct 23 2019 Jan Grulich - 5.17.1-1 +- 5.17.1 + +* Thu Oct 10 2019 Jan Grulich - 5.17.0-1 +- 5.17.0 + +* Fri Sep 20 2019 Martin Kyral - 5.16.90-1 +- 5.16.90 + +* Fri Sep 06 2019 Martin Kyral - 5.16.5-1 +- 5.16.5 + +* Tue Aug 27 2019 Mukundan Ragavan - 5.16.4-2 +- rebuild for libqalculate + +* Tue Jul 30 2019 Martin Kyral - 5.16.4-1 +- 5.16.4 + +* Fri Jul 26 2019 Fedora Release Engineering - 5.16.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Wed Jul 10 2019 Martin Kyral - 5.16.3-1 +- 5.16.3 + +* Wed Jul 03 2019 Björn Esser - 5.16.2-2 +- Rebuild (gpsd) + +* Wed Jun 26 2019 Martin Kyral - 5.16.2-1 +- 5.16.2 + +* Tue Jun 18 2019 Rex Dieter - 5.16.1-1 +- 5.16.1 + +* Tue Jun 11 2019 Martin Kyral - 5.16.0-1 +- 5.16.0 + +* Sun May 19 2019 Rex Dieter - 5.15.90-3 +- de-bootstrap + +* Sun May 19 2019 Rex Dieter - 5.15.90-2 +- bootstrap build + +* Thu May 16 2019 Martin Kyral - 5.15.90-1 +- 5.15.90 + +* Thu May 09 2019 Martin Kyral - 5.15.5-1 +- 5.15.5 + +* Sun Apr 21 2019 Mukundan Ragavan - 5.15.4-2 +- rebuild for libqalculate + +* Wed Apr 03 2019 Rex Dieter - 5.15.4-1 +- 5.15.4 + +* Sat Mar 23 2019 Mukundan Ragavan - 5.15.3-2 +- rebuild for libqalculate + +* Tue Mar 12 2019 Rex Dieter - 5.15.3-1 +- 5.15.3 + +* Thu Feb 28 2019 Pete Walter - 5.15.2-2 +- Update wayland deps + +* Tue Feb 26 2019 Rex Dieter - 5.15.2-1 +- 5.15.2 + +* Tue Feb 19 2019 Rex Dieter - 5.15.1-1 +- 5.15.1 + +* Wed Feb 13 2019 Martin Kyral - 5.15.0-1 +- 5.15.0 + +* Tue Feb 05 2019 Martin Kyral - 5.14.90-5 +- fix startkde.patch + +* Sat Feb 02 2019 Fedora Release Engineering - 5.14.90-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Wed Jan 23 2019 Rex Dieter - 5.14.90-3 +- de-bootstrap + +* Sun Jan 20 2019 Martin Kyral - 5.14.90-1 +- 5.14.90 +- enable boostrap + +* Tue Nov 27 2018 Rex Dieter - 5.14.4-1 +- 5.14.4 + +* Thu Nov 08 2018 Martin Kyral - 5.14.3-1 +- 5.14.3 + +* Wed Oct 24 2018 Rex Dieter - 5.14.2-2 +- move systemmonitor.desktop to main, bump kf5 dep + +* Wed Oct 24 2018 Rex Dieter - 5.14.2-1 +- 5.14.2 + +* Tue Oct 16 2018 Rex Dieter - 5.14.1-1 +- 5.14.1 + +* Thu Oct 11 2018 Rex Dieter - 5.14.0-3 +- rebuild (gpsd) + +* Wed Oct 10 2018 Rex Dieter - 5.14.0-2 +- Fix build with gpsd 3.18 (#1638110) + +* Sat Oct 06 2018 Rex Dieter - 5.14.0-1 +- 5.14.0 + +* Tue Oct 02 2018 Rex Dieter - 5.13.90-2 +- Provides: desktop-notification-daemon (#1628758) + +* Fri Sep 14 2018 Martin Kyral - 5.13.90-1 +- 5.13.90 + +* Tue Sep 04 2018 Rex Dieter - 5.13.5-1 +- 5.13.5 + +* Tue Aug 21 2018 Mukundan Ragavan - 5.13.4-2 +- rebuild for libqalculate.so.19() + +* Thu Aug 02 2018 Rex Dieter - 5.13.4-1 +- 5.13.4 + +* Wed Jul 18 2018 Rex Dieter - 5.13.3-4 +- avoid versioned runtime powerdevil dep when bootstrapping + +* Fri Jul 13 2018 Fedora Release Engineering - 5.13.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Jul 11 2018 Martin Kyral - 5.13.3-1 +- 5.13.3 + +* Mon Jul 09 2018 Martin Kyral - 5.13.2-1 +- 5.13.2 + +* Fri Jun 22 2018 Mukundan Ragavan - 5.13.1-2 +- rebuild for libqalculate.so.18() + +* Tue Jun 19 2018 Martin Kyral - 5.13.1-1 +- 5.13.1 + +* Tue Jun 12 2018 Martin Kyral - 5.13.0-1 +- 5.13.0 + +* Fri May 18 2018 Martin Kyral - 5.12.90-1 +- 5.12.90 + +* Fri May 18 2018 Mukundan Ragavan - 5.12.5-4 +- rebuild for libqalculate.so.17() + +* Wed May 09 2018 Rex Dieter - 5.12.5-3 +- sddm-breeze: Recommends: qt5-qtvirtualkeyboard + +* Sun May 06 2018 Rex Dieter - 5.12.5-2 +- refresh startkde.patch +- .spec cleanup + +* Tue May 01 2018 Rex Dieter - 5.12.5-1 +- 5.12.5 + +* Wed Apr 11 2018 Mukundan Ragavan - 5.12.4-2 +- rebuild for libqalculate.so.16() + +* Fri Mar 30 2018 Rex Dieter - 5.12.4-1 +- 5.12.4 + +* Sat Mar 10 2018 Mukundan Ragavan - 5.12.3-2 +- rebuild for libqalculate.so.14() + +* Tue Mar 06 2018 Rex Dieter - 5.12.3-1 +- 5.13.3 +- plasmawayland session: drop explcitly running dbus_launch +- use %%make_build %%ldconfig_scriptlets + +* Wed Feb 21 2018 Jan Grulich - 5.12.2-1 +- 5.12.2 + +* Tue Feb 13 2018 Jan Grulich - 5.12.1-1 +- 5.12.1 + +* Fri Feb 09 2018 Fedora Release Engineering - 5.12.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Mon Feb 05 2018 Rex Dieter - 5.12.0-2 +- respin + +* Fri Feb 02 2018 Jan Grulich - 5.12.0-1 +- 5.12.0 + +* Mon Jan 15 2018 Jan Grulich - 5.11.95-1 +- 5.11.95 + +* Mon Jan 15 2018 Rex Dieter - 5.11.4-4 +- use upstreamed version of previous commit/patch + +* Mon Jan 15 2018 Rex Dieter - 5.11.4-3 +- include candidate crash fix for xembedsniproxy (#1497829,kde#359664) + +* Tue Dec 19 2017 Rex Dieter - 5.11.4-2 +- refresh/fix startkde.patch + +* Thu Nov 30 2017 Martin Kyral - 5.11.4-1 +- 5.11.4 + +* Tue Nov 21 2017 Rex Dieter - 5.11.3-2 +- .spec cruft, BR: kf5-prison, bump min qt5/kf5 deps + +* Wed Nov 08 2017 Rex Dieter - 5.11.3-1 +- 5.11.3 + +* Wed Oct 25 2017 Martin Kyral - 5.11.2-1 +- 5.11.2 + +* Tue Oct 17 2017 Rex Dieter - 5.11.1-1 +- 5.11.1 + +* Wed Oct 11 2017 Martin Kyral - 5.11.0-1 +- 5.11.0 + +* Mon Oct 02 2017 Rex Dieter - 5.10.5-5 +- Requires: ksysguardd (#1497831) + +* Wed Sep 20 2017 Rex Dieter - 5.10.5-4 +- rebuild (libqalculate) + +* Tue Aug 29 2017 Rex Dieter - 5.10.5-3 +- Restore: Requires: plasma-lookandfeel-fedora + +* Thu Aug 24 2017 Rex Dieter - 5.10.5-2 +- drop old stuff +- RPM Bundling Fedora look and feel themes (#1356890) +- BR: cmake(AppstreamQt) + +* Thu Aug 24 2017 Rex Dieter - 5.10.5-1 +- 5.10.5 + +* Thu Aug 03 2017 Fedora Release Engineering - 5.10.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 5.10.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Thu Jul 20 2017 Rex Dieter - 5.10.4-1 +- 5.10.4 + +* Tue Jun 27 2017 Rex Dieter - 5.10.3-1 +- 5.10.3 + +* Thu Jun 15 2017 Rex Dieter - 5.10.2-1 +- 5.10.2 + +* Tue Jun 06 2017 Rex Dieter - 5.10.1-1 +- 5.10.1 + +* Wed May 31 2017 Jan Grulich - 5.10.0-2 +- Disable bootstrap + +* Wed May 31 2017 Jan Grulich - 5.10.0-1 +- 5.10.0 + +* Mon May 15 2017 Fedora Release Engineering - 5.9.5.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild + +* Fri Apr 28 2017 Rex Dieter - 5.9.5.1-1 +- 5.9.5.1 + +* Thu Apr 27 2017 Rex Dieter - 5.9.5-3 +- pull in upstream 5.9 branch fixes + +* Wed Apr 26 2017 Rex Dieter - 5.9.5-2 +- -doc: use %%find_lang --with-html + +* Wed Apr 26 2017 Rex Dieter - 5.9.5-1 +- 5.9.5 + +* Thu Mar 23 2017 Rex Dieter - 5.9.4-1 +- 5.9.4 + +* Sat Mar 04 2017 Rex Dieter - 5.9.3-3 +- rebuild + +* Fri Mar 03 2017 Rex Dieter - 5.9.3-2 +- fix sddm-breeze (01-breeze-fedora theme) +- bump kf5 dep + +* Wed Mar 01 2017 Jan Grulich - 5.9.3-1 +- 5.9.3 + +* Sat Feb 25 2017 Rex Dieter - 5.8.6-3 +- Requires: kf5-plasma >= %%_kf5_version + +* Thu Feb 23 2017 Rex Dieter - 5.8.6-2 +- avoid fedora theme crasher (kde#376847) + +* Tue Feb 21 2017 Rex Dieter - 5.8.6-1 +- 5.8.6 + +* Sat Feb 11 2017 Fedora Release Engineering - 5.8.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Sat Jan 28 2017 Mukundan Ragavan - 5.8.5-5 +- rebuild for libqalculate.so.6 + +* Mon Jan 23 2017 Rex Dieter - 5.8.5-4 +- Obsoletes: kde-runtime-drkonqi (#1415360) + +* Thu Jan 19 2017 Rex Dieter - 5.8.5-3 +- pull in 5.8 branch fixes + +* Mon Jan 02 2017 Rex Dieter - 5.8.5-2 +- filter qml/plugin provides + +* Wed Dec 28 2016 Rex Dieter - 5.8.5-1 +- 5.8.5 + +* Wed Dec 14 2016 Rex Dieter - 5.8.4-2 +- rebuild (libqalculate) + +* Tue Nov 22 2016 Rex Dieter - 5.8.4-1 +- 5.8.4 + +* Tue Nov 01 2016 Rex Dieter - 5.8.3-1 +- 5.8.3 + +* Sun Oct 23 2016 Rex Dieter - 5.8.2-4 +- sddm-breeze: Requires: qt5-qtquickcontrols instead (kde#371493) + +* Sat Oct 22 2016 Rex Dieter - 5.8.2-3 +- sddm-breeze: Requires: qt5-qtgraphicaleffects (kde#371493) + +* Fri Oct 21 2016 Rex Dieter - 5.8.2-2 +- backport candidate systray-icon cpu fix from master (kde#356479) + +* Tue Oct 18 2016 Rex Dieter - 5.8.2-1 +- 5.8.2 + +* Tue Oct 11 2016 Rex Dieter - 5.8.1-1 +- 5.8.1 + +* Mon Oct 10 2016 Rex Dieter - 5.8.0-5 +- f24-kde-theme/plasma-lookandfeel-fedora noarch +- continue to produce f24-kde-theme on f25+ builds + +* Sat Oct 08 2016 Rex Dieter - 5.8.0-4 +- plasma-lookandfeel-fedora (f25+) + +* Fri Oct 07 2016 Rex Dieter - 5.8.0-3 +- sddm-breeze: make 01-breeze-fedora theme use backgrounds/default.png + +* Fri Oct 07 2016 Rex Dieter - 5.8.0-2 +- pull in upstream branch fixes +- re-order patches so upstream applied first, then downstream + +* Thu Sep 29 2016 Rex Dieter - 5.8.0-1 +- 5.8.0 + +* Fri Sep 23 2016 Rex Dieter - 5.7.95-2 +- -libs: Provides: plasma-packagestructure + +* Thu Sep 22 2016 Rex Dieter - 5.7.95-1 +- 5.7.95 + +* Fri Sep 16 2016 Rex Dieter - 5.7.5-2 +- restore fedora.twenty.two theme support (#1376102) + +* Tue Sep 13 2016 Rex Dieter - 5.7.5-1 +- 5.7.5 + +* Fri Sep 09 2016 Rex Dieter - 5.7.4-2 +- drop support for f22 (plasma theme) + +* Tue Aug 23 2016 Rex Dieter - 5.7.4-1 +- 5.7.4 + +* Tue Aug 02 2016 Rex Dieter - 5.7.3-2 +- adapt to upstream looknfeel/default-layout changes +- BR: iso-codes (technically only runtime dep, but can't hurt) + +* Tue Aug 02 2016 Rex Dieter - 5.7.3-1 +- 5.7.3 + +* Sat Jul 30 2016 Rex Dieter - 5.7.2-3 +- klipper autostart: OnlyShowIn=KDE (#1361765,kde#366277) + +* Mon Jul 25 2016 Rex Dieter - 5.7.2-2 +- -drkonqi: -Requires: kdialog +- remove BR: qt5-qtbase-private-devel until we can properly document why it is needed + +* Tue Jul 19 2016 Rex Dieter - 5.7.2-1 +- 5.7.2 + +* Tue Jul 19 2016 Rex Dieter - 5.7.1-3 +- BR: qt5-qtbase-private-devel + +* Thu Jul 14 2016 Rex Dieter - 5.7.1-2 +- BR: kf5-kholidays-devel +- revert recent upstream systray icon resize (kde#365570) + +* Tue Jul 12 2016 Rex Dieter - 5.7.1-1 +- 5.7.1 + +* Thu Jun 30 2016 Rex Dieter - 5.7.0-1 +- 5.7.0 + +* Mon Jun 27 2016 Rex Dieter - 5.6.95-3 +- kwaylad-integration is part of plasma, not kf5 + +* Sun Jun 26 2016 Rex Dieter - 5.6.95-2 +- bump Qt5 dep + +* Sat Jun 25 2016 Rex Dieter - 5.6.95-1 +- 5.6.95 + +* Fri Jun 24 2016 Rex Dieter - 5.6.5-2 +- Suggests: imsettings-qt (#1349743) + +* Tue Jun 14 2016 Rex Dieter - 5.6.5-1 +- 5.6.5 + +* Sun Jun 05 2016 Rex Dieter - 5.6.4-3 +- -drkonqi: support 'dnf debuginfo-install' (f24+) +- -drkonqi: Requires: kdialog konsole5 dnf-command(debuginfo-install) (f24+) + +* Thu May 26 2016 Rex Dieter - 5.6.4-2 +- backport 5.6 branch fixes + +* Sat May 14 2016 Rex Dieter - 5.6.4-1 +- 5.6.4 + +* Thu May 12 2016 Rex Dieter - 5.6.3-5 +- /etc/pam.d/kde is executable (#1335500) + +* Sun May 01 2016 Rex Dieter - 5.6.3-4 +- -libs: omit geolocation plugins + +* Sat Apr 30 2016 Rex Dieter - 5.6.3-3 +- own phonon_platform plugin dir +- -libs: move multilib'able plugins here + +* Wed Apr 27 2016 Rex Dieter - 5.6.3-2 +- Some processes (kuiserver) are left running after exiting KDE (#348123) + +* Tue Apr 19 2016 Rex Dieter - 5.6.3-1 +- 5.6.3 + +* Sat Apr 09 2016 Rex Dieter - 5.6.2-1 +- 5.6.2 + +* Fri Apr 08 2016 Rex Dieter - 5.6.1-2 +- de-bootstrap + +* Fri Apr 08 2016 Rex Dieter - 5.6.1-1 +- Plasma-5.6.1 (bootstrap) + +* Wed Mar 30 2016 Rex Dieter - 5.5.5-10 +- f24-kde-theme-core: fix conflict with f24-kde-theme +- f24-kde-theme-core: add dep to/from plasma-workspace +- -wayland: s/plasma-workspace/%%name/ + +* Wed Mar 30 2016 Rex Dieter - 5.5.5-9 +- enable f24-kde-theme default looknfeel (f24+) + +* Mon Mar 28 2016 Rex Dieter - 5.5.5-8 +- f24-kde-theme-core subpkg (readying for f24-kde-theme) + +* Mon Mar 21 2016 Rex Dieter - 5.5.5-7 +- Provides: f23-kde-theme-core + +* Mon Mar 21 2016 Rex Dieter - 5.5.5-6 +- generic theming for f24+ + +* Mon Mar 21 2016 Rex Dieter - 5.5.5-5 +- drop Requires: sddm-breeze for f23+ (workaround for bug #1261034) + +* Fri Mar 11 2016 Rex Dieter 5.5.5-4 +- f23+: -Requires: sni-qt kde-platform-plugin (use rich/soft deps elsewhere) + +* Mon Mar 07 2016 Rex Dieter 5.5.5-3 +- backport "Avoid blocking DBus calls in SNI startup" (kde#359611) + +* Thu Mar 03 2016 Daniel Vrátil - 5.5.5-2 +- Upstream respun tarball + +* Wed Mar 02 2016 Daniel Vrátil - 5.5.5-1 +- Plasma 5.5.5 + +* Mon Feb 29 2016 Rex Dieter 5.5.4-6 +- Requires: iso-codes (digitalclock applet) + +* Mon Feb 29 2016 Rex Dieter 5.5.4-5 +- pull in some 5.5 branch fixes + +* Mon Feb 22 2016 Rex Dieter 5.5.4-4 +- -wayland: Requires: xorg-x11-server-Xwayland + +* Tue Feb 09 2016 Rex Dieter 5.5.4-3 +- backport xembedsniproxy fixes + +* Thu Feb 04 2016 Rex Dieter 5.5.4-2 +- backport systray applets not shown workaround (kde#352055) + +* Wed Jan 27 2016 Daniel Vrátil - 5.5.4-1 +- Plasma 5.5.4 + +* Mon Jan 25 2016 Rex Dieter 5.5.3-6 +- pull in upstream fixes (notifications/xembedsniproxy) + +* Mon Jan 11 2016 Rex Dieter 5.5.3-5 +- -wayland: Requires: qt5-qtools (for qdbus-qt5) + +* Mon Jan 11 2016 Rex Dieter - 5.5.3-4 +- startplasmacompositor.patch (#1297418) +- disable bootstrap + +* Sun Jan 10 2016 Rex Dieter 5.5.3-3 +- drop hacked klipper/prison support (until we have kf5-prison available properly) + +* Sat Jan 09 2016 Rex Dieter 5.5.3-2 +- pull in upstream fixes (notifications,xembedsniproxy) + +* Thu Jan 07 2016 Daniel Vrátil - 5.5.3-1 +- Plasma 5.5.3 + +* Thu Dec 31 2015 Rex Dieter - 5.5.2-2 +- use %%majmin_ver_kf5 for most plasma-related deps +- tighten plugin deps using %%_isa +- update URL + +* Thu Dec 31 2015 Rex Dieter - 5.5.2-1 +- 5.5.2 + +* Fri Dec 18 2015 Daniel Vrátil - 5.5.1-1 +- Plasma 5.5.1 + +* Tue Dec 15 2015 Than Ngo - 5.5.0-5 +- enable bootstrap for secondary arch + +* Mon Dec 14 2015 Daniel Vrátil - 5.5.0-4 +- proper upstream fix for #356415 (review #126331) + +* Sun Dec 13 2015 Rex Dieter - 5.5.0-3 +- latest upstream fixes (#1291100) +- revert commit causing regression'ish kde #356415 +- drop kwayland-integration from main pkg (only in -wayland subpkg) + +* Sat Dec 05 2015 Daniel Vrátil - 5.5.0-2 +- remove version dependency on oxygen-fonts, because it's not being released anymore + +* Thu Dec 03 2015 Daniel Vrátil - 5.5.0-1 +- Plasma 5.5.0 + +* Wed Nov 25 2015 Daniel Vrátil - 5.4.95-1 +- Plasma 5.4.95 + +* Tue Nov 17 2015 Rex Dieter 5.4.3-4 +- Unhelpful summary/description for drkonqi packages (#1282810) + +* Mon Nov 16 2015 Jan Grulich - 5.4.3-3 +- Fix changing of visibility for system tray entries + Resolves: kdebz#355404 + +* Wed Nov 11 2015 Rex Dieter 5.4.3-2 +- refresh xembedsniproxy support (#1280457) + +* Thu Nov 05 2015 Daniel Vrátil - 5.4.3-1 +- Plasma 5.4.3 + +* Tue Nov 03 2015 Rex Dieter - 5.4.2-8 +- make klipper/prison support f24+ only (for now) +- backport xembed-sni-proxy + +* Tue Oct 20 2015 Rex Dieter 5.4.2-7 +- klipper: prison (qrcode) support + +* Wed Oct 14 2015 Rex Dieter 5.4.2-6 +- rev startkde.patch drop dbus launch (kde#352251) + +* Mon Oct 12 2015 Rex Dieter 5.4.2-5 +- Obsoletes: kde-runtime-kuiserver (#1249157), Provides: kuiserver + +* Mon Oct 05 2015 Rex Dieter 5.4.2-4 +- startkde: don't try to source things in a subshell, don't munge XDG_DATA_DIRS needlessly + +* Sun Oct 04 2015 Rex Dieter 5.4.2-3 +- consistently use %%{majmin_ver_kf5} macro for other plasma5-related deps + +* Sat Oct 03 2015 Rex Dieter - 5.4.2-2 +- .spec cosmetics, use %%license +- -common, -drkonqi, -libs, libkworkspace5 subpkgs +- -geolocation subpkg (#1222097) +- -drkonqi: include installdbgsymbols.sh + +* Thu Oct 01 2015 Rex Dieter - 5.4.2-1 +- 5.4.2 + +* Thu Oct 01 2015 Rex Dieter 5.4.1-6 +- try tightened plasmashell dep (loosened in plasma-desktop) + +* Fri Sep 25 2015 Rex Dieter 5.4.1-5 +- relax kf5-kxmlrpcclient dep (and drop related hacks), tighten khotkeys + +* Tue Sep 15 2015 Rex Dieter 5.4.1-4 +- Requires: sddm-breeze unconditionally (#1260394) + +* Sat Sep 12 2015 Rex Dieter 5.4.1-3 +- tighten build deps + +* Sat Sep 12 2015 Rex Dieter 5.4.1-2 +- Requires: sddm-breeze, (hopefully) temporary workaround for dnf Obsoletes bug (#1260394, f22) + +* Fri Sep 11 2015 Rex Dieter 5.4.1-1 +- de-bootstrap + +* Wed Sep 09 2015 Rex Dieter - 5.4.1-0.1 +- 5.4.1, enable bootstrap + +* Fri Sep 04 2015 Rex Dieter 5.4.0-7 +- Conflicts: kio-extras < 5.4.0 + +* Wed Sep 02 2015 Rex Dieter 5.4.0-6.1 +- make plasma-pa f23+ only + +* Tue Sep 01 2015 Daniel Vrátil - 5.4.0-6 +- Try rebuilding against new baloo + +* Wed Aug 26 2015 Rex Dieter 5.4.0-5 +- versioned kf5-related build deps + +* Tue Aug 25 2015 Daniel Vrátil - 5.4.0-4 +- Disable bootstrap + +* Tue Aug 25 2015 Daniel Vrátil - 5.4.0-3 +- Re-enable plasma-pa and kwayland-integration dependencies + +* Sat Aug 22 2015 Daniel Vrátil - 5.4.0-2 +- Temporarily disable plasma-pa and kwayland-integration until the packages are reviewed + +* Fri Aug 21 2015 Daniel Vrátil - 5.4.0-1 +- Plasma 5.4.0 + +* Thu Aug 20 2015 Daniel Vrátil - 5.3.95-4 +- use patch for startkde.cmake, remove redundant prison dependency + +* Thu Aug 13 2015 Daniel Vrátil - 5.3.95-1 +- Plasma 5.3.95 + +* Tue Aug 11 2015 Rex Dieter - 5.3.2-11 +- Provides: f23-kde-theme-core (and f22-kde-theme-core) +- default_lookandfeel org.fedoraproject.fedora.twenty.three (f23+) + +* Thu Aug 06 2015 Rex Dieter 5.3.2-10 +- prep fedora.twenty.three plasma theme + +* Thu Aug 06 2015 Rex Dieter 5.3.2-9 +- make sddm-breeze noarch (#1250204) + +* Thu Aug 06 2015 Rex Dieter 5.3.2-8 +- sddm-breeze subpkg, userlist variant for bz #1250204 + +* Wed Aug 05 2015 Jonathan Wakely 5.3.2-7 +- Rebuilt for Boost 1.58 + +* Fri Jul 31 2015 Rex Dieter 5.3.2-6 +- Requires: kde-platform-plugin + +* Wed Jul 29 2015 Fedora Release Engineering - 5.3.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159 + +* Wed Jul 22 2015 David Tardon - 5.3.2-4 +- rebuild for Boost 1.58 + +* Thu Jul 09 2015 Rex Dieter - 5.3.2-3 +- .spec cosmetics +- port selinux/drkonqi scriptlet (from kde-runtime) +- own /usr/share/drkonqi/ +- %%config(noreplace) pam + +* Fri Jun 26 2015 Daniel Vrátil - 5.3.2-2 +- Make the Requires: plasmashell unversioned to break circular dependency during update + +* Thu Jun 25 2015 Daniel Vrátil - 5.3.2-1 +- Plasma 5.3.2 + +* Sat Jun 20 2015 Rex Dieter 5.3.1-5 +- shutdown scripts are not executed (#1234059) + +* Thu Jun 18 2015 Rex Dieter 5.3.1-4 +- startkde.cmake: sync ScaleFactor changes, drop QT_PLUGIN_PATH munging (#1233298) + +* Thu Jun 18 2015 Fedora Release Engineering - 5.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Tue Jun 02 2015 Rex Dieter - 5.3.1-2 +- use %%{?kf5_kinit_requires} +- Requires: kf5-kactivities +- doc: make noarch, %%lang'ify + +* Tue May 26 2015 Daniel Vrátil - 5.3.1-1 +- Plasma 5.3.1 + +* Wed May 20 2015 Jan Grulich - 5.3.0-8 +- apply the new patch for update scripts execution + +* Wed May 20 2015 Jan Grulich - 5.3.0-7 +- process update scripts after first initialization + +* Tue May 19 2015 Jan Grulich - 5.3.0-6 +- copy Breeze look-and-feel package also as Fedora Twenty Two look-and-feel package + +* Mon May 18 2015 Jan Grulich - 5.3.0-5 +- set default look and feel theme to Fedora Twenty Two + +* Tue May 05 2015 Daniel Vrátil - 5.3.0-4 +- backport patch form kde-workspace to add Konsole into shell context menu +- re-enable fix-update-scripts.patch + +* Wed Apr 29 2015 Daniel Vrátil - 5.3.0-3 +- Disable bootstrap + +* Wed Apr 29 2015 Daniel Vrátil - 5.3.0-2 +- Requires plasmashell (virtual provides for packages that provide Plasma shells, like plasma-desktop) + +* Mon Apr 27 2015 Daniel Vrátil - 5.3.0-1 +- Plasma 5.3.0 + +* Wed Apr 22 2015 Daniel Vrátil - 5.2.95-1 +- Plasma 5.2.95 + +* Wed Apr 15 2015 Rex Dieter 5.2.2-6 +- Requires: kde-settings-plasma (#1197709) + +* Sat Apr 04 2015 Rex Dieter 5.2.2-5 +- conflicts with kf5-kxmlrpcclient (#1208947) + +* Tue Mar 31 2015 Rex Dieter 5.2.2-4 +- Requires: khotkeys (#1207079) + +* Mon Mar 30 2015 Rex Dieter 5.2.2-3 +- backport fix for update scripts + +* Wed Mar 25 2015 Rex Dieter 5.2.2-2 +- Lockscreen: Password field does not have focus (kde#344823) + +* Fri Mar 20 2015 Daniel Vrátil - 5.2.2-1 +- Plasma 5.2.2 + +* Mon Mar 16 2015 Rex Dieter - 5.2.1-6 +- revert Requires: plasma-desktop (dep should be the other way around) +- drop Obsoletes: kde-workspace (leave for plasma-desktop) +- Requires: polkit-kde + +* Sun Mar 15 2015 Rex Dieter 5.2.1-5 +- Requires: -sddm (#1201034), +plasma-desktop + +* Fri Mar 06 2015 Rex Dieter 5.2.1-4 +- rebuild (gpsd) + +* Tue Mar 03 2015 Rex Dieter 5.2.1-3 +- use our own startkde.cmake + +* Fri Feb 27 2015 Daniel Vrátil - 5.2.1-2 +- Rebuild (GCC 5) + +* Tue Feb 24 2015 Daniel Vrátil - 5.2.1-1 +- Plasma 5.2.1 + +* Wed Feb 18 2015 Rex Dieter - 5.2.0-8 +- (Build)Requires: kf5-kglobalaccel(-devel) >= 5.7 +- drop ksyncdbusenv.patch workaround +- .spec cosmetics + +* Wed Feb 11 2015 Rex Dieter 5.2.0-7 +- "Could not sync environment to dbus." (startkde) (#1191171) + +* Mon Feb 09 2015 Daniel Vrátil - 5.2.0-6 +- Revert the previous change + +* Mon Feb 09 2015 Daniel Vrátil - 5.2.0-5 +- Provides/Obsoletes: kdeclassic-cursor-theme + +* Sun Feb 08 2015 Daniel Vrátil - 5.2.0-4 +- Requires: powerdevil, oxygen-sound-theme + +* Thu Jan 29 2015 Daniel Vrátil - 5.2.0-3 +- Requires: plasma-milou (for krunner) + +* Thu Jan 29 2015 Dan Horák - 5.2.0-2 +- no FireWire on s390(x) + +* Mon Jan 26 2015 Daniel Vrátil - 5.2.0-1 +- Plasma 5.2.0 + +* Wed Jan 14 2015 Daniel Vrátil - 5.1.95-3.beta +- Requires: kf5-frameworkintegration (provides platformtheme plugin) + +* Wed Jan 14 2015 Daniel Vrátil - 5.1.95-2.beta +- BR: kf5-kscreen-devel (renamed) + +* Tue Jan 13 2015 Daniel Vrátil - 5.1.95-1.beta +- Plasma 5.1.95 Beta + +* Mon Jan 12 2015 Daniel Vrátil - 5.1.2-5 +- Add upstream patch to make ksyncdbusenv work with dbus-1.8.14 + +* Fri Jan 09 2015 Daniel Vrátil - 5.1.2-4 +- Requires: qt5-qttools (for dbus-qt5) + +* Wed Jan 07 2015 Jan Grulich - 5.1.2-3 +- Omit "5" from pkg summary + Drop config macro for files installed to /etc/xdg + Move /usr/share/dbus-1/interfaces/*.xml stuff to main package + Validate .desktop files + look for qdbus-qt5 in startkde instead of qdbus + +* Mon Jan 05 2015 Daniel Vrátil - 5.1.2-2 +- add upstream patch to fix black screen on start + +* Wed Dec 17 2014 Daniel Vrátil - 5.1.2-1 +- Plasma 5.1.2 + +* Fri Nov 28 2014 Daniel Vrátil - 5.1.1-2 +- Apply upstream patch to build against new version of KScreen + +* Fri Nov 07 2014 Daniel Vrátil - 5.1.1-1 +- Plasma 5.1.1 + +* Tue Oct 14 2014 Daniel Vrátil - 5.1.0.1-1 +- Plasma 5.1.0.1 + +* Thu Oct 09 2014 Daniel Vrátil - 5.1.0-1 +- Plasma 5.1.0 + +* Tue Sep 16 2014 Daniel Vrátil - 5.0.2-1 +- Plasma 5.0.2 + +* Tue Sep 02 2014 Daniel Vrátil - 5.0.1-3 +- Make sure we get oxygen-icon-theme and oxyge-icons installed + +* Fri Aug 29 2014 Daniel Vrátil - 5.0.1-2 +- Add upstream patch to fix generated path in plasma.desktop + +* Sun Aug 10 2014 Daniel Vrátil - 5.0.1-1 +- Plasma 5.0.1 + +* Wed Aug 06 2014 Daniel Vrátil - 5.0.0-7 +- Add more Obsoletes to make upgrade from KDE 4 smooth +- Add sni-qt to Requires so that Qt 4 apps are working with Plasma 5 systray +- Requires kde-settings + +* Thu Jul 24 2014 Daniel Vrátil - 5.0.0-4 +- Add patch to fix build-time generated paths + +* Thu Jul 24 2014 Daniel Vrátil - 5.0.0-3 +- Use relative BIN_INSTALL_DIR so that built-in paths are correctly generated + +* Thu Jul 24 2014 Daniel Vrátil - 5.0.0-2 +- Fix /usr//usr/ in generated files + +* Wed Jul 16 2014 Daniel Vrátil - 5.0.0-1 +- Plasma 5.0.0 + +* Tue May 20 2014 Daniel Vrátil - 4.96.0-6.20140519gita85f5bc +- Add LIBEXEC_PATH to kde5 profile to fix drkonqi lookup +- Fix install + +* Mon May 19 2014 Daniel Vrátil - 4.96.0-3.20140519gita85f5bc +- Update to latest git snapshot +- Add PAM file +- Add profile.d entry + +* Fri Apr 25 2014 Daniel Vrátil - 4.95.0-1.20140425git7c97c92 +- Initial version of kde5-plasma-workspace diff --git a/sonic-workspace/spice-vdagent.conf b/sonic-workspace/spice-vdagent.conf new file mode 100644 index 0000000..16c2c22 --- /dev/null +++ b/sonic-workspace/spice-vdagent.conf @@ -0,0 +1,2 @@ +[Unit] +Wants=spice-vdagent.service diff --git a/sonic-workspace/ssh-agent.conf b/sonic-workspace/ssh-agent.conf new file mode 100644 index 0000000..f6a174f --- /dev/null +++ b/sonic-workspace/ssh-agent.conf @@ -0,0 +1,3 @@ +[Unit] +Before=ssh-agent.service +Wants=ssh-agent.service diff --git a/sonic-workspace/startkderc b/sonic-workspace/startkderc new file mode 100644 index 0000000..703ab70 --- /dev/null +++ b/sonic-workspace/startkderc @@ -0,0 +1,2 @@ +[General] +systemdBoot=true diff --git a/sonic-workspace/tree.txt b/sonic-workspace/tree.txt new file mode 100644 index 0000000..1afc7ac --- /dev/null +++ b/sonic-workspace/tree.txt @@ -0,0 +1,6842 @@ +/home/xlibre/rpmbuild/BUILDROOT/sonic-workspace-6.6.4-1.el10.x86_64 +├── etc +│   └── xdg +│   ├── autostart +│   │   ├── gmenudbusmenuproxy.desktop +│   │   ├── org.kde.plasma-fallback-session-restore.desktop +│   │   ├── org.kde.plasmashell.desktop +│   │   └── xembedsniproxy.desktop +│   ├── menus +│   │   └── plasma-applications.menu +│   └── plasmanotifyrc +└── usr + ├── bin + │   ├── gmenudbusmenuproxy + │   ├── kcminit + │   ├── kcminit_startup -> kcminit + │   ├── kcolorschemeeditor + │   ├── kde-systemd-start-condition + │   ├── kfontinst + │   ├── kfontview + │   ├── krunner + │   ├── ksmserver + │   ├── ksplashqml + │   ├── lookandfeeltool -> /usr/bin/plasma-apply-lookandfeel + │   ├── plasma-apply-colorscheme + │   ├── plasma-apply-cursortheme + │   ├── plasma-apply-desktoptheme + │   ├── plasma-apply-lookandfeel + │   ├── plasma-apply-wallpaperimage + │   ├── plasma-interactiveconsole + │   ├── plasma_session + │   ├── plasmashell + │   ├── plasma-shutdown + │   ├── plasma_waitforname + │   ├── plasmawindowed + │   ├── startplasma-x11 + │   └── xembedsniproxy + ├── include + │   ├── klookandfeel + │   │   ├── klookandfeel_export.h + │   │   ├── klookandfeel.h + │   │   ├── klookandfeelmanager.h + │   │   └── klookandfeelmanifest.h + │   ├── krdb + │   │   ├── krdb_export.h + │   │   └── krdb.h + │   ├── kworkspace6 + │   │   ├── autostartscriptdesktopfile.h + │   │   ├── config-libkworkspace.h + │   │   ├── kdisplaymanager.h + │   │   ├── kworkspace_export.h + │   │   ├── kworkspace.h + │   │   ├── outputorderwatcher.h + │   │   └── sessionmanagement.h + │   ├── notificationmanager + │   │   ├── badgesettings.h + │   │   ├── behaviorsettings.h + │   │   ├── donotdisturbsettings.h + │   │   ├── job.h + │   │   ├── jobsettings.h + │   │   ├── jobsmodel.h + │   │   ├── notification.h + │   │   ├── notificationmanager_export.h + │   │   ├── notificationsettings.h + │   │   ├── notifications.h + │   │   ├── server.h + │   │   └── settings.h + │   └── taskmanager + │   ├── abstracttasksmodel.h + │   ├── abstracttasksmodeliface.h + │   ├── abstracttasksproxymodeliface.h + │   ├── abstractwindowtasksmodel.h + │   ├── activityinfo.h + │   ├── concatenatetasksproxymodel.h + │   ├── flattentaskgroupsproxymodel.h + │   ├── launchertasksmodel.h + │   ├── regionfiltermode.h + │   ├── startuptasksmodel.h + │   ├── taskfilterproxymodel.h + │   ├── taskgroupingproxymodel.h + │   ├── taskmanager_export.h + │   ├── tasksmodel.h + │   ├── tasktools.h + │   ├── virtualdesktopinfo.h + │   ├── windowtasksmodel.h + │   ├── xstartuptasksmodel.h + │   └── xwindowtasksmodel.h + ├── lib + │   ├── sddm + │   └── systemd + │   └── user + │   ├── plasma-baloorunner.service + │   ├── plasma-core.target + │   ├── plasma-gmenudbusmenuproxy.service + │   ├── plasma-kcminit-phase1.service + │   ├── plasma-kcminit.service + │   ├── plasma-krunner.service + │   ├── plasma-ksmserver.service + │   ├── plasma-ksplash.service + │   ├── plasma-plasmashell.service + │   ├── plasma-restoresession.service + │   ├── plasma-workspace.target + │   ├── plasma-workspace-x11.target + │   └── plasma-xembedsniproxy.service + ├── lib64 + │   ├── cmake + │   │   ├── Krdb + │   │   │   ├── KrdbConfig.cmake + │   │   │   ├── KrdbConfigVersion.cmake + │   │   │   ├── krdbLibraryTargets.cmake + │   │   │   └── krdbLibraryTargets-release.cmake + │   │   ├── KRunnerAppDBusInterface + │   │   │   └── KRunnerAppDBusInterfaceConfig.cmake + │   │   ├── KSMServerDBusInterface + │   │   │   └── KSMServerDBusInterfaceConfig.cmake + │   │   ├── LibKLookAndFeel + │   │   │   ├── LibKLookAndFeelConfig.cmake + │   │   │   ├── LibKLookAndFeelConfigVersion.cmake + │   │   │   ├── LibKLookAndFeelLibraryTargets.cmake + │   │   │   └── LibKLookAndFeelLibraryTargets-release.cmake + │   │   ├── LibKWorkspace + │   │   │   ├── LibKWorkspaceConfig.cmake + │   │   │   ├── LibKWorkspaceConfigVersion.cmake + │   │   │   ├── LibKWorkspaceLibraryTargets.cmake + │   │   │   └── LibKWorkspaceLibraryTargets-release.cmake + │   │   ├── LibNotificationManager + │   │   │   ├── LibNotificationManagerConfig.cmake + │   │   │   ├── LibNotificationManagerConfigVersion.cmake + │   │   │   ├── LibNotificationManagerLibraryTargets.cmake + │   │   │   └── LibNotificationManagerLibraryTargets-release.cmake + │   │   └── LibTaskManager + │   │   ├── LibTaskManagerConfig.cmake + │   │   ├── LibTaskManagerConfigVersion.cmake + │   │   ├── LibTaskManagerLibraryTargets.cmake + │   │   └── LibTaskManagerLibraryTargets-release.cmake + │   ├── kconf_update_bin + │   │   ├── plasma6.0-remove-dpi-settings + │   │   ├── plasma6.0-remove-old-shortcuts + │   │   ├── plasma6.3-update-clipboard-database-2-to-3 + │   │   ├── plasma6.4-migrate-fullscreen-notifications-to-dnd + │   │   ├── plasmashell-6.0-keep-custom-position-of-panels + │   │   ├── plasmashell-6.0-keep-default-floating-setting-for-plasma-5-panels + │   │   └── plasmashell-6.5-remove-stop-activity-shortcut + │   ├── libbatterycontrol.so -> libbatterycontrol.so.6 + │   ├── libbatterycontrol.so.6 -> libbatterycontrol.so.6.6.4 + │   ├── libbatterycontrol.so.6.6.4 + │   ├── libkfontinst.so -> libkfontinst.so.6 + │   ├── libkfontinst.so.6 -> libkfontinst.so.6.6.4 + │   ├── libkfontinst.so.6.6.4 + │   ├── libkfontinstui.so -> libkfontinstui.so.6 + │   ├── libkfontinstui.so.6 -> libkfontinstui.so.6.6.4 + │   ├── libkfontinstui.so.6.6.4 + │   ├── libklipper.so -> libklipper.so.6 + │   ├── libklipper.so.6 -> libklipper.so.6.6.4 + │   ├── libklipper.so.6.6.4 + │   ├── libklookandfeel.so -> libklookandfeel.so.6 + │   ├── libklookandfeel.so.6 -> libklookandfeel.so.6.6.4 + │   ├── libklookandfeel.so.6.6.4 + │   ├── libkmpris.so.6 -> libkmpris.so.6.6.4 + │   ├── libkmpris.so.6.6.4 + │   ├── libkrdb.so + │   ├── libkworkspace6.so -> libkworkspace6.so.6 + │   ├── libkworkspace6.so.6 -> libkworkspace6.so.6.6.4 + │   ├── libkworkspace6.so.6.6.4 + │   ├── libnotificationmanager.so -> libnotificationmanager.so.1 + │   ├── libnotificationmanager.so.1 -> libnotificationmanager.so.6.6.4 + │   ├── libnotificationmanager.so.6.6.4 + │   ├── libtaskmanager.so -> libtaskmanager.so.6 + │   ├── libtaskmanager.so.6 -> libtaskmanager.so.6.6.4 + │   ├── libtaskmanager.so.6.6.4 + │   └── qt6 + │   ├── plugins + │   │   ├── kf6 + │   │   │   ├── kded + │   │   │   │   ├── appmenu.so + │   │   │   │   ├── desktopnotifier.so + │   │   │   │   ├── devicenotifications.so + │   │   │   │   ├── donationmessage.so + │   │   │   │   ├── freespacenotifier.so + │   │   │   │   ├── geotimezoned.so + │   │   │   │   ├── ktimezoned.so + │   │   │   │   ├── lookandfeelautoswitcher.so + │   │   │   │   ├── mprisservice.so + │   │   │   │   ├── oom-notifier.so + │   │   │   │   ├── plasma_accentcolor_service.so + │   │   │   │   ├── plasma-session-shortcuts.so + │   │   │   │   ├── soliduiserver.so + │   │   │   │   └── statusnotifierwatcher.so + │   │   │   ├── kfileitemaction + │   │   │   │   └── wallpaperfileitemaction.so + │   │   │   ├── kio + │   │   │   │   ├── applications.so + │   │   │   │   ├── desktop.so + │   │   │   │   └── kio_fonts.so + │   │   │   ├── krunner + │   │   │   │   ├── calculator.so + │   │   │   │   ├── helprunner.so + │   │   │   │   ├── kcms + │   │   │   │   │   └── kcm_krunner_kill.so + │   │   │   │   ├── krunner_appstream.so + │   │   │   │   ├── krunner_bookmarksrunner.so + │   │   │   │   ├── krunner_kill.so + │   │   │   │   ├── krunner_placesrunner.so + │   │   │   │   ├── krunner_recentdocuments.so + │   │   │   │   ├── krunner_services.so + │   │   │   │   ├── krunner_sessions.so + │   │   │   │   ├── krunner_shell.so + │   │   │   │   ├── krunner_webshortcuts.so + │   │   │   │   └── locations.so + │   │   │   ├── packagestructure + │   │   │   │   ├── plasma_layouttemplate.so + │   │   │   │   ├── plasma_lookandfeel.so + │   │   │   │   └── wallpaper_images.so + │   │   │   ├── parts + │   │   │   │   └── kfontviewpart.so + │   │   │   └── thumbcreator + │   │   │   └── fontthumbnail.so + │   │   ├── plasma + │   │   │   ├── applets + │   │   │   │   ├── org.kde.plasma.activitybar.so + │   │   │   │   ├── org.kde.plasma.analogclock.so + │   │   │   │   ├── org.kde.plasma.appmenu.so + │   │   │   │   ├── org.kde.plasma.calendar.so + │   │   │   │   ├── org.kde.plasma.cameraindicator.so + │   │   │   │   ├── org.kde.plasma.clipboard.so + │   │   │   │   ├── org.kde.plasma.devicenotifier.so + │   │   │   │   ├── org.kde.plasma.digitalclock.so + │   │   │   │   ├── org.kde.plasma.icon.so + │   │   │   │   ├── org.kde.plasma.lock_logout.so + │   │   │   │   ├── org.kde.plasma.manage-inputmethod.so + │   │   │   │   ├── org.kde.plasma.mediacontroller.so + │   │   │   │   ├── org.kde.plasma.notifications.so + │   │   │   │   ├── org.kde.plasma.panelspacer.so + │   │   │   │   ├── org.kde.plasma.systemmonitor.so + │   │   │   │   └── org.kde.plasma.systemtray.so + │   │   │   ├── containmentactions + │   │   │   │   ├── org.kde.applauncher.so + │   │   │   │   ├── org.kde.contextmenu.so + │   │   │   │   ├── org.kde.paste.so + │   │   │   │   ├── org.kde.switchdesktop.so + │   │   │   │   ├── switchactivity.so + │   │   │   │   └── switchwindow.so + │   │   │   ├── kcminit + │   │   │   │   ├── kcm_fonts_init.so -> ../kcms/systemsettings/kcm_fonts.so + │   │   │   │   └── kcm_style_init.so -> ../kcms/systemsettings/kcm_style.so + │   │   │   └── kcms + │   │   │   ├── systemsettings + │   │   │   │   ├── kcm_autostart.so + │   │   │   │   ├── kcm_colors.so + │   │   │   │   ├── kcm_componentchooser.so + │   │   │   │   ├── kcm_cursortheme.so + │   │   │   │   ├── kcm_desktoptheme.so + │   │   │   │   ├── kcm_feedback.so + │   │   │   │   ├── kcm_fonts.so + │   │   │   │   ├── kcm_icons.so + │   │   │   │   ├── kcm_lookandfeel.so + │   │   │   │   ├── kcm_nightlight.so + │   │   │   │   ├── kcm_nighttime.so + │   │   │   │   ├── kcm_notifications.so + │   │   │   │   ├── kcm_regionandlang.so + │   │   │   │   ├── kcm_soundtheme.so + │   │   │   │   ├── kcm_style.so + │   │   │   │   ├── kcm_users.so + │   │   │   │   └── kcm_wallpaper.so + │   │   │   └── systemsettings_qwidgets + │   │   │   └── kcm_fontinst.so + │   │   └── plasmacalendarplugins + │   │   ├── holidays + │   │   │   └── HolidaysConfig.qml + │   │   └── holidaysevents.so + │   └── qml + │   └── org + │   └── kde + │   ├── breeze + │   │   └── components + │   │   ├── ActionButton.qml + │   │   ├── Battery.qml + │   │   ├── Clock.qml + │   │   ├── components.qmltypes + │   │   ├── kde-qmlmodule.version + │   │   ├── libcomponents.so + │   │   ├── qmldir + │   │   ├── RejectPasswordAnimation.qml + │   │   ├── RejectPasswordPathAnimation.qml + │   │   ├── SessionManagementScreen.qml + │   │   ├── UserDelegate.qml + │   │   ├── UserList.qml + │   │   ├── VirtualKeyboardLoader.qml + │   │   ├── VirtualKeyboard.qml + │   │   ├── VirtualKeyboard_wayland.qml + │   │   └── WallpaperFader.qml + │   ├── notificationmanager + │   │   ├── kde-qmlmodule.version + │   │   ├── libnotificationmanagerplugin.so + │   │   ├── notificationmanager.qmltypes + │   │   └── qmldir + │   ├── plasma + │   │   ├── clock + │   │   │   ├── clockplugin.qmltypes + │   │   │   ├── kde-qmlmodule.version + │   │   │   ├── libclockplugin.so + │   │   │   └── qmldir + │   │   ├── lookandfeel + │   │   │   ├── kde-qmlmodule.version + │   │   │   ├── liblookandfeelqmlplugin.so + │   │   │   ├── lookandfeelqmlplugin.qmltypes + │   │   │   └── qmldir + │   │   ├── private + │   │   │   ├── battery + │   │   │   │   ├── batterycontrol.qmltypes + │   │   │   │   ├── kde-qmlmodule.version + │   │   │   │   ├── libbatterycontrolplugin.so + │   │   │   │   └── qmldir + │   │   │   ├── clipboard + │   │   │   │   ├── BarcodePage.qml + │   │   │   │   ├── ClipboardItemDelegate.qml + │   │   │   │   ├── ClipboardMenu.qml + │   │   │   │   ├── DelegateToolButtons.qml + │   │   │   │   ├── EditPage.qml + │   │   │   │   ├── ImageItemDelegate.qml + │   │   │   │   ├── kde-qmlmodule.version + │   │   │   │   ├── klipperplugin.qmltypes + │   │   │   │   ├── KlipperPopup.qml + │   │   │   │   ├── libklipperplugin.so + │   │   │   │   ├── qmldir + │   │   │   │   ├── TextItemDelegate.qml + │   │   │   │   └── UrlItemDelegate.qml + │   │   │   ├── containmentlayoutmanager + │   │   │   │   ├── BasicAppletContainer.qml + │   │   │   │   ├── BasicResizeHandle.qml + │   │   │   │   ├── ConfigOverlayWithHandles.qml + │   │   │   │   ├── containmentlayoutmanagerplugin.qmltypes + │   │   │   │   ├── kde-qmlmodule.version + │   │   │   │   ├── libcontainmentlayoutmanagerplugin.so + │   │   │   │   ├── PlaceHolder.qml + │   │   │   │   └── qmldir + │   │   │   ├── digitalclock + │   │   │   │   ├── digitalclockplugin.qmltypes + │   │   │   │   ├── kde-qmlmodule.version + │   │   │   │   ├── libdigitalclockplugin.so + │   │   │   │   └── qmldir + │   │   │   ├── holidayevents + │   │   │   │   ├── holidayevents.qmltypes + │   │   │   │   ├── kde-qmlmodule.version + │   │   │   │   ├── libholidayevents.so + │   │   │   │   └── qmldir + │   │   │   ├── keyboardindicator + │   │   │   │   ├── kde-qmlmodule.version + │   │   │   │   ├── keyboardindicatorplugin.qmltypes + │   │   │   │   ├── libkeyboardindicatorplugin.so + │   │   │   │   └── qmldir + │   │   │   ├── kicker + │   │   │   │   ├── kde-qmlmodule.version + │   │   │   │   ├── kickerplugin.qmltypes + │   │   │   │   ├── libkickerplugin.so + │   │   │   │   └── qmldir + │   │   │   ├── mpris + │   │   │   │   ├── kde-qmlmodule.version + │   │   │   │   ├── kmpris.qmltypes + │   │   │   │   ├── libkmprisplugin.so + │   │   │   │   └── qmldir + │   │   │   ├── sessions + │   │   │   │   ├── kde-qmlmodule.version + │   │   │   │   ├── libsessionsprivateplugin.so + │   │   │   │   ├── qmldir + │   │   │   │   └── sessionsprivateplugin.qmltypes + │   │   │   ├── shell + │   │   │   │   ├── kde-qmlmodule.version + │   │   │   │   ├── libplasmashellprivateplugin.so + │   │   │   │   ├── plasmashellprivateplugin.qmltypes + │   │   │   │   └── qmldir + │   │   │   └── systemtray + │   │   │   ├── kde-qmlmodule.version + │   │   │   ├── libsystemtrayplugin.so + │   │   │   ├── qmldir + │   │   │   └── systemtrayplugin.qmltypes + │   │   ├── wallpapers + │   │   │   └── image + │   │   │   ├── kde-qmlmodule.version + │   │   │   ├── libplasma_wallpaper_image.so + │   │   │   ├── plasma_wallpaper_image.qmltypes + │   │   │   └── qmldir + │   │   └── workspace + │   │   ├── calendar + │   │   │   ├── calendarplugin.qmltypes + │   │   │   ├── DayDelegate.qml + │   │   │   ├── DaysCalendar.qml + │   │   │   ├── InfiniteList.qml + │   │   │   ├── kde-qmlmodule.version + │   │   │   ├── libcalendarplugin.so + │   │   │   ├── MonthViewHeader.qml + │   │   │   ├── MonthView.qml + │   │   │   └── qmldir + │   │   ├── components + │   │   │   ├── BadgeOverlay.qml + │   │   │   ├── BatteryIcon.qml + │   │   │   ├── kde-qmlmodule.version + │   │   │   ├── KeyboardLayoutSwitcher.qml + │   │   │   ├── libworkspacecomponents.so + │   │   │   ├── qmldir + │   │   │   └── workspacecomponents.qmltypes + │   │   ├── dbus + │   │   │   ├── dbusplugin.qmltypes + │   │   │   ├── kde-qmlmodule.version + │   │   │   ├── libdbusplugin.so + │   │   │   └── qmldir + │   │   ├── dialogs + │   │   │   ├── kde-qmlmodule.version + │   │   │   ├── libsystemdialogs.so + │   │   │   ├── qmldir + │   │   │   ├── SystemDialog.qml + │   │   │   └── systemdialogs.qmltypes + │   │   ├── keyboardlayout + │   │   │   ├── kde-qmlmodule.version + │   │   │   ├── keyboardlayoutplugin.qmltypes + │   │   │   ├── libkeyboardlayoutplugin.so + │   │   │   └── qmldir + │   │   ├── osd + │   │   │   ├── kde-qmlmodule.version + │   │   │   ├── libplasmashell_osd.so + │   │   │   ├── OsdItem.qml + │   │   │   ├── Osd.qml + │   │   │   ├── plasmashell_osd.qmltypes + │   │   │   └── qmldir + │   │   ├── timezoneselector + │   │   │   ├── GeoJsonDelegate.qml + │   │   │   ├── kde-qmlmodule.version + │   │   │   ├── libtimezoneplugin.so + │   │   │   ├── qmldir + │   │   │   ├── timezoneplugin.qmltypes + │   │   │   └── TimezoneSelector.qml + │   │   └── trianglemousefilter + │   │   ├── kde-qmlmodule.version + │   │   ├── libtrianglemousefilterplugin.so + │   │   ├── qmldir + │   │   └── trianglemousefilterplugin.qmltypes + │   └── taskmanager + │   ├── kde-qmlmodule.version + │   ├── libtaskmanagerplugin.so + │   ├── qmldir + │   └── taskmanager.qmltypes + ├── libexec + │   ├── baloorunner + │   ├── kf6 + │   │   └── kauth + │   │   ├── fontinst + │   │   ├── fontinst_helper + │   │   └── fontinst_x11 + │   ├── kfontprint + │   ├── ksecretprompter + │   ├── ksmserver-logout-greeter + │   ├── plasma-changeicons + │   ├── plasma-dbus-run-session-if-needed + │   ├── plasma-fallback-session-restore + │   ├── plasma-fallback-session-save + │   └── plasma-sourceenv.sh + └── share + ├── applications + │   ├── kcm_autostart.desktop + │   ├── kcm_colors.desktop + │   ├── kcm_componentchooser.desktop + │   ├── kcm_cursortheme.desktop + │   ├── kcm_desktoptheme.desktop + │   ├── kcm_feedback.desktop + │   ├── kcm_fontinst.desktop + │   ├── kcm_fonts.desktop + │   ├── kcm_icons.desktop + │   ├── kcm_lookandfeel.desktop + │   ├── kcm_nightlight.desktop + │   ├── kcm_nighttime.desktop + │   ├── kcm_notifications.desktop + │   ├── kcm_regionandlang.desktop + │   ├── kcm_soundtheme.desktop + │   ├── kcm_style.desktop + │   ├── kcm_users.desktop + │   ├── kcm_wallpaper.desktop + │   ├── org.kde.baloorunner.desktop + │   ├── org.kde.kcolorschemeeditor.desktop + │   ├── org.kde.kfontinst.desktop + │   ├── org.kde.kfontview.desktop + │   ├── org.kde.klipper.desktop + │   ├── org.kde.plasma-fallback-session-save.desktop + │   ├── org.kde.plasma-interactiveconsole.desktop + │   ├── org.kde.plasmashell.desktop + │   ├── org.kde.plasmawindowed.desktop + │   └── org.kde.secretprompter.desktop + ├── config.kcfg + │   ├── colorssettings.kcfg + │   ├── cursorthemesettings.kcfg + │   ├── feedbacksettings.kcfg + │   ├── fontssettings.kcfg + │   ├── freespacenotifier.kcfg + │   ├── iconssettingsbase.kcfg + │   ├── launchfeedbacksettings.kcfg + │   ├── lookandfeelsettings.kcfg + │   └── stylesettings.kcfg + ├── dbus-1 + │   ├── interfaces + │   │   ├── com.canonical.AppMenu.Registrar.xml + │   │   ├── org.kde.kappmenu.xml + │   │   ├── org.kde.krunner.App.xml + │   │   ├── org.kde.KSMServerInterface.xml + │   │   ├── org.kde.KSplash.xml + │   │   └── org.kde.PlasmaShell.xml + │   ├── services + │   │   ├── org.kde.fontinst.service + │   │   ├── org.kde.krunner.service + │   │   ├── org.kde.KSplash.service + │   │   ├── org.kde.LogoutPrompt.service + │   │   ├── org.kde.plasma.Notifications.service + │   │   ├── org.kde.runners.baloo.service + │   │   ├── org.kde.secretprompter.service + │   │   └── org.kde.Shutdown.service + │   ├── system.d + │   │   └── org.kde.fontinst.conf + │   └── system-services + │   └── org.kde.fontinst.service + ├── desktop-directories + │   ├── kf5-development.directory + │   ├── kf5-development-translation.directory + │   ├── kf5-development-webdevelopment.directory + │   ├── kf5-editors.directory + │   ├── kf5-education.directory + │   ├── kf5-edu-languages.directory + │   ├── kf5-edu-mathematics.directory + │   ├── kf5-edu-miscellaneous.directory + │   ├── kf5-edu-science.directory + │   ├── kf5-edu-tools.directory + │   ├── kf5-games-arcade.directory + │   ├── kf5-games-board.directory + │   ├── kf5-games-card.directory + │   ├── kf5-games.directory + │   ├── kf5-games-kids.directory + │   ├── kf5-games-logic.directory + │   ├── kf5-games-roguelikes.directory + │   ├── kf5-games-strategy.directory + │   ├── kf5-graphics.directory + │   ├── kf5-help.directory + │   ├── kf5-internet.directory + │   ├── kf5-internet-terminal.directory + │   ├── kf5-main.directory + │   ├── kf5-more.directory + │   ├── kf5-multimedia.directory + │   ├── kf5-network.directory + │   ├── kf5-office.directory + │   ├── kf5-science.directory + │   ├── kf5-settingsmenu.directory + │   ├── kf5-system.directory + │   ├── kf5-system-terminal.directory + │   ├── kf5-toys.directory + │   ├── kf5-unknown.directory + │   ├── kf5-utilities-accessibility.directory + │   ├── kf5-utilities-desktop.directory + │   ├── kf5-utilities.directory + │   ├── kf5-utilities-file.directory + │   ├── kf5-utilities-peripherals.directory + │   ├── kf5-utilities-pim.directory + │   └── kf5-utilities-xutils.directory + ├── doc + │   └── HTML + │   ├── ca + │   │   ├── kcontrol + │   │   │   ├── autostart + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── colors + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── componentchooser + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── cursortheme + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── desktopthemedetails + │   │   │   │   ├── get-new-theme.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   └── main.png + │   │   │   ├── fontinst + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fonts + │   │   │   │   ├── adjust-all.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   └── main.png + │   │   │   ├── icons + │   │   │   │   ├── get-new-theme.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   ├── main.png + │   │   │   │   └── use-of-icons.png + │   │   │   ├── kcmstyle + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── lookandfeel + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── notifications + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── region_language + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── screenlocker + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── klipper + │   │   ├── index.cache.bz2 + │   │   ├── index.docbook + │   │   ├── klipper-widget.png + │   │   └── screenshot.png + │   ├── de + │   │   ├── kcontrol + │   │   │   ├── autostart + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── colors + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── componentchooser + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── cursortheme + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── desktopthemedetails + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fontinst + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fonts + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── icons + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmstyle + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── notifications + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── region_language + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── screenlocker + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── klipper + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── en + │   │   ├── kcontrol + │   │   │   ├── autostart + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── colors + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── componentchooser + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── cursortheme + │   │   │   │   ├── cursor-size.png + │   │   │   │   ├── get-new-stuff.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   ├── launch-feedback.png + │   │   │   │   └── main.png + │   │   │   ├── desktopthemedetails + │   │   │   │   ├── edit-delete.png + │   │   │   │   ├── edit-undo.png + │   │   │   │   ├── get-new-theme.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   └── main.png + │   │   │   ├── fontinst + │   │   │   │   ├── edit-delete.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fonts + │   │   │   │   ├── adjust-all.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   └── main.png + │   │   │   ├── icons + │   │   │   │   ├── edit-delete.png + │   │   │   │   ├── edit-undo.png + │   │   │   │   ├── get-new-theme.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   ├── main.png + │   │   │   │   └── use-of-icons.png + │   │   │   ├── kcmstyle + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── lookandfeel + │   │   │   │   ├── component-chooser_1.png + │   │   │   │   ├── component-chooser_2.png + │   │   │   │   ├── get-new-stuff.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   └── main.png + │   │   │   ├── notifications + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── region_language + │   │   │   │   ├── go-top.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   └── list-remove.png + │   │   │   └── screenlocker + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── klipper + │   │   │   ├── index.cache.bz2 + │   │   │   ├── index.docbook + │   │   │   ├── klipper-widget.png + │   │   │   └── screenshot.png + │   │   └── PolicyKit-kde + │   │   ├── authdialog_1.png + │   │   ├── authdialog_2.png + │   │   ├── authdialog_3.png + │   │   ├── authdialog_4.png + │   │   ├── authdialog_5.png + │   │   ├── authdialog_6.png + │   │   ├── authorization_1.png + │   │   ├── authorization_2.png + │   │   ├── authorizationagent.docbook + │   │   ├── authorization.docbook + │   │   ├── howitworks.docbook + │   │   ├── index.cache.bz2 + │   │   ├── index.docbook + │   │   └── introduction.docbook + │   ├── es + │   │   ├── kcontrol + │   │   │   ├── autostart + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── colors + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── componentchooser + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── cursortheme + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── desktopthemedetails + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fontinst + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fonts + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── icons + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmstyle + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── lookandfeel + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── notifications + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── region_language + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── screenlocker + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── klipper + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── fr + │   │   └── kcontrol + │   │   ├── componentchooser + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── desktopthemedetails + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── fontinst + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── id + │   │   ├── kcontrol + │   │   │   ├── autostart + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── colors + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── componentchooser + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── cursortheme + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── desktopthemedetails + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fontinst + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fonts + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── icons + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmstyle + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── region_language + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── screenlocker + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── klipper + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── it + │   │   ├── kcontrol + │   │   │   ├── autostart + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── colors + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── componentchooser + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── cursortheme + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── desktopthemedetails + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fontinst + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fonts + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── icons + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmstyle + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── lookandfeel + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── notifications + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── region_language + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── screenlocker + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── klipper + │   │   ├── index.cache.bz2 + │   │   ├── index.docbook + │   │   ├── klipper-widget.png + │   │   └── screenshot.png + │   ├── ko + │   │   └── kcontrol + │   │   ├── fonts + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── screenlocker + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── nl + │   │   ├── kcontrol + │   │   │   ├── autostart + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── colors + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── componentchooser + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── cursortheme + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── desktopthemedetails + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fontinst + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fonts + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── icons + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmstyle + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── lookandfeel + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── notifications + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── region_language + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── screenlocker + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── klipper + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── pt + │   │   ├── kcontrol + │   │   │   ├── autostart + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── colors + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── componentchooser + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── cursortheme + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── desktopthemedetails + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fontinst + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fonts + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmstyle + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── region_language + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── screenlocker + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── klipper + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── pt_BR + │   │   ├── kcontrol + │   │   │   ├── autostart + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── colors + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── componentchooser + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── cursortheme + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── desktopthemedetails + │   │   │   │   ├── customizing.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fontinst + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fonts + │   │   │   │   ├── adjust-all.png + │   │   │   │   ├── anti-aliasing.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   └── main.png + │   │   │   ├── icons + │   │   │   │   ├── effects.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   ├── install-theme.png + │   │   │   │   ├── main.png + │   │   │   │   └── use-of-icons.png + │   │   │   ├── kcmstyle + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── lookandfeel + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── notifications + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── region_language + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── screenlocker + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── klipper + │   │   ├── index.cache.bz2 + │   │   ├── index.docbook + │   │   ├── klipper-application.png + │   │   ├── klipper-widget.png + │   │   └── screenshot.png + │   ├── ru + │   │   ├── kcontrol + │   │   │   ├── autostart + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── colors + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── componentchooser + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── cursortheme + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── desktopthemedetails + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fontinst + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fonts + │   │   │   │   ├── adjust-all.png + │   │   │   │   ├── anti-aliasing.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   └── main.png + │   │   │   ├── icons + │   │   │   │   ├── delete-theme.png + │   │   │   │   ├── effects.png + │   │   │   │   ├── get-new-theme.png + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   ├── index.docbook + │   │   │   │   ├── install-theme.png + │   │   │   │   ├── main.png + │   │   │   │   ├── size.png + │   │   │   │   └── use-of-icons.png + │   │   │   ├── kcmstyle + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── lookandfeel + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── notifications + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── region_language + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── screenlocker + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── klipper + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── sl + │   │   ├── kcontrol + │   │   │   ├── autostart + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── colors + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── componentchooser + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── cursortheme + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── desktopthemedetails + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fontinst + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fonts + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── icons + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmstyle + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── lookandfeel + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── notifications + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── region_language + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── screenlocker + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── klipper + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── sr + │   │   └── kcontrol + │   │   ├── autostart + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── icons + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── sr@latin + │   │   └── kcontrol + │   │   ├── autostart + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── icons + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── sv + │   │   ├── kcontrol + │   │   │   ├── autostart + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── colors + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── componentchooser + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── cursortheme + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── desktopthemedetails + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fontinst + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fonts + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── icons + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmstyle + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── notifications + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── region_language + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── screenlocker + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── klipper + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   ├── tr + │   │   ├── kcontrol + │   │   │   ├── autostart + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── colors + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── componentchooser + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── cursortheme + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── desktopthemedetails + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fontinst + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── fonts + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── icons + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── kcmstyle + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── lookandfeel + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── notifications + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   ├── region_language + │   │   │   │   ├── index.cache.bz2 + │   │   │   │   └── index.docbook + │   │   │   └── screenlocker + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── klipper + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   └── uk + │   ├── kcontrol + │   │   ├── autostart + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── colors + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── componentchooser + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── cursortheme + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── desktopthemedetails + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── fontinst + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── fonts + │   │   │   ├── adjust-all.png + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── icons + │   │   │   ├── get-new-theme.png + │   │   │   ├── index.cache.bz2 + │   │   │   ├── index.docbook + │   │   │   ├── main.png + │   │   │   └── use-of-icons.png + │   │   ├── kcmstyle + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── lookandfeel + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── notifications + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   ├── region_language + │   │   │   ├── index.cache.bz2 + │   │   │   └── index.docbook + │   │   └── screenlocker + │   │   ├── index.cache.bz2 + │   │   └── index.docbook + │   └── klipper + │   ├── index.cache.bz2 + │   ├── index.docbook + │   ├── klipper-widget.png + │   └── screenshot.png + ├── icons + │   └── hicolor + │   ├── 128x128 + │   │   └── mimetypes + │   │   └── fonts-package.png + │   ├── 16x16 + │   │   ├── apps + │   │   │   └── kfontview.png + │   │   └── mimetypes + │   │   └── fonts-package.png + │   ├── 22x22 + │   │   ├── apps + │   │   │   └── kfontview.png + │   │   └── mimetypes + │   │   └── fonts-package.png + │   ├── 32x32 + │   │   ├── apps + │   │   │   └── kfontview.png + │   │   └── mimetypes + │   │   └── fonts-package.png + │   ├── 48x48 + │   │   ├── apps + │   │   │   └── kfontview.png + │   │   └── mimetypes + │   │   └── fonts-package.png + │   ├── 64x64 + │   │   ├── apps + │   │   │   └── kfontview.png + │   │   └── mimetypes + │   │   └── fonts-package.png + │   └── scalable + │   └── apps + │   └── preferences-desktop-font-installer.svgz + ├── kconf_update + │   ├── migrate-calendar-to-plugin-id.py + │   ├── migrate-calendar-to-plugin-id.upd + │   ├── plasma6.0-remove-dpi-settings.upd + │   ├── plasma6.0-remove-old-shortcuts.upd + │   ├── plasma6.3-update-clipboard-database-2-to-3.upd + │   ├── plasma6.4-migrate-fullscreen-notifications-to-dnd.upd + │   ├── plasmashell-6.0-keep-custom-position-of-panels.upd + │   ├── plasmashell-6.0-keep-default-floating-setting-for-plasma-5-panels.upd + │   └── plasmashell-6.5-remove-stop-activity-shortcut.upd + ├── kfontinst + │   └── icons + │   └── hicolor + │   ├── 16x16 + │   │   └── actions + │   │   ├── addfont.png + │   │   ├── font-disable.png + │   │   ├── font-enable.png + │   │   └── fontstatus.png + │   └── 22x22 + │   └── actions + │   ├── addfont.png + │   ├── font-disable.png + │   ├── font-enable.png + │   └── fontstatus.png + ├── kglobalaccel + │   └── org.kde.krunner.desktop + ├── kio + │   └── servicemenus + │   └── installfont.desktop + ├── kio_desktop + │   ├── directory.desktop + │   └── directory.trash + ├── knotifications6 + │   ├── devicenotifications.notifyrc + │   ├── donationmessage.notifyrc + │   ├── freespacenotifier.notifyrc + │   ├── libnotificationmanager.notifyrc + │   └── oom-notifier.notifyrc + ├── knsrcfiles + │   ├── colorschemes.knsrc + │   ├── gtk_themes.knsrc + │   ├── icons.knsrc + │   ├── kfontinst.knsrc + │   ├── lookandfeel.knsrc + │   ├── plasma-themes.knsrc + │   ├── plasmoids.knsrc + │   ├── wallpaper.knsrc + │   ├── wallpaper-mobile.knsrc + │   ├── wallpaperplugin.knsrc + │   └── xcursor.knsrc + ├── konqsidebartng + │   └── virtual_folders + │   └── services + │   └── fonts.desktop + ├── krunner + │   └── dbusplugins + │   └── plasma-runner-baloosearch.desktop + ├── kstyle + │   └── themes + │   ├── qtcde.themerc + │   ├── qtcleanlooks.themerc + │   ├── qtgtk.themerc + │   ├── qtmotif.themerc + │   ├── qtplastique.themerc + │   └── qtwindows.themerc + ├── kxmlgui5 + │   ├── kfontview + │   │   └── kfontviewui.rc + │   └── kfontviewpart + │   └── kfontviewpart.rc + ├── locale + │   ├── af + │   │   └── LC_MESSAGES + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   └── ksmserver.mo + │   ├── ar + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── ast + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── az + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── be + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── be@latin + │   │   └── LC_MESSAGES + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── bg + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── bn + │   │   └── LC_MESSAGES + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── klipper.mo + │   │   └── ksmserver.mo + │   ├── bn_IN + │   │   └── LC_MESSAGES + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── br + │   │   └── LC_MESSAGES + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   └── ksmserver.mo + │   ├── bs + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── ca + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── ca@valencia + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── cs + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── csb + │   │   └── LC_MESSAGES + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── cy + │   │   └── LC_MESSAGES + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   └── ksmserver.mo + │   ├── da + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── de + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── el + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── en_GB + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── eo + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── es + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── et + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── eu + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── fa + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   └── soliduiserver.mo + │   ├── fi + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── fr + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── fy + │   │   └── LC_MESSAGES + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── ga + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── gl + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── gu + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── he + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── hi + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── hne + │   │   └── LC_MESSAGES + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   └── soliduiserver.mo + │   ├── hr + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── hsb + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── hu + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── hy + │   │   └── LC_MESSAGES + │   │   ├── kcminit.mo + │   │   ├── kfontinst.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   └── plasma_runner_locations.mo + │   ├── ia + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── id + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── ie + │   │   └── LC_MESSAGES + │   │   ├── kcm_regionandlang.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kio_desktop.mo + │   │   ├── krdb.mo + │   │   ├── libkicker.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasmashell.mo + │   │   └── plasma_wallpaper_org.kde.color.mo + │   ├── is + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── it + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── ja + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── ka + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── kk + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── km + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── kn + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   └── soliduiserver.mo + │   ├── ko + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── ku + │   │   └── LC_MESSAGES + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── lb + │   │   └── LC_MESSAGES + │   │   └── kio_applications.mo + │   ├── lt + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── lv + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── mai + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── mk + │   │   └── LC_MESSAGES + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── ml + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── mr + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── ms + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── nb + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── nds + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── ne + │   │   └── LC_MESSAGES + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   └── soliduiserver.mo + │   ├── nl + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── nn + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── oc + │   │   └── LC_MESSAGES + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   └── soliduiserver.mo + │   ├── or + │   │   └── LC_MESSAGES + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── pa + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── pl + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── pt + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── pt_BR + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── ro + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── ru + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── sa + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── se + │   │   └── LC_MESSAGES + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   └── soliduiserver.mo + │   ├── si + │   │   └── LC_MESSAGES + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── sk + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── sl + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── sq + │   │   └── LC_MESSAGES + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── sr + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── sr@ijekavian + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── sr@ijekavianlatin + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── sr@latin + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── sv + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── ta + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── te + │   │   └── LC_MESSAGES + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── tg + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── th + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── tok + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── tr + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── ug + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── uk + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   ├── uz + │   │   └── LC_MESSAGES + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   └── ksmserver.mo + │   ├── uz@cyrillic + │   │   └── LC_MESSAGES + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── ksmserver.mo + │   │   └── plasma_containmentactions_contextmenu.mo + │   ├── vi + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── wa + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── ksmserver.mo + │   │   ├── libkworkspace.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   └── soliduiserver.mo + │   ├── xh + │   │   └── LC_MESSAGES + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcm_style.mo + │   │   ├── kfontinst.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   └── ksmserver.mo + │   ├── zh_CN + │   │   └── LC_MESSAGES + │   │   ├── freespacenotifier.mo + │   │   ├── kcm_autostart.mo + │   │   ├── kcm_colors.mo + │   │   ├── kcm_componentchooser.mo + │   │   ├── kcm_cursortheme.mo + │   │   ├── kcm_desktoptheme.mo + │   │   ├── kcm_feedback.mo + │   │   ├── kcm_fonts.mo + │   │   ├── kcm_icons.mo + │   │   ├── kcminit.mo + │   │   ├── kcm_lookandfeel.mo + │   │   ├── kcm_nightlight.mo + │   │   ├── kcm_nighttime.mo + │   │   ├── kcm_notifications.mo + │   │   ├── kcm_regionandlang.mo + │   │   ├── kcm_soundtheme.mo + │   │   ├── kcm_style.mo + │   │   ├── kcm_users.mo + │   │   ├── kcm_wallpaper.mo + │   │   ├── kded_devicenotifications.mo + │   │   ├── kded_donationmessage.mo + │   │   ├── kded_geotimezoned.mo + │   │   ├── kfontinst.mo + │   │   ├── kio_applications.mo + │   │   ├── kio_desktop.mo + │   │   ├── klipper.mo + │   │   ├── krdb.mo + │   │   ├── krunner.mo + │   │   ├── ksecretprompter.mo + │   │   ├── ksmserver.mo + │   │   ├── libkicker.mo + │   │   ├── libkmpris.mo + │   │   ├── libkworkspace.mo + │   │   ├── libnotificationmanager.mo + │   │   ├── oom-notifier.mo + │   │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   │   ├── plasma_applet_org.kde.plasma.icon.mo + │   │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   │   ├── plasma_containmentactions_applauncher.mo + │   │   ├── plasma_containmentactions_contextmenu.mo + │   │   ├── plasma_containmentactions_switchwindow.mo + │   │   ├── plasma_interactiveconsole.mo + │   │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   │   ├── plasma_runner_appstream.mo + │   │   ├── plasma_runner_baloosearch.mo + │   │   ├── plasma_runner_bookmarksrunner.mo + │   │   ├── plasma_runner_calculatorrunner.mo + │   │   ├── plasma_runner_kill.mo + │   │   ├── plasma_runner_locations.mo + │   │   ├── plasma_runner_placesrunner.mo + │   │   ├── plasma_runner_recentdocuments.mo + │   │   ├── plasma_runner_services.mo + │   │   ├── plasma_runner_sessions.mo + │   │   ├── plasma_runner_shell.mo + │   │   ├── plasma_runner_webshortcuts.mo + │   │   ├── plasmashell.mo + │   │   ├── plasmashellprivateplugin.mo + │   │   ├── plasma_wallpaper_org.kde.color.mo + │   │   ├── plasma_wallpaper_org.kde.image.mo + │   │   ├── plasmawindowed.mo + │   │   ├── session-shortcuts-kded.mo + │   │   └── soliduiserver.mo + │   └── zh_TW + │   └── LC_MESSAGES + │   ├── freespacenotifier.mo + │   ├── kcm_autostart.mo + │   ├── kcm_colors.mo + │   ├── kcm_componentchooser.mo + │   ├── kcm_cursortheme.mo + │   ├── kcm_desktoptheme.mo + │   ├── kcm_feedback.mo + │   ├── kcm_fonts.mo + │   ├── kcm_icons.mo + │   ├── kcminit.mo + │   ├── kcm_lookandfeel.mo + │   ├── kcm_nightlight.mo + │   ├── kcm_nighttime.mo + │   ├── kcm_notifications.mo + │   ├── kcm_regionandlang.mo + │   ├── kcm_soundtheme.mo + │   ├── kcm_style.mo + │   ├── kcm_users.mo + │   ├── kcm_wallpaper.mo + │   ├── kded_devicenotifications.mo + │   ├── kded_donationmessage.mo + │   ├── kded_geotimezoned.mo + │   ├── kfontinst.mo + │   ├── kio_applications.mo + │   ├── kio_desktop.mo + │   ├── klipper.mo + │   ├── krdb.mo + │   ├── krunner.mo + │   ├── ksecretprompter.mo + │   ├── ksmserver.mo + │   ├── libkicker.mo + │   ├── libkmpris.mo + │   ├── libkworkspace.mo + │   ├── libnotificationmanager.mo + │   ├── oom-notifier.mo + │   ├── plasma_applet_org.kde.plasma.activitybar.mo + │   ├── plasma_applet_org.kde.plasma.analogclock.mo + │   ├── plasma_applet_org.kde.plasma.appmenu.mo + │   ├── plasma_applet_org.kde.plasma.calendar.mo + │   ├── plasma_applet_org.kde.plasma.cameraindicator.mo + │   ├── plasma_applet_org.kde.plasma.clipboard.mo + │   ├── plasma_applet_org.kde.plasma.devicenotifier.mo + │   ├── plasma_applet_org.kde.plasma.digitalclock.mo + │   ├── plasma_applet_org.kde.plasma.icon.mo + │   ├── plasma_applet_org.kde.plasma.lock_logout.mo + │   ├── plasma_applet_org.kde.plasma.manageinputmethod.mo + │   ├── plasma_applet_org.kde.plasma.mediacontroller.mo + │   ├── plasma_applet_org.kde.plasma.notifications.mo + │   ├── plasma_applet_org.kde.plasma.systemmonitor.mo + │   ├── plasma_applet_org.kde.plasma.systemtray.mo + │   ├── plasma_containmentactions_applauncher.mo + │   ├── plasma_containmentactions_contextmenu.mo + │   ├── plasma_containmentactions_switchwindow.mo + │   ├── plasma_interactiveconsole.mo + │   ├── plasma_lookandfeel_org.kde.lookandfeel.mo + │   ├── plasma_runner_appstream.mo + │   ├── plasma_runner_baloosearch.mo + │   ├── plasma_runner_bookmarksrunner.mo + │   ├── plasma_runner_calculatorrunner.mo + │   ├── plasma_runner_kill.mo + │   ├── plasma_runner_locations.mo + │   ├── plasma_runner_placesrunner.mo + │   ├── plasma_runner_recentdocuments.mo + │   ├── plasma_runner_services.mo + │   ├── plasma_runner_sessions.mo + │   ├── plasma_runner_shell.mo + │   ├── plasma_runner_webshortcuts.mo + │   ├── plasmashell.mo + │   ├── plasmashellprivateplugin.mo + │   ├── plasma_wallpaper_org.kde.color.mo + │   ├── plasma_wallpaper_org.kde.image.mo + │   ├── plasmawindowed.mo + │   ├── session-shortcuts-kded.mo + │   └── soliduiserver.mo + ├── plasma + │   ├── avatars + │   │   ├── Artist Konqi.png + │   │   ├── Bookworm Konqi.png + │   │   ├── Boss Konqi.png + │   │   ├── Bug Catcher Konqi.png + │   │   ├── Card Shark Konqi.png + │   │   ├── Hacker Konqi.png + │   │   ├── Journalist Konqi.png + │   │   ├── Katie.png + │   │   ├── Konqi.png + │   │   ├── Mechanic Konqi.png + │   │   ├── Messenger Konqi.png + │   │   ├── Musician Konqi.png + │   │   ├── Office Worker Konqi.png + │   │   ├── PC Builder Konqi.png + │   │   ├── photos + │   │   │   ├── Air Balloon.png + │   │   │   ├── Air Balloon.png.license + │   │   │   ├── Astronaut.png + │   │   │   ├── Astronaut.png.license + │   │   │   ├── Books.png + │   │   │   ├── Books.png.license + │   │   │   ├── Brushes.png + │   │   │   ├── Brushes.png.license + │   │   │   ├── Bulb.png + │   │   │   ├── Bulb.png.license + │   │   │   ├── Car.png + │   │   │   ├── Car.png.license + │   │   │   ├── Cat.png + │   │   │   ├── Cat.png.license + │   │   │   ├── Chameleon.png + │   │   │   ├── Chameleon.png.license + │   │   │   ├── Cocktail.png + │   │   │   ├── Cocktail.png.license + │   │   │   ├── Dog.png + │   │   │   ├── Dog.png.license + │   │   │   ├── Fish.png + │   │   │   ├── Fish.png.license + │   │   │   ├── Gamepad.png + │   │   │   ├── Gamepad.png.license + │   │   │   ├── Owl.png + │   │   │   ├── Owl.png.license + │   │   │   ├── Pancakes.png + │   │   │   ├── Pancakes.png.license + │   │   │   ├── Parrot.png + │   │   │   ├── Parrot.png.license + │   │   │   ├── Pencils.png + │   │   │   ├── Pencils.png.license + │   │   │   ├── Shuttle.png + │   │   │   ├── Shuttle.png.license + │   │   │   ├── Soccer.png + │   │   │   ├── Soccer.png.license + │   │   │   ├── Sunflower.png + │   │   │   ├── Sunflower.png.license + │   │   │   ├── Sushi.png + │   │   │   └── Sushi.png.license + │   │   ├── Scientist Konqi.png + │   │   ├── Teacher Konqi.png + │   │   └── Virtual Reality Konqi.png + │   ├── look-and-feel + │   │   ├── org.fedoraproject.fedoradark.desktop + │   │   │   ├── contents + │   │   │   │   ├── defaults + │   │   │   │   ├── layouts + │   │   │   │   │   └── org.kde.plasma.desktop-layout.js + │   │   │   │   ├── logout + │   │   │   │   │   ├── LogoutButton.qml + │   │   │   │   │   ├── Logout.qml + │   │   │   │   │   └── timer.js + │   │   │   │   ├── previews + │   │   │   │   │   ├── fullscreenpreview.jpg + │   │   │   │   │   ├── lockscreen.png + │   │   │   │   │   ├── preview.png + │   │   │   │   │   └── splash.png + │   │   │   │   ├── splash + │   │   │   │   │   ├── images + │   │   │   │   │   │   ├── busywidget.svgz + │   │   │   │   │   │   ├── kde.svgz + │   │   │   │   │   │   └── plasma.svgz + │   │   │   │   │   └── Splash.qml + │   │   │   │   └── systemdialog + │   │   │   │   └── SystemDialog.qml + │   │   │   └── metadata.json + │   │   ├── org.fedoraproject.fedora.desktop + │   │   │   ├── contents + │   │   │   │   ├── defaults + │   │   │   │   ├── layouts + │   │   │   │   │   └── org.kde.plasma.desktop-layout.js + │   │   │   │   ├── logout + │   │   │   │   │   ├── LogoutButton.qml + │   │   │   │   │   ├── Logout.qml + │   │   │   │   │   └── timer.js + │   │   │   │   ├── previews + │   │   │   │   │   ├── fullscreenpreview.jpg + │   │   │   │   │   ├── lockscreen.png + │   │   │   │   │   ├── preview.png + │   │   │   │   │   └── splash.png + │   │   │   │   ├── splash + │   │   │   │   │   ├── images + │   │   │   │   │   │   ├── busywidget.svgz + │   │   │   │   │   │   ├── kde.svgz + │   │   │   │   │   │   └── plasma.svgz + │   │   │   │   │   └── Splash.qml + │   │   │   │   └── systemdialog + │   │   │   │   └── SystemDialog.qml + │   │   │   └── metadata.json + │   │   ├── org.fedoraproject.fedoralight.desktop + │   │   │   ├── contents + │   │   │   │   ├── defaults + │   │   │   │   ├── layouts + │   │   │   │   │   └── org.kde.plasma.desktop-layout.js + │   │   │   │   ├── logout + │   │   │   │   │   ├── LogoutButton.qml + │   │   │   │   │   ├── Logout.qml + │   │   │   │   │   └── timer.js + │   │   │   │   ├── previews + │   │   │   │   │   ├── fullscreenpreview.jpg + │   │   │   │   │   ├── lockscreen.png + │   │   │   │   │   ├── preview.png + │   │   │   │   │   └── splash.png + │   │   │   │   ├── splash + │   │   │   │   │   ├── images + │   │   │   │   │   │   ├── busywidget.svgz + │   │   │   │   │   │   ├── kde.svgz + │   │   │   │   │   │   └── plasma.svgz + │   │   │   │   │   └── Splash.qml + │   │   │   │   └── systemdialog + │   │   │   │   └── SystemDialog.qml + │   │   │   └── metadata.json + │   │   ├── org.kde.breezedark.desktop + │   │   │   ├── contents + │   │   │   │   ├── defaults + │   │   │   │   ├── layouts + │   │   │   │   │   └── org.kde.plasma.desktop-layout.js + │   │   │   │   └── previews + │   │   │   │   ├── fullscreenpreview.jpg + │   │   │   │   └── preview.png + │   │   │   └── metadata.json + │   │   ├── org.kde.breeze.desktop + │   │   │   ├── contents + │   │   │   │   ├── defaults + │   │   │   │   ├── layouts + │   │   │   │   │   └── org.kde.plasma.desktop-layout.js + │   │   │   │   ├── logout + │   │   │   │   │   ├── LogoutButton.qml + │   │   │   │   │   ├── Logout.qml + │   │   │   │   │   └── timer.js + │   │   │   │   ├── previews + │   │   │   │   │   ├── fullscreenpreview.jpg + │   │   │   │   │   ├── lockscreen.png + │   │   │   │   │   ├── preview.png + │   │   │   │   │   └── splash.png + │   │   │   │   ├── splash + │   │   │   │   │   ├── images + │   │   │   │   │   │   ├── busywidget.svgz + │   │   │   │   │   │   ├── kde.svgz + │   │   │   │   │   │   └── plasma.svgz + │   │   │   │   │   └── Splash.qml + │   │   │   │   └── systemdialog + │   │   │   │   └── SystemDialog.qml + │   │   │   └── metadata.json + │   │   └── org.kde.breezetwilight.desktop + │   │   ├── contents + │   │   │   ├── defaults + │   │   │   ├── layouts + │   │   │   │   └── org.kde.plasma.desktop-layout.js + │   │   │   └── previews + │   │   │   ├── fullscreenpreview.jpg + │   │   │   └── preview.png + │   │   └── metadata.json + │   ├── plasmoids + │   │   ├── org.kde.plasma.systemmonitor + │   │   │   ├── contents + │   │   │   │   ├── config + │   │   │   │   │   ├── config.qml + │   │   │   │   │   └── main.xml + │   │   │   │   └── ui + │   │   │   │   ├── CompactRepresentation.qml + │   │   │   │   ├── config + │   │   │   │   │   ├── ConfigAppearance.qml + │   │   │   │   │   ├── ConfigSensors.qml + │   │   │   │   │   └── FaceDetails.qml + │   │   │   │   ├── FullRepresentation.qml + │   │   │   │   └── main.qml + │   │   │   └── metadata.json + │   │   ├── org.kde.plasma.systemmonitor.cpu + │   │   │   ├── contents + │   │   │   │   └── config + │   │   │   │   └── faceproperties + │   │   │   └── metadata.json + │   │   ├── org.kde.plasma.systemmonitor.cpucore + │   │   │   ├── contents + │   │   │   │   └── config + │   │   │   │   └── faceproperties + │   │   │   └── metadata.json + │   │   ├── org.kde.plasma.systemmonitor.diskactivity + │   │   │   ├── contents + │   │   │   │   └── config + │   │   │   │   └── faceproperties + │   │   │   └── metadata.json + │   │   ├── org.kde.plasma.systemmonitor.diskusage + │   │   │   ├── contents + │   │   │   │   └── config + │   │   │   │   └── faceproperties + │   │   │   └── metadata.json + │   │   ├── org.kde.plasma.systemmonitor.memory + │   │   │   ├── contents + │   │   │   │   └── config + │   │   │   │   └── faceproperties + │   │   │   └── metadata.json + │   │   └── org.kde.plasma.systemmonitor.net + │   │   ├── contents + │   │   │   └── config + │   │   │   └── faceproperties + │   │   └── metadata.json + │   └── wallpapers + │   ├── org.kde.color + │   │   ├── contents + │   │   │   ├── config + │   │   │   │   └── main.xml + │   │   │   └── ui + │   │   │   ├── config.qml + │   │   │   └── main.qml + │   │   └── metadata.json + │   ├── org.kde.image + │   │   ├── contents + │   │   │   ├── config + │   │   │   │   └── main.xml + │   │   │   └── ui + │   │   │   ├── AddFileDialog.qml + │   │   │   ├── config.qml + │   │   │   ├── ImageStackView.qml + │   │   │   ├── main.qml + │   │   │   ├── mediacomponent + │   │   │   │   ├── AnimatedImageComponent.qml + │   │   │   │   ├── BaseMediaComponent.qml + │   │   │   │   ├── BlurComponent.qml + │   │   │   │   ├── DayNightComponent.qml + │   │   │   │   ├── DayNightImage.qml + │   │   │   │   ├── DayNightView.qml + │   │   │   │   └── StaticImageComponent.qml + │   │   │   ├── ThumbnailsComponent.qml + │   │   │   └── WallpaperDelegate.qml + │   │   └── metadata.json + │   └── org.kde.slideshow + │   ├── contents + │   │   ├── config + │   │   │   └── main.xml + │   │   └── ui + │   │   ├── AddFileDialog.qml + │   │   ├── config.qml + │   │   ├── ImageStackView.qml + │   │   ├── main.qml + │   │   ├── mediacomponent + │   │   │   ├── AnimatedImageComponent.qml + │   │   │   ├── BaseMediaComponent.qml + │   │   │   ├── BlurComponent.qml + │   │   │   ├── DayNightComponent.qml + │   │   │   ├── DayNightImage.qml + │   │   │   ├── DayNightView.qml + │   │   │   └── StaticImageComponent.qml + │   │   ├── SlideshowComponent.qml + │   │   ├── ThumbnailsComponent.qml + │   │   └── WallpaperDelegate.qml + │   └── metadata.json + ├── polkit-1 + │   └── actions + │   └── org.kde.fontinst.policy + ├── qlogging-categories6 + │   ├── batterycontrol.categories + │   ├── kcm_regionandlang.categories + │   ├── kcmusers.categories + │   ├── klipper.categories + │   ├── libnotificationmanager.categories + │   └── plasma-workspace.categories + ├── solid + │   └── actions + │   └── openWithFileManager.desktop + ├── timezonefiles + │   └── timezones.json + ├── wayland-sessions + │   └── plasma.desktop + ├── xdg-desktop-portal + │   └── kde-portals.conf + ├── xsessions + │   └── plasmax11.desktop + └── zsh + └── site-functions + ├── _krunner + └── _plasmashell + +663 directories, 6177 files