mirror of
https://gitlab.com/interception/linux/plugins/caps2esc.git
synced 2025-04-06 06:39:03 +00:00
Compare commits
20 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
6ad0031138 | ||
|
56ea92caa2 | ||
|
4f1abaf937 | ||
|
1d92f46e4e | ||
|
dd7cb3e467 | ||
|
aae8117eeb | ||
|
b99ee5b6be | ||
|
3c0b816499 | ||
|
be414120a2 | ||
|
5cffbf6bb5 | ||
|
9aa9985b0e | ||
|
466062ef00 | ||
|
975bb74284 | ||
|
8bfd57eda2 | ||
|
186b887e7d | ||
|
c738e8783a | ||
|
a062311ffb | ||
|
ac6bbe61c2 | ||
|
12dc2f75c7 | ||
|
3eaf2bddfe |
55
README.md
55
README.md
@ -25,8 +25,8 @@ ESC when pressed alone is quite handy, specially in vi.
|
|||||||
|
|
||||||
## Building
|
## Building
|
||||||
|
|
||||||
```
|
```text
|
||||||
$ git clone git@gitlab.com:interception/linux/plugins/caps2esc.git
|
$ git clone https://gitlab.com/interception/linux/plugins/caps2esc.git
|
||||||
$ cd caps2esc
|
$ cd caps2esc
|
||||||
$ cmake -B build -DCMAKE_BUILD_TYPE=Release
|
$ cmake -B build -DCMAKE_BUILD_TYPE=Release
|
||||||
$ cmake --build build
|
$ cmake --build build
|
||||||
@ -34,10 +34,10 @@ $ cmake --build build
|
|||||||
|
|
||||||
## Execution
|
## Execution
|
||||||
|
|
||||||
```
|
```text
|
||||||
caps2esc - transforming the most useless key ever in the most useful one
|
caps2esc - transforming the most useless key ever in the most useful one
|
||||||
|
|
||||||
usage: caps2esc [-h] [-m mode] [-t delay]
|
usage: caps2esc [-h | [-m mode] [-t delay]]
|
||||||
|
|
||||||
options:
|
options:
|
||||||
-h show this message and exit
|
-h show this message and exit
|
||||||
@ -54,56 +54,67 @@ options:
|
|||||||
```
|
```
|
||||||
|
|
||||||
`caps2esc` is an [_Interception Tools_][interception-tools] plugin. A suggested
|
`caps2esc` is an [_Interception Tools_][interception-tools] plugin. A suggested
|
||||||
`udevmon` job configuration is:
|
`udevmon` job configuration (check the [_Interception Tools_
|
||||||
|
README][interception-tools] for alternatives) is:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
- JOB: intercept -g $DEVNODE | caps2esc | uinput -d $DEVNODE
|
- JOB: intercept -g $DEVNODE | caps2esc | uinput -d $DEVNODE
|
||||||
DEVICE:
|
DEVICE:
|
||||||
EVENTS:
|
EVENTS:
|
||||||
EV_KEY: [KEY_CAPSLOCK, KEY_ESC]
|
EV_KEY: [KEY_CAPSLOCK, KEY_ESC]
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
For more information about the [_Interception Tools_][interception-tools], check
|
For more information about the [_Interception Tools_][interception-tools], check
|
||||||
the project's website.
|
the project's website.
|
||||||
|
|
||||||
## Mouse button support
|
## Mouse/Touchpad Support
|
||||||
|
|
||||||
After _Interception Tools_ 0.3, `caps2esc` can work with mouse clicks. An
|
After _Interception Tools_ 0.3.2, `caps2esc` can observe (or replace) mouse
|
||||||
example configuration taken from my laptop:
|
events. An example configuration taken from my laptop:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
SHELL: [zsh, -c]
|
SHELL: [zsh, -c]
|
||||||
---
|
---
|
||||||
- JOB: mux -c caps2esc
|
- CMD: mux -c caps2esc
|
||||||
- JOB:
|
- JOB: mux -i caps2esc | caps2esc | uinput -c /etc/interception/keyboard.yaml
|
||||||
- intercept -g $DEVNODE | mux -o caps2esc
|
- JOB: intercept -g $DEVNODE | mux -o caps2esc
|
||||||
- mux -i caps2esc | caps2esc | uinput -d $DEVNODE
|
|
||||||
DEVICE:
|
DEVICE:
|
||||||
LINK: /dev/input/by-path/platform-i8042-serio-0-event-kbd
|
LINK: /dev/input/by-path/platform-i8042-serio-0-event-kbd
|
||||||
- JOB:
|
- JOB: intercept $DEVNODE | mux -o caps2esc
|
||||||
- intercept $DEVNODE | mux -o caps2esc
|
|
||||||
DEVICE:
|
DEVICE:
|
||||||
LINK: /dev/input/by-path/platform-i8042-serio-4-event-mouse
|
LINK: /dev/input/by-path/platform-i8042-serio-4-event-mouse
|
||||||
```
|
```
|
||||||
|
|
||||||
For more information on the topic, check the [_Interception Tools_
|
For more information on the topic, check the [_Interception Tools_
|
||||||
README][interception-tools] about usage of the `mux` tool and device specific
|
README][interception-tools] about usage of the `mux` tool and hybrid virtual
|
||||||
setups.
|
device configurations.
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
### Archlinux
|
||||||
|
|
||||||
It's available from [community](https://archlinux.org/packages/community/x86_64/interception-caps2esc/):
|
It's available from [community](https://archlinux.org/packages/community/x86_64/interception-caps2esc/):
|
||||||
|
|
||||||
```
|
```text
|
||||||
$ pacman -S interception-caps2esc
|
$ pacman -S interception-caps2esc
|
||||||
```
|
```
|
||||||
|
|
||||||
I don't use Ubuntu and recommend Archlinux instead, as it provides the AUR, so I
|
### Void Linux
|
||||||
don't maintain PPAs. For more information on Ubuntu/Debian installation check
|
|
||||||
this:
|
|
||||||
|
|
||||||
- <https://askubuntu.com/questions/979359/how-do-i-install-caps2esc>
|
```text
|
||||||
|
$ xbps-install -S caps2esc
|
||||||
|
```
|
||||||
|
|
||||||
|
### Ubuntu ([independent package][ubuntu])
|
||||||
|
|
||||||
|
```text
|
||||||
|
sudo add-apt-repository ppa:deafmute/interception
|
||||||
|
sudo apt install interception-caps2esc
|
||||||
|
```
|
||||||
|
|
||||||
|
<sub>For debian and other derivatives you can download directly at https://launchpad.net/~deafmute/+archive/ubuntu/interception/+packages.</sub>
|
||||||
|
|
||||||
|
[ubuntu]: https://gitlab.com/interception/linux/tools/-/issues/38
|
||||||
|
|
||||||
## Caveats
|
## Caveats
|
||||||
|
|
||||||
|
63
caps2esc.c
63
caps2esc.c
@ -18,20 +18,20 @@ void print_usage(FILE *stream, const char *program) {
|
|||||||
fprintf(stream,
|
fprintf(stream,
|
||||||
"caps2esc - transforming the most useless key ever in the most useful one\n"
|
"caps2esc - transforming the most useless key ever in the most useful one\n"
|
||||||
"\n"
|
"\n"
|
||||||
"usage: %s [-h] [-m mode] [-t delay]\n"
|
"usage: %s [-h | [-m mode] [-t delay]]\n"
|
||||||
"\n"
|
"\n"
|
||||||
"options:\n"
|
"options:\n"
|
||||||
" -h show this message and exit\n"
|
" -h show this message and exit\n"
|
||||||
" -t delay used for key sequences (default: 20000 microseconds)\n"
|
" -t delay used for key sequences (default: 20000 microseconds)\n"
|
||||||
" -m mode 0: default\n"
|
" -m mode 0: default\n"
|
||||||
" - caps as esc/ctrl\n"
|
" - caps as esc/ctrl\n"
|
||||||
" - esc as caps\n"
|
" - esc as caps\n"
|
||||||
" 1: minimal\n"
|
" 1: minimal\n"
|
||||||
" - caps as esc/ctrl\n"
|
" - caps as esc/ctrl\n"
|
||||||
" 2: useful on 60%% layouts\n"
|
" 2: useful on 60%% layouts\n"
|
||||||
" - caps as esc/ctrl\n"
|
" - caps as esc/ctrl\n"
|
||||||
" - esc as grave accent\n"
|
" - esc as grave accent\n"
|
||||||
" - grave accent as caps\n",
|
" - grave accent as caps\n",
|
||||||
program);
|
program);
|
||||||
// clang-format on
|
// clang-format on
|
||||||
}
|
}
|
||||||
@ -46,31 +46,30 @@ void write_event(const struct input_event *event) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void write_event_with_mode(struct input_event *event, int mode) {
|
void write_event_with_mode(struct input_event *event, int mode) {
|
||||||
if (event->type == EV_REL || event->type == EV_ABS)
|
if (event->type == EV_KEY)
|
||||||
return;
|
switch (mode) {
|
||||||
|
case 0:
|
||||||
switch (mode) {
|
if (event->code == KEY_ESC)
|
||||||
case 0:
|
|
||||||
if (event->code == KEY_ESC)
|
|
||||||
event->code = KEY_CAPSLOCK;
|
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
switch (event->code) {
|
|
||||||
case KEY_ESC:
|
|
||||||
event->code = KEY_GRAVE;
|
|
||||||
break;
|
|
||||||
case KEY_GRAVE:
|
|
||||||
event->code = KEY_CAPSLOCK;
|
event->code = KEY_CAPSLOCK;
|
||||||
break;
|
break;
|
||||||
}
|
case 2:
|
||||||
break;
|
switch (event->code) {
|
||||||
}
|
case KEY_ESC:
|
||||||
|
event->code = KEY_GRAVE;
|
||||||
|
break;
|
||||||
|
case KEY_GRAVE:
|
||||||
|
event->code = KEY_CAPSLOCK;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
write_event(event);
|
write_event(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char *argv[]) {
|
int main(int argc, char *argv[]) {
|
||||||
int opt, mode = 0, delay = 20000;
|
int mode = 0, delay = 20000;
|
||||||
while ((opt = getopt(argc, argv, "ht:m:")) != -1) {
|
|
||||||
|
for (int opt; (opt = getopt(argc, argv, "ht:m:")) != -1;) {
|
||||||
switch (opt) {
|
switch (opt) {
|
||||||
case 'h':
|
case 'h':
|
||||||
return print_usage(stdout, argv[0]), EXIT_SUCCESS;
|
return print_usage(stdout, argv[0]), EXIT_SUCCESS;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user