Justin to Linux@lemmy.mlEnglish • 8 months agoThis week in KDE: looking forward towards Plasma 6.1pointieststick.commessage-square15arrow-up1169arrow-down16
arrow-up1163arrow-down1external-linkThis week in KDE: looking forward towards Plasma 6.1pointieststick.comJustin to Linux@lemmy.mlEnglish • 8 months agomessage-square15
minus-square@ISOmorph@feddit.delinkfedilink2•8 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-square@deliriousn0mad@feddit.itlinkfedilink1•8 months agoThank you, I didn’t know about ydotool, I’ll get it working on openSuse
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