| Summary: | Scrolling no longer works on desktop | ||
|---|---|---|---|
| Product: | [Plasma] plasmashell | Reporter: | shawn <shitm8e> |
| Component: | general | Assignee: | David Edmundson <kde> |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | normal | CC: | bugseforuns, nate, plasma-bugs-null |
| Priority: | NOR | ||
| Version First Reported In: | 5.18.4 | ||
| Target Milestone: | 1.0 | ||
| Platform: | Manjaro | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
shawn
2020-04-11 14:23:49 UTC
*** This bug has been marked as a duplicate of bug 419867 *** I created a temporary workaround with xbindkeys and xdotool.
In ~/.xbindkeysrc I added the lines:
"bash /home/username/scroll_down.sh"
b:5
"bash /home/username/scroll_up.sh"
b:4
The contents of the shell files are:
#!/bin/bash
eval $(xdotool getmouselocation --shell)
echo $WINDOW
name=$(xdotool getwindowname $WINDOW)
base="Desktop — Plasma"
if [ "$name" = "$base" ]; then
echo succ
qdbus org.kde.KWin /KWin nextDesktop
fi
With "nextDesktop" in the scroll_down/sh file and "previousDesktop" in the scroll_up.sh file.
The "qdbus" command could also be replaces with "xdotool set_desktop"
This assumes that you have two desktops stacked vertically.
Also there is no wrap around scrolling.
forgot to remove unnecessary "echo $WINDOW" and "echo succ" *** This bug has been marked as a duplicate of bug 419878 *** |