/* * vt_mode: report VT mode (text or graphics) * * Contributed by Julien Cristau in * http://bugs.debian.org/618573; * adapted to kbd by Michael Schutte . */ #include #include #include #include #include #include #include #include "getfd.h" #include "nls.h" #include "version.h" static void attr_noreturn usage(int code) { fprintf(stderr, _("Usage: vt_mode [-C DEVICE]\n")); exit(code); } int main(int argc, char *argv[]) { int fd, rc, mode, c; char *console = NULL; set_progname(argv[0]); #ifndef __klibc__ setlocale(LC_ALL, ""); bindtextdomain(PACKAGE_NAME, LOCALEDIR); textdomain(PACKAGE_NAME); #endif while ((c = getopt(argc, argv, "C:hV")) != EOF) { switch (c) { case 'C': if (optarg == NULL || optarg[0] == '\0') usage(1); console = optarg; break; case 'h': usage(0); break; case 'V': print_version_and_exit(); break; default: usage(1); } } fd = getfd(console); rc = ioctl(fd, KDGETMODE, &mode); if (rc < 0) { fprintf(stderr, _("%s: Error reading VT mode.\n"), progname); return 1; } switch (mode) { case KD_TEXT: printf("text\n"); break; case KD_GRAPHICS: printf("graphics\n"); break; default: printf("other (%d)\n", mode); break; } return 0; }