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.

151 lines
2.5 KiB

  1. #include<stdlib.h>
  2. #include<stdio.h>
  3. #include<string.h>
  4. #include<unistd.h>
  5. #include<signal.h>
  6. //#include<X11/Xutil.h>
  7. #include<X11/Xlib.h>
  8. //#include <X11/Xatom.h>
  9. #define LENGTH(X) (sizeof(X) / sizeof (X[0]))
  10. typedef struct {
  11. char* command;
  12. unsigned int interval;
  13. unsigned int signal;
  14. } Block;
  15. void sighandler(int num);
  16. #include "blocks.h"
  17. static Display *dpy;
  18. static int screen;
  19. static Window root;
  20. static char statusbar[LENGTH(blocks)][50] = {0};
  21. static char setrootcmd[256];
  22. static char *statuscat;
  23. static const char *volupcmd[] = { "volup", NULL };
  24. static const char *voldowncmd[] = { "voldown", NULL };
  25. static const char *volmutecmd[] = { "volmute", NULL };
  26. static int statusContinue = 1,volmuted = 0;
  27. void replace(char *str, char old, char new)
  28. {
  29. int N = strlen(str);
  30. for(int i = 0; i < N; i++)
  31. if(str[i] == old)
  32. str[i] = new;
  33. }
  34. void getcmd(char *cmd, char *output)
  35. {
  36. FILE *cmdf = popen(cmd,"r");
  37. if (!cmdf)
  38. return;
  39. int N = strlen(output);
  40. char c;
  41. int i = 0;
  42. while((c = fgetc(cmdf)) != EOF)
  43. output[i++] = c;
  44. output[i++] = '\0';
  45. pclose(cmdf);
  46. }
  47. void getcmds(int time)
  48. {
  49. const Block* current;
  50. for(int i = 0; i < LENGTH(blocks); i++)
  51. {
  52. current = blocks + i;
  53. if ((current->interval != 0 && time % current->interval == 0) || time == -1)
  54. getcmd(current->command,statusbar[i]);
  55. }
  56. }
  57. void getsigcmds(int signal)
  58. {
  59. const Block *current;
  60. for (int i = 0; i < LENGTH(blocks); i++)
  61. {
  62. current = blocks + i;
  63. if (current->signal == signal)
  64. getcmd(current->command,statusbar[i]);
  65. }
  66. }
  67. void setupsignals()
  68. {
  69. for(int i = 0; i < LENGTH(blocks); i++)
  70. {
  71. if (blocks[i].signal > 0)
  72. signal(SIGRTMIN+blocks[i].signal, sighandler);
  73. }
  74. }
  75. void getstatus(char *str)
  76. {
  77. int j = 0;//15;
  78. for(int i = 0; i < 5; j+=strlen(statusbar[i++]))
  79. {
  80. strcpy(str + j, statusbar[i]);
  81. }
  82. //for (;j < LENGTH(str);j++)
  83. str[j] = '\0';
  84. }
  85. void setroot()
  86. {
  87. Display *d = XOpenDisplay(NULL);
  88. if (d) {
  89. dpy = d;
  90. }
  91. screen = DefaultScreen(dpy);
  92. root = RootWindow(dpy, screen);
  93. getstatus(setrootcmd);
  94. replace(setrootcmd,'\n',' ');
  95. replace(setrootcmd,EOF,' ');
  96. //printf("%s\n",setrootcmd);
  97. XStoreName(dpy, root, setrootcmd);
  98. XCloseDisplay(dpy);
  99. }
  100. void *statusloop()
  101. {
  102. setupsignals();
  103. int i = 0;
  104. getcmds(-1);
  105. while(statusContinue)
  106. {
  107. getcmds(i);
  108. setroot();
  109. sleep(1.0);
  110. i++;
  111. }
  112. }
  113. void statusinit()
  114. {
  115. statusloop();
  116. }
  117. void sighandler(int signum)
  118. {
  119. getsigcmds(signum-SIGRTMIN);
  120. setroot();
  121. }
  122. void termhandler(int signum)
  123. {
  124. statusContinue = 0;
  125. exit(0);
  126. }
  127. int main()
  128. {
  129. signal(SIGTERM, termhandler);
  130. signal(SIGINT, termhandler);
  131. statusinit();
  132. }