#include <windows.h>

int main() {
if ( !GetKeyState(VK_CAPITAL) & 1 ) {
printf("caps off");
}
else
printf("caps on");
return 0;
}

但仅限于Windows

如何在Linux中使用gcc做到这一点?
& 1中的GetKeyState(VK_CAPITAL) & 1是什么?

最佳答案

对于基于X11的桌面的最常见情况:

#include <stdio.h>
#include <X11/XKBlib.h>

int main() {
    Display * d = XOpenDisplay((char*)0);

    if (d) {
        unsigned n;

        XkbGetIndicatorState(d, XkbUseCoreKbd, &n);

        printf((n & 1)?"caps on\n":"caps off\n");
    }
}

确保您具有X11开发 header ,并使用以下命令进行编译:
$ gcc -lX11 test.c -o test

从桌面上的控制台窗口运行它:
$ ./test
caps off
$ ./test
caps on

10-08 03:37