Enables universal autoscroll
Project description
Information
Enables universal autoscroll.
Pretty pointless since on Linux you can achieve it using config files (see the example) and for Windows there are usually drivers.
Supports only mouse buttons.
The package requires pynput
to work, to display an icon you need to install pyside6
(qt6
package).
pip install autoscroll pyside6
built-in icon:
Usage
By default, the icon is disabled, to enable it pass --icon-enable
.
You can pass file contents as command line arguments using @path/to/the/file
syntax.
Arguments in that case can be placed wherever - on one line, on several lines.
If you want to dynamically pass runtime arguments (without restarting the process), you can use --config
options for it.
Once you press --buttons-start
, you can scroll vertically or horizontally just by moving your mouse untill you press --buttons-end
.
If --buttons-hold
is set, the srolling ends once you release --buttons-start
.
Once --buttons-start
is pressed, the scroll thread starts looping.
Every loop consists of sleeping for an interval, then scrolling for either 0, 1, or -1 pixels on both axis towards the starting point.
Starting point is the point where --buttons-start
was pressed.
Sleep interval is recalculated on every mouse move as such:
100 / (--scrolling-acceleration * max(distance) + --scrolling-speed)
If --scrolling-acceleration
is not 0, the speed of scrolling will be faster
the farther away you are from the starting point.
If --scrolling-acceleration
is 0, the speed of scrolling will be constant.
examples
start from the package
python3 -m venv venv
. venv/bin/activate
pip install autoscroll pyside6
autoscroll
start from the repository
python3 -m venv venv
. venv/bin/activate
git clone https://github.com/kongrentian/autoscroll.git
pip install -r autoscroll/requirements.txt
python3 -m autoscroll
start with command line options
autoscroll --buttons-start 1 --debug-click --icon-disable
start with the configuration file passed once
autoscroll --icon-enable @config.txt
If config.txt
is defined like this, its contents will be used as command line arguments - they will be loaded only once.
Arguments can be placed wherever - on one line, on several lines.
For example,
--buttons-start 1
--buttons-hold --debug-click
start with the process listening to the changes in the configuration file
autoscroll --config-enable --config-path config.txt
If config.txt is defined like this, the process will listen for changes in that
file and update itself.
Arguments can be placed wherever - on one line, on several lines
The file is checked for changess every --config-interval
.
For example:
--buttons-start 1 --buttons-hold
--debug_click
--help output
usage: linux-xorg-autoscroll [-h] [-ss SCROLLING_SPEED] [-sd SCROLLING_DEAD_AREA]
[-sa SCROLLING_ACCELERATION] [-bh] [-bs BUTTONS_START] [-be BUTTONS_END]
[-ce] [-cp CONFIG_PATH] [-ci CONFIG_INTERVAL] [-ie] [-ip ICON_PATH]
[-is ICON_SIZE] [-df] [-dc] [-ds] [-di]
Enables universal autoscroll.
Pretty pointless since on Linux you can achieve it using config files and for Windows there are usually drivers.
Supports only mouse buttons.
The package requires 'pynput' to work, to display an icon you need to install 'pyside6' ('qt6' package).
'pip install autoscroll pyside6'
By default, the icon is disabled, to enable it pass '--icon-enable'.
You can pass file contents as command line arguments using '@path/to/the/file' syntax.
Arguments in that case can be placed wherever - on one line, on several lines.
If you want to dynamically pass arguments without restarting the process you can use '--config' options for it.
Once you press '--buttons-start', you can scroll vertically or horizontally just by moving your mouse untill you press '--buttons-end'.
If '--buttons-hold' is set, the srolling ends once you release '--buttons-start'.
You can change arguments on runtime by enabling a config file, you can do so by passing '--config-enable'.
Once '--buttons-start' is pressed, the scroll thread starts looping.
Every loop consists of sleeping for an interval, then scrolling for either 0, 1, or -1 pixels on both axis towards the starting point.
Starting point is the point where '--buttons-start' was pressed.
Sleep interval is recalculated on every mouse move as such:
100 / ('--scrolling-acceleration' * max(distance) + '--scrolling-speed')
If '--scrolling-acceleration' is not 0, the speed of scrolling will be faster
the farther away you are from the starting point.
If '--scrolling-acceleration' is 0, the speed of the scrolling will be constant.
options:
-h, --help show this help message and exit
scrolling:
-ss, --scrolling-speed int
constant part of the scrolling speed
[default: 300]
-sd, --scrolling-dead-area int
size of the square area aroung the starting point where scrolling will stop, in
pixels
[default: 50]
-sa, --scrolling-acceleration int
dynamic part of the scrolling speed, depends on the distance from the point
where the scrolling started, can be set to 0
[default: 10]
buttons:
-bh, --buttons-hold if set, the scrolling will end once you release --buttons-start
-bs, --buttons-start int
button that starts the scrolling
[default: 2]
-be, --buttons-end int
button that ends the scrolling
[default: --buttons-start]
config:
-ce, --config-enable if set, arguments from the configuration file on --config-path will be loaded
every --config-interval
-cp, --config-path str
path to the configuration file
[default: /home/kongrentian/.config/autoscroll/config.txt]
-ci, --config-interval int
how often the config file should be checked for changes, in seconds
[default: 5]
icon:
-ie, --icon-enable if set, the icon will be enabled
-ip, --icon-path str path to the icon
[default: resources/img/icon.svg]
-is, --icon-size int size of the icon, in pixels
[default: 30]
debug:
-df, --debug-file if set, every time the config file is parsed, information will be printed to
stdout
-dc, --debug-click if set, click info will be printed to stdout
-ds, --debug-scroll if set, scroll info will be printed to stdout
-di, --debug-initial if set, startup configuration will be printed to stdout
xorg-server config example
# https://wiki.archlinux.org/title/Logitech_Marble_Mouse#Configuration_file
# https://help.ubuntu.com/community/Logitech_Marblemouse_USB
# https://bbs.archlinux.org/viewtopic.php?id=261138
# path - /etc/X11/xorg.conf.d/40-trackball.conf
Section "InputClass"
Identifier "Marble Mouse"
MatchProduct "Logitech USB Trackball"
Driver "libinput"
Option "ScrollMethod" "button"
Option "ScrollButton" "1"
Option "MiddleEmulation" "true"
Option "ButtonMapping" "3 2 1 4 5 6 7 9 8"
Option "NaturalScrolling" "true"
EndSection
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file autoscroll-1.0.0.tar.gz
.
File metadata
- Download URL: autoscroll-1.0.0.tar.gz
- Upload date:
- Size: 30.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bbe167aa1733bbc06cddd06f4dd39d5456c7e1328e497638a4e8b84b9c073eb4 |
|
MD5 | 1922a8f8916955652806e063d128aa99 |
|
BLAKE2b-256 | b2492667f1e8af3365bad04528f8f1d47c05639bef9b230102f20c6e9f694d99 |
File details
Details for the file autoscroll-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: autoscroll-1.0.0-py3-none-any.whl
- Upload date:
- Size: 31.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 466afe8c5752c0b0294de8462dc4d7010ecabe0c3988b4496ac817bc432605e6 |
|
MD5 | 2d0345730ba0ffe81400e4861cb1aca2 |
|
BLAKE2b-256 | d6f2a296205f6404177f45239a51fbb5d3db5a72a9238bfc5ea23d9e3c821064 |