2017-09-17 16:45:03 +01:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2018-03-28 17:26:56 +01:00
|
|
|
#include <stdio.h>
|
2017-09-17 15:18:17 +01:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
2017-09-24 14:33:01 +01:00
|
|
|
#include "../util.h"
|
2017-09-17 15:18:17 +01:00
|
|
|
|
|
|
|
const char *
|
|
|
|
keyboard_indicators(void)
|
|
|
|
{
|
2018-05-02 07:26:23 +01:00
|
|
|
Display *dpy;
|
2017-09-17 15:18:17 +01:00
|
|
|
XKeyboardState state;
|
|
|
|
|
2018-05-02 07:26:23 +01:00
|
|
|
if (!(dpy = XOpenDisplay(NULL))) {
|
2018-03-28 18:46:27 +01:00
|
|
|
fprintf(stderr, "Cannot open display\n");
|
2017-09-17 15:18:17 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
XGetKeyboardControl(dpy, &state);
|
|
|
|
XCloseDisplay(dpy);
|
|
|
|
|
|
|
|
switch (state.led_mask) {
|
2018-05-06 21:28:56 +01:00
|
|
|
case 1:
|
|
|
|
return "c";
|
|
|
|
case 2:
|
|
|
|
return "n";
|
|
|
|
case 3:
|
|
|
|
return "cn";
|
|
|
|
default:
|
|
|
|
return "";
|
2017-09-17 15:18:17 +01:00
|
|
|
}
|
|
|
|
}
|