You are not logged in.
Pages: 1
a tool i would find very useful is one that can perform scrolling up or down by just one pixel. as a key association or a panel item with up and down buttons would both be usable.
somewhat often i want to compare content of different screens, either by switching user or switching workspaces. but, too often in these cases, the common content will not line up to the same pixel.
up and down are the most needed but left and right can have their uses. an example key binding could be Ctrl+Shift+an_arrow_key_for_direction.
Offline
Here is a script using xdotool:
#!/bin/bash
case $1 in
up) xdotool mousemove_relative -- 0 -1 ;;
down) xdotool mousemove_relative 0 1 ;;
left) xdotool mousemove_relative -- -1 0 ;;
right) xdotool mousemove_relative 1 0 ;;
*) echo "usage: $0 [up|down|left|right]" ;;
esac
Call it using a parameter that is one of "up", "down", "left", or "right".
Assign it to launchers or keyboard shortcuts.
Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki | Community | Contribute ---
Offline
what is it going to move? where the mouse pointer is? i want to scroll the selected object.
Offline
a tool i would find very useful is one that can perform scrolling up or down by just one pixel.
I assumed you meant the mouse. Can you give an example of a scrolled object scrolling by one pixel? Are you talking about a specific program?
Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki | Community | Contribute ---
Offline
I think Skaperen means precise drag and drop.
Offline
It would work in the same manner. Grab the object then use the script (or keyboard shortcuts) to move the mouse incrementally.
Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki | Community | Contribute ---
Offline
i mean scrolling the current page of whatever. like what the mouse roller does.
Offline
even in terminal the mouse scroll jumps one than one line unless the window is quite small.
Offline
Pages: 1
[ Generated in 0.009 seconds, 7 queries executed - Memory usage: 542.23 KiB (Peak: 543.51 KiB) ]