Would you mind sharing your xinit snippit to set cursor location?
BTW my browsing experience with keyboard only is made largely painless by chrome with vimium. You can also select and yank text with this.
#!/bin/bash # Activate Firefox window wmctrl -a "Mozilla Firefox" # Move cursor to specified position xdotool mousemove 250 50 # Send a mouse click (left click) xdotool click --repeat 2 1
Would you mind sharing your xinit snippit to set cursor location?
BTW my browsing experience with keyboard only is made largely painless by chrome with vimium. You can also select and yank text with this.