https://github.com/leinnan/lwa-hot-corners
https://github.com/leinnan/lwa-hot-corners
cpp cpp11 linux linux-app
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/leinnan/lwa-hot-corners
- Owner: Leinnan
- License: gpl-3.0
- Created: 2017-01-05T21:39:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-09-25T16:17:31.000Z (over 5 years ago)
- Last Synced: 2025-03-25T06:33:08.905Z (about 1 year ago)
- Topics: cpp, cpp11, linux, linux-app
- Language: C++
- Size: 39.1 KB
- Stars: 27
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lwa-hot-corners
Pretty simple hot corners implementation for X server written in modern C++.
# build-instructions
Open terminal in repository folder
```build-instructions
make
sudo make install
```
## Config file
When you run the program you need to pass path to your config file. Config file can contain information about command to execute for corners, update interval(in ms) and hold duration(in ms) before command is executed.
If you do not want to have command for corner just skip line in config.
Example file:
```
top_left_command=geany
top_right_command=twm-session-logout
bottom_left_command=firefox
bottom_right_command=orage
disable_on_fullscreen=false
hold_duration=500
update_interval=200
```