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.

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