** Description changed:

  System settings- desktop effects. Changing "Peek at Desktop animation"
  Makes animation not show and freeze for 10+ seconds until showing
  desktop.
+ 
+ My config with bugs /home/user/.config/kwinrc
+ [$Version]
+ 
update_info=kwin.upd:replace-scalein-with-scale,kwin.upd:port-minimizeanimation-effect-to-js,kwin.upd:port-scale-effect-to-js,kwin.upd:port-dimscreen-effect-to-js,kwin.upd:auto-bordersize,kwin.upd:animation-speed,kwin.upd:desktop-grid-click-behavior,kwin.upd:no-swap-encourage,kwin.upd:make-translucency-effect-disabled-by-default,kwin.upd:remove-flip-switch-effect,kwin.upd:remove-cover-switch-effect,kwin.upd:remove-cubeslide-effect,kwin.upd:remove-xrender-backend,kwin.upd:enable-scale-effect-by-default,kwin.upd:overview-group-plugin-id,kwin.upd:animation-speed-cleanup,kwin.upd:replace-cascaded-zerocornered
+ 
+ [Compositing]
+ OpenGLIsUnsafe=false
+ 
+ [Desktops]
+ Id_1=94284727-31ef-4e4e-bcdc-32bd70eef688
+ Id_2=6aacd5ce-f6da-488f-9e6d-ca2a3d5815a8
+ Name_2=2
+ Number=2
+ Rows=2
+ 
+ [Effect-desktopgrid]
+ LayoutMode=1
+ 
+ [Effect-magnifier]
+ Height=500
+ Width=500
+ 
+ [Effect-presentwindows]
+ LayoutMode=1
+ 
+ [Effect-zoom]
+ EnableFocusTracking=true
+ EnableTextCaretTracking=true
+ 
+ [MouseBindings]
+ CommandTitlebarWheel=Change Opacity
+ 
+ [NightColor]
+ Active=true
+ 
+ [Plugins]
+ diminactiveEnabled=true
+ fallapartEnabled=true
+ kwin4_effect_dimscreenEnabled=true
+ kwin4_effect_squashEnabled=false
+ kwin4_effect_translucencyEnabled=true
+ magiclampEnabled=true
+ mousemarkEnabled=true
+ slidebackEnabled=true
+ thumbnailasideEnabled=true
+ touchpointsEnabled=true
+ wobblywindowsEnabled=true
+ 
+ [SubSession: 67240187-0a5f-4414-9458-109b213e47fb]
+ active=-1
+ count=0
+ 
+ [TabBox]
+ LayoutName=coverswitch
+ 
+ [Tiling]
+ padding=4
+ 
+ [Tiling][213a9620-187e-58a6-b80b-85d8fb95dfce]
+ 
tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.15000000000000002},{"width":0.5999999999999999}]}
+ 
+ [Tiling][5b7a5ba4-43cc-5910-8e98-f358f9d54b43]
+ 
tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"width":0.25}]}
+ 
+ [Tiling][98dd0166-3c7d-5255-9b34-1ab5dbbbfacc]
+ 
tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"width":0.25}]}
+ 
+ 
+ -- Solutions ?
+ 
+ If your kwinrc configuration is causing bugs or instability, it’s likely
+ due to version mismatches, deprecated effects, or conflicting settings.
+ Let’s break down the potential issues in your config:
+ 
+ 1. Version Mismatch ($Version Section)
+ Your [$Version] section includes many kwin.upd entries, which are 
auto-generated migration scripts from older KDE Plasma versions. These indicate 
your config has been upgraded over time, but if you copied this to a system 
with a different Plasma version, some settings may no longer work. For example:
+ 
+ kwin.upd:remove-flip-switch-effect suggests the "Flip Switch" effect was
+ removed.
+ 
+ kwin.upd:enable-scale-effect-by-default implies newer defaults conflict
+ with your setup.
+ 
+ Fix: Ensure both systems use the exact same Plasma/KWin version. If not,
+ reset the config and reconfigure manually.
+ 
+ 2. Deprecated/Removed Effects
+ Your [Plugins] section enables effects that may no longer exist:
+ 
+ kwin4_effect_dimscreenEnabled=true: The "Dim Screen" effect was replaced
+ by "Dim Inactive" in newer Plasma versions.
+ 
+ kwin4_effect_translucencyEnabled=true: Translucency is now part of the
+ "Magic Lamp" or other effects.
+ 
+ fallapartEnabled=true: The "Fall Apart" effect was deprecated in KDE
+ Plasma 5.25+.
+ 
+ Fix: Disable deprecated plugins:
+ 
+ ini
+ [Plugins]
+ fallapartEnabled=false
+ kwin4_effect_dimscreenEnabled=false
+ kwin4_effect_translucencyEnabled=false
+ 3. Conflicting Desktop Effects
+ Some effects clash with others or your hardware:
+ 
+ wobblywindowsEnabled=true + magiclampEnabled=true can cause rendering
+ issues on older GPUs.
+ 
+ OpenGLIsUnsafe=false in [Compositing] forces OpenGL, which might not
+ work on Wayland or with NVIDIA drivers.
+ 
+ Fix:
+ 
+ Try switching to XRender (for NVIDIA) or update graphics drivers:
+ 
+ ini
+ [Compositing]
+ OpenGLIsUnsafe=true
+ Backend=XRender
+ Disable GPU-heavy effects like wobblywindows.
+ 
+ 4. Tiling and Layout Issues
+ Your [Tiling] sections define custom layouts (e.g., horizontal splits). If 
the KWin Tiling plugin is missing or misconfigured, this will crash KWin.
+ 
+ Fix:
+ 
+ Install the kwin-tiling package (if missing).
+ 
+ Reset tiling configs or use Plasma’s GUI to reconfigure layouts.
+ 
+ 5. TabBox Conflict
+ Your [TabBox] uses LayoutName=coverswitch, but 
kwin.upd:remove-cover-switch-effect in $Version indicates this effect was 
removed.
+ 
+ Fix: Change to a supported layout (e.g., thumbnails or compact):
+ 
+ ini
+ [TabBox]
+ LayoutName=thumbnails
+ Steps to Resolve:
+ Backup your current config:
+ 
+ bash
+ cp ~/.config/kwinrc ~/.config/kwinrc.backup
+ Reset problematic sections:
+ 
+ Delete the [Plugins], [TabBox], and [Tiling] sections from kwinrc and
+ reconfigure them via System Settings > Workspace Behavior.
+ 
+ Test with a clean config:
+ 
+ bash
+ mv ~/.config/kwinrc ~/.config/kwinrc.old && kwin_x11 --replace
+ Log out/in to generate a fresh kwinrc.
+ 
+ Re-enable effects one by one to isolate the buggy plugin.
+ 
+ Final Notes:
+ Avoid copying configs across major Plasma versions (e.g., Plasma 5.24 → 5.27).
+ 
+ Use KDE’s built-in Backup Settings tool (System Settings > Workspace >
+ Backup).
+ 
+ If the issue persists, share the exact bug symptoms (e.g., crashes,
+ glitches) for more targeted help! 🛠️
+ 
  
  ProblemType: Bug
  DistroRelease: Ubuntu 24.04
  Package: systemsettings 4:5.27.11-0ubuntu2
  ProcVersionSignature: Ubuntu 6.8.0-59.61-generic 6.8.12
  Uname: Linux 6.8.0-59-generic x86_64
  ApportVersion: 2.28.1-0ubuntu3.5
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: KDE
  Date: Sat May 17 03:48:57 2025
  ExecutablePath: /usr/bin/systemsettings
  InstallationDate: Installed on 2024-01-05 (498 days ago)
  InstallationMedia: Kubuntu 22.04.3 LTS "Jammy Jellyfish" - Release amd64 
(20230807.1)
  RebootRequiredPkgs: Error: path contained symlinks.
  SourcePackage: systemsettings
  UpgradeStatus: Upgraded to noble on 2024-08-30 (259 days ago)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2111136

Title:
  System settings- desktop effects. Changing "Peek at Desktop animation"
  Makes animation not show and freeze for 10+ seconds until showing
  desktop.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemsettings/+bug/2111136/+subscriptions


-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to