Active edges for wayland.
Project description
wledges
Active edges for Wayland compositors.
You might also be interested in wlosd which provides on-screen display for Wayland compositors.
Supported Desktops
Tested on Sway, but should work on all Wayland compositors that support the Layer Shell protocol. More precisely, it should work on all desktops supported by gtk4-layer-shell.
Installation
Dependencies:
Debian/Ubuntu:
sudo apt install libgirepository-1.0-dev gcc libcairo2-dev pkg-config python3-dev gir1.2-gtk-4.0 libgtk4-layer-shell-dev
pip install pygobject
Fedora:
sudo dnf install gcc gobject-introspection-devel cairo-gobject-devel pkg-config python3-devel gtk4 gtk4-layer-shell-devel
pip install pygobject
Arch Linux:
sudo pacman -S python cairo pkgconf gobject-introspection gtk4 gcc gtk4-layer-shell
pip install pygobject
For other distributions, you will need:
- Python 3: instructions
- pygobject: instructions
- gtk4-layer-shell: instructions
Install wledges:
From PyPi:
pip install wledges
Or clone this repository.
Usage
wledges allocates for each screen edge, and corner, specified on the command line, a rectangular area of the specified size. Every time the mouse cursor interacts with those areas (moves in, clicked on, scrolled on) wledges prints a line to standard output. The line indicates which edge or corner was interacted with, and what was the interaction.
For example, running the following command in a terminal allocates a 1 pixel active line, 30% the length of the screen, at the top (centre) of the DP-1 output, and a 1 by 1 active pixel at the top-left corner of the screen.
wledges --top 30%x1 --top-left 1x1 DP-1
The command displays a slightly bigger rectangle (30%x50) to indicate that this
edge is active.
The --css command line argument can be used to pass a GTK4 style sheet (see
style.css for example,
and overview and
properties for documentation),
that can be used to style the indicator, to make it less obtrusive.
In any case, only input events from the (smaller) active area are captured by
wledges; other events are sent to the window below.
Moving the mouse cursor to the very top of the screen (being inside the displayed 30%x50 rectangle is not enough, the cursor must be in the 30%x1 active area) first prints (after a delay of 0.75 seconds) "top timeout", and then repeatedly (every 0.75 second) "top repeat", until the cursor is moved out of the rectangle. Clicking the mouse left button while the cursor is in the active rectangle prints "top press-1", and similarly for the other mouse buttons. Scrolling the mouse wheel prints "top scroll-DIRECTION" where DIRECTION is one of up, down, left, right. Clicking or scrolling the mouse also cancels the timeout and repeat lines, until the cursor moves out of the active area, and comes back in.
If you are using Sway, the following Bash script can be
used to switch workspaces when the mouse cursor touches the left or right edges
of the screen (change the first line to match your output, see swaymsg -t get_outputs for a list of outputs):
output='DP-1'
while IFS=' ' read -r line; do
case "${line}" in
left\ timeout | left\ repeat)
swaymsg "focus output ${output} ; workspace prev_on_output"
;;
right\ timeout | right\ repeat)
swaymsg "focus output ${output} ; workspace next_on_output"
;;
esac
done < <(python -m wledges --left 1x50% --right 1x50% "${output}")
License
MIT, see LICENSE
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file wledges-1b1.tar.gz.
File metadata
- Download URL: wledges-1b1.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc0e6a9178d0e4b1bcae1d56eaafe26c37cd6300b8aa590d00d3674a8e370545
|
|
| MD5 |
5f850a8e197c7619ec1bbab67368ba20
|
|
| BLAKE2b-256 |
5344ee0c8edc8d55310f359f0f5d3f2a208173f026dc26811bcf74878f1eb069
|
File details
Details for the file wledges-1b1-py3-none-any.whl.
File metadata
- Download URL: wledges-1b1-py3-none-any.whl
- Upload date:
- Size: 8.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b90cd6ebafc8675eb49b43b66d724c847e23461b6666fe97879a8c400d54dee1
|
|
| MD5 |
6f98dca9a2d08b6a35f0742db486b0bc
|
|
| BLAKE2b-256 |
c36ce0bbf0c04b51c8d9a1a095e9455e18eef70873dbaefa90ca88b5af893873
|