You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
420 B
29 lines
420 B
#include <err.h>
|
|
#include <X11/Xlib.h>
|
|
|
|
#include "util.h"
|
|
|
|
const char *
|
|
keyboard_indicators(void)
|
|
{
|
|
Display *dpy = XOpenDisplay(NULL);
|
|
XKeyboardState state;
|
|
|
|
if (dpy == NULL) {
|
|
warnx("XOpenDisplay failed");
|
|
return NULL;
|
|
}
|
|
XGetKeyboardControl(dpy, &state);
|
|
XCloseDisplay(dpy);
|
|
|
|
switch (state.led_mask) {
|
|
case 1:
|
|
return "c";
|
|
case 2:
|
|
return "n";
|
|
case 3:
|
|
return "cn";
|
|
default:
|
|
return "";
|
|
}
|
|
}
|
|
|