From 457c2a2018c79da46266ec69469ae8200431941b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Sat, 31 Oct 2020 00:06:37 +0100 Subject: Add 'shiftdown' tool --- shiftdown/shiftdown.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 shiftdown/shiftdown.c (limited to 'shiftdown/shiftdown.c') diff --git a/shiftdown/shiftdown.c b/shiftdown/shiftdown.c new file mode 100644 index 0000000..bfd0a02 --- /dev/null +++ b/shiftdown/shiftdown.c @@ -0,0 +1,12 @@ +#include +#include +#include +#include + +int main() { + char shift_state; + shift_state = 6; + if (ioctl(0, TIOCLINUX, &shift_state) == -1) + err(1, "could not get shift state"); + return !shift_state; +} -- cgit v1.2.3