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.

183 lines
3.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/Xlib.h>
  7. #ifdef __OpenBSD__
  8. #define SIGPLUS SIGUSR1+1
  9. #define SIGMINUS SIGUSR1-1
  10. #else
  11. #define SIGPLUS SIGRTMIN
  12. #define SIGMINUS SIGRTMIN
  13. #endif
  14. #define LENGTH(X) (sizeof(X) / sizeof (X[0]))
  15. #define CMDLENGTH 50
  16. #define STATUSLENGTH (LENGTH(blocks) * CMDLENGTH + 1)
  17. typedef struct {
  18. char* icon;
  19. char* command;
  20. unsigned int interval;
  21. unsigned int signal;
  22. } Block;
  23. #ifndef __OpenBSD__
  24. void dummysighandler(int num);
  25. #endif
  26. void sighandler(int num);
  27. void getcmds(int time);
  28. void getsigcmds(int signal);
  29. void setupsignals();
  30. void sighandler(int signum);
  31. int getstatus(char *str, char *last);
  32. void setroot();
  33. void statusloop();
  34. void termhandler(int signum);
  35. #include "blocks.h"
  36. static Display *dpy;
  37. static int screen;
  38. static Window root;
  39. static char statusbar[LENGTH(blocks)][CMDLENGTH] = {0};
  40. static char statusstr[2][STATUSLENGTH];
  41. static int statusContinue = 1;
  42. static void (*writestatus) () = setroot;
  43. //opens process *cmd and stores output in *output
  44. void getcmd(const Block *block, char *output)
  45. {
  46. strcpy(output, block->icon);
  47. char *cmd = block->command;
  48. FILE *cmdf = popen(cmd,"r");
  49. if (!cmdf)
  50. return;
  51. char c;
  52. int i = strlen(block->icon);
  53. fgets(output+i, CMDLENGTH-i, cmdf);
  54. i = strlen(output);
  55. if (delim != '\0' && --i)
  56. output[i++] = delim;
  57. output[i++] = '\0';
  58. pclose(cmdf);
  59. }
  60. void getcmds(int time)
  61. {
  62. const Block* current;
  63. for(int i = 0; i < LENGTH(blocks); i++)
  64. {
  65. current = blocks + i;
  66. if ((current->interval != 0 && time % current->interval == 0) || time == -1)
  67. getcmd(current,statusbar[i]);
  68. }
  69. }
  70. void getsigcmds(int signal)
  71. {
  72. const Block *current;
  73. for (int i = 0; i < LENGTH(blocks); i++)
  74. {
  75. current = blocks + i;
  76. if (current->signal == signal)
  77. getcmd(current,statusbar[i]);
  78. }
  79. }
  80. void setupsignals()
  81. {
  82. #ifndef __OpenBSD__
  83. /* initialize all real time signals with dummy handler */
  84. for(int i = SIGRTMIN; i <= SIGRTMAX; i++)
  85. signal(i, dummysighandler);
  86. #endif
  87. for(int i = 0; i < LENGTH(blocks); i++)
  88. {
  89. if (blocks[i].signal > 0)
  90. signal(SIGMINUS+blocks[i].signal, sighandler);
  91. }
  92. }
  93. int getstatus(char *str, char *last)
  94. {
  95. strcpy(last, str);
  96. str[0] = '\0';
  97. for(int i = 0; i < LENGTH(blocks); i++)
  98. strcat(str, statusbar[i]);
  99. str[strlen(str)-1] = '\0';
  100. return strcmp(str, last);//0 if they are the same
  101. }
  102. void setroot()
  103. {
  104. if (!getstatus(statusstr[0], statusstr[1]))//Only set root if text has changed.
  105. return;
  106. Display *d = XOpenDisplay(NULL);
  107. if (d) {
  108. dpy = d;
  109. }
  110. screen = DefaultScreen(dpy);
  111. root = RootWindow(dpy, screen);
  112. XStoreName(dpy, root, statusstr[0]);
  113. XCloseDisplay(dpy);
  114. }
  115. void pstdout()
  116. {
  117. if (!getstatus(statusstr[0], statusstr[1]))//Only write out if text has changed.
  118. return;
  119. printf("%s\n",statusstr[0]);
  120. fflush(stdout);
  121. }
  122. void statusloop()
  123. {
  124. setupsignals();
  125. int i = 0;
  126. getcmds(-1);
  127. while(statusContinue)
  128. {
  129. getcmds(i);
  130. writestatus();
  131. sleep(1.0);
  132. i++;
  133. }
  134. }
  135. #ifndef __OpenBSD__
  136. /* this signal handler should do nothing */
  137. void dummysighandler(int signum)
  138. {
  139. return;
  140. }
  141. #endif
  142. void sighandler(int signum)
  143. {
  144. getsigcmds(signum-SIGPLUS);
  145. writestatus();
  146. }
  147. void termhandler(int signum)
  148. {
  149. statusContinue = 0;
  150. exit(0);
  151. }
  152. int main(int argc, char** argv)
  153. {
  154. for(int i = 0; i < argc; i++)
  155. {
  156. if (!strcmp("-d",argv[i]))
  157. delim = argv[++i][0];
  158. else if(!strcmp("-p",argv[i]))
  159. writestatus = pstdout;
  160. }
  161. signal(SIGTERM, termhandler);
  162. signal(SIGINT, termhandler);
  163. statusloop();
  164. }