7 lines
165 B
Plaintext
7 lines
165 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# https://wiki.archlinux.org/index.php/Keyboard_input#Using_evtest
|
||
|
|
||
|
xev | awk -F'[ )]+' '/^KeyPress/ { a[NR+2] } NR in a { printf "%-3s %s\n", $5, $8 }'
|
||
|
|