#include "config.h" #include #include #include #include #include #include #include #include #include /* local subsystem functions */ static int _bl_write_file(const char *file, int val) { char buf[256]; int fd = open(file, O_WRONLY); if (fd < 0) { perror("open"); return -1; } snprintf(buf, sizeof(buf), "%d", val); if (write(fd, buf, strlen(buf)) != (int)strlen(buf)) { perror("write"); close(fd); return -1; } printf("BACKLIGHT: %s -> %i\n", file, val); close(fd); return 0; } /* externally accessible functions */ int main(int argc, char **argv) { int i; int level; const char *f; int maxlevel = 0, curlevel = -1; Eina_List *devs; char buf[4096] = ""; for (i = 1; i < argc; i++) { if ((!strcmp(argv[i], "-h")) || (!strcmp(argv[i], "-help")) || (!strcmp(argv[i], "--help"))) { printf("This is an internal tool for Enlightenment.\n" "do not use it.\n"); exit(0); } } if (argc == 2) level = atoi(argv[1]); else exit(1); if (setuid(0) != 0) { printf("ERROR: UNABLE TO ASSUME ROOT PRIVILEGES\n"); exit(5); } if (setgid(0) != 0) { printf("ERROR: UNABLE TO ASSUME ROOT GROUP PRIVILEGES\n"); exit(7); } eeze_init(); devs = eeze_udev_find_by_filter("backlight", NULL, NULL); if (!devs) { devs = eeze_udev_find_by_filter("leds", NULL, NULL); if (!devs) return -1; } if (eina_list_count(devs) > 1) { const char *s = NULL; Eina_List *l, *new = NULL; Eina_Bool use = EINA_FALSE; /* prefer backlights of type "firmware" where available */ EINA_LIST_FOREACH(devs, l, f) { s = eeze_udev_syspath_get_sysattr(f, "type"); use = (s && (!strcmp(s, "firmware"))); eina_stringshare_del(s); if (!use) continue; eina_list_move_list(&new, &devs, l); EINA_LIST_FREE(devs, f) eina_stringshare_del(f); devs = new; break; } } EINA_LIST_FREE(devs, f) { const char *str; str = eeze_udev_syspath_get_sysattr(f, "max_brightness"); if (str) { maxlevel = atoi(str); eina_stringshare_del(str); str = eeze_udev_syspath_get_sysattr(f, "brightness"); if (str) { curlevel = atoi(str); eina_stringshare_del(str); } } if (maxlevel <= 0) maxlevel = 255; if (curlevel >= 0) { curlevel = ((maxlevel * level) + (500 / maxlevel)) / 1000; // printf("SET: %i, %i/%i\n", level, curlevel, maxlevel); snprintf(buf, sizeof(buf), "%s/brightness", f); return _bl_write_file(buf, curlevel); } eina_stringshare_del(f); /* Currently this will set brightness levels on ALL detected devices If this is not desired, add a break here */ } return -1; }