https://github.com/anhsirk0/vertex
Hotcorners and Hotedges for X11
https://github.com/anhsirk0/vertex
Last synced: 3 months ago
JSON representation
Hotcorners and Hotedges for X11
- Host: GitHub
- URL: https://github.com/anhsirk0/vertex
- Owner: anhsirk0
- Created: 2024-08-11T06:47:21.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-08-13T05:10:40.000Z (10 months ago)
- Last Synced: 2025-01-18T13:26:42.776Z (5 months ago)
- Language: Nim
- Size: 139 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
* Vertex - Hot corners/edges for X11
+ Git repo on Codeberg:
- Mirrors:
+ GitHub:* Installation
#+BEGIN_SRC shell
git clone https://codeberg.org/anhsirk0/vertex --depth=1
#+END_SRC
#+BEGIN_SRC shell
cd vertex
#+END_SRC
#+BEGIN_SRC shell
nimble build
#+END_SRC
#+BEGIN_SRC shell
./vertex
#+END_SRC
* Configuration [~/.config/vertex/config.toml]
#+BEGIN_SRC toml
check_interval = 200
bounce = 10
edge_offset = 10[corner]
reactivation = 2000 # 2sec
top_left = "notify-send corner_top_left"
top_right = "notify-send corner_top_right"
bottom_left = "notify-send corner_bottom_left"
bottom_right = "notify-send corner_bottom_right"[edge]
reactivation = 1000 # 1sec
top_left = "notify-send edge_top_left"
top_right = "notify-send edge_top_right"
bottom_left = "notify-send edge_bottom_left"
bottom_right = "notify-send edge_bottom_right"
left_top = "notify-send edge_left_top"
right_top = "notify-send edge_right_top"
left_bottom = "notify-send edge_left_bottom"
right_bottom = "notify-send edge_right_bottom"
#+END_SRC