Justin@lemmy.kde.social to Linux@lemmy.mlEnglish · 7 months agoThis week in KDE: looking forward towards Plasma 6.1pointieststick.comexternal-linkmessage-square14fedilinkarrow-up1166arrow-down16
arrow-up1160arrow-down1external-linkThis week in KDE: looking forward towards Plasma 6.1pointieststick.comJustin@lemmy.kde.social to Linux@lemmy.mlEnglish · 7 months agomessage-square14fedilink
minus-squareunknowing8343@discuss.tchncs.delinkfedilinkarrow-up9·7 months agoI don’t mean to sound like an a-hole, but when will the KDEConnect’s ever-appearing “accept” pop-up when remote-mousing work properly?
minus-squareISOmorph@feddit.delinkfedilinkarrow-up9·7 months agoThere’s still a bunch of little bugs in KDE6, they’ll get ironed out over time. For the KDE connect bug I use a ydotool command to emulate an enter key press to accept the remote command access from my bed.
minus-squaredeliriousn0mad@feddit.itlinkfedilinkarrow-up1·7 months agoThat’s a great workaround, could you share the command?
minus-squareISOmorph@feddit.delinkfedilinkarrow-up2·7 months agoThe command itself isn’t complex: YDOTOOL_SOCKET="$HOME/.ydotool_socket" ydotool key 28:1 28:0 The hard part is getting ydotool to run on boot for your user (no sudo). I had to create a bash script to run on login with the following line: ydotoold --socket-path="$HOME/.ydotool_socket" --socket-own="$(id -u):$(id -g)" It’s a bit hacky but it works.
minus-squaredeliriousn0mad@feddit.itlinkfedilinkarrow-up1·7 months agoThank you, I didn’t know about ydotool, I’ll get it working on openSuse
I don’t mean to sound like an a-hole, but when will the KDEConnect’s ever-appearing “accept” pop-up when remote-mousing work properly?
There’s still a bunch of little bugs in KDE6, they’ll get ironed out over time. For the KDE connect bug I use a ydotool command to emulate an enter key press to accept the remote command access from my bed.
That’s a great workaround, could you share the command?
The command itself isn’t complex:
YDOTOOL_SOCKET="$HOME/.ydotool_socket" ydotool key 28:1 28:0
The hard part is getting ydotool to run on boot for your user (no sudo). I had to create a bash script to run on login with the following line:
ydotoold --socket-path="$HOME/.ydotool_socket" --socket-own="$(id -u):$(id -g)"
It’s a bit hacky but it works.
Thank you, I didn’t know about ydotool, I’ll get it working on openSuse