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.

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