-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Left click on the wallpaper in KDE6 restores the KDE wallpaper #393
Comments
I am also seeing this issue with swww 0.9.5 and plasmashell 6.3. Is there any way of collecting any more useful data to help with the debugging process? |
The best way would probably be making a debug build and running that. |
Currently not in use due to issue LGFae/swww#393
Hi, I have the same problem for the left click, but sometime also for the right click. For fix (hack) it, in first place i think to restart every time the daemon before change the display, and set the kde plasma wallpaper same as the swww so when i click i show the same wallpaper and i don't notice the "bug", but sometime when i restart swww it show a little animation of growing and isn't beautiful. My script for set KDE wallpaper same of swww. #!/bin/bash
IMAGE=$(find /home/USERNAME/Immagini/wallpaper -maxdepth 1 -type f | shuf -n 1)
TRANSITION=("any" "wave" "outer" "wipe" )
RI=$((RANDOM % ${#TRANSITION[@]}))
RI="${TRANSITION[$RI]}"
swww img --transition-type $RI $IMAGE
qdbus org.kde.plasmashell /PlasmaShell org.kde.PlasmaShell.evaluateScript "
desktops().forEach((d) => {
d.currentConfigGroup = [
'Wallpaper',
'org.kde.image',
'General',
]
d.writeConfig('Image', '$IMAGE')
d.reloadConfig()
})
" sys info: Packages: HW: |
I think i fixed it in the file daemon/wallpaper.rs i changed the layer from |
As explained, the wallpaper is set with swww (I have 3 screens so 3 wallpapers set with swww).
Setting the wallpaper works fine.
But if I left click on the desktop, the default KDE Plasma wallpaper is restored. Restarting the daemon and re-applying the wallpaper restores the sww wallpapers.
Any way around that ?
Thanks !
The text was updated successfully, but these errors were encountered: