this post was submitted on 27 Nov 2025
13 points (100.0% liked)
No Stupid Questions
3455 readers
35 users here now
There is no such thing as a Stupid Question!
Don't be embarrassed of your curiosity; everyone has questions that they may feel uncomfortable asking certain people, so this place gives you a nice area not to be judged about asking it. Everyone here is willing to help.
- ex. How do I change oil
- ex. How to tie shoes
- ex. Can you cry underwater?
Reminder that the rules for lemmy.ca still apply!
Thanks for reading all of this, even if you didn't read all of this, and your eye started somewhere else, have a watermelon slice ๐.
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Not quite a function but a small program:
xdotool, that simulates keyboard and mouse activity. For plenty games xdotool and bash are all you need for an amazing (albeit simple) autoclicker. For example:This you assign the script to a shortcut, press it to turn it on, and Scroll Lock to turn it off.
It gets even better - with
grabc(another small program, that probes the colour of a pixel), you can even make autoclicking scripts that react to changes in the game screen.EDIT: as Tal highlighted,
xdotoolis for X11. It works with Wayland... a bit, most functions are broken. Wayland users are better off usingydotool. Same basic idea, though - you don't need to click it, you can tell your computer to do it for you!Note that xdotool is specific to X11. Ydotool can do some similar things in Wayland.
True - I'll edit my comment to include this info.