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.

187 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. typedef struct {
  9. char* icon;
  10. char* command;
  11. unsigned int interval;
  12. unsigned int signal;
  13. } Block;
  14. void sighandler(int num);
  15. void replace(char *str, char old, char new);
  16. void getcmds(int time);
  17. void getsigcmds(int signal);
  18. void setupsignals();
  19. int getstatus(char *str, char *last);
  20. void setroot();
  21. void statusloop();
  22. void statusinit();
  23. void sighandler(int signum);
  24. void termhandler(int signum);
  25. #include "blocks.h"
  26. static Display *dpy;
  27. static int screen;
  28. static Window root;
  29. static char statusbar[LENGTH(blocks)][50] = {0};
  30. static char statusstr[2][256];
  31. static int statusContinue = 1;
  32. <<<<<<< HEAD
  33. static void (*writestatus) () = setroot;
  34. =======
  35. >>>>>>> 5ff59d4e8ba9c64963d36c8ea51e7a1d644aef48
  36. void replace(char *str, char old, char new)
  37. {
  38. int N = strlen(str);
  39. for(int i = 0; i < N; i++)
  40. if(str[i] == old)
  41. str[i] = new;
  42. }
  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. while((c = fgetc(cmdf)) != EOF)
  54. output[i++] = c;
  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. for(int i = 0; i < LENGTH(blocks); i++)
  83. {
  84. if (blocks[i].signal > 0)
  85. signal(SIGRTMIN+blocks[i].signal, sighandler);
  86. }
  87. }
  88. int getstatus(char *str, char *last)
  89. {
  90. strcpy(last, str);
  91. <<<<<<< HEAD
  92. str[0] = '\0';
  93. for(int i = 0; i < LENGTH(blocks); i++)
  94. =======
  95. int j = 0;
  96. for(int i = 0; i < LENGTH(blocks); j+=strlen(statusbar[i++]))
  97. >>>>>>> 5ff59d4e8ba9c64963d36c8ea51e7a1d644aef48
  98. {
  99. strcat(str, statusbar[i]);
  100. }
  101. <<<<<<< HEAD
  102. str[strlen(str)-1] = '\0';
  103. =======
  104. str[--j] = '\0';
  105. >>>>>>> 5ff59d4e8ba9c64963d36c8ea51e7a1d644aef48
  106. return strcmp(str, last);//0 if they are the same
  107. }
  108. void setroot()
  109. {
  110. if (!getstatus(statusstr[0], statusstr[1]))//Only set root if text has changed.
  111. return;
  112. Display *d = XOpenDisplay(NULL);
  113. if (d) {
  114. dpy = d;
  115. }
  116. screen = DefaultScreen(dpy);
  117. root = RootWindow(dpy, screen);
  118. XStoreName(dpy, root, statusstr[0]);
  119. XCloseDisplay(dpy);
  120. }
  121. void pstdout()
  122. {
  123. if (!getstatus(statusstr[0], statusstr[1]))//Only write out if text has changed.
  124. return;
  125. printf("%s\n",statusstr[0]);
  126. fflush(stdout);
  127. }
  128. void statusloop()
  129. {
  130. setupsignals();
  131. int i = 0;
  132. getcmds(-1);
  133. while(statusContinue)
  134. {
  135. getcmds(i);
  136. writestatus();
  137. sleep(1.0);
  138. i++;
  139. }
  140. }
  141. void statusinit()
  142. {
  143. statusloop();
  144. }
  145. void sighandler(int signum)
  146. {
  147. getsigcmds(signum-SIGRTMIN);
  148. writestatus();
  149. }
  150. void termhandler(int signum)
  151. {
  152. statusContinue = 0;
  153. exit(0);
  154. }
  155. int main(int argc, char** argv)
  156. {
  157. for(int i = 0; i < argc; i++)
  158. {
  159. if (!strcmp("-d",argv[i]))
  160. delim = argv[++i][0];
  161. else if(!strcmp("-p",argv[i]))
  162. writestatus = pstdout;
  163. }
  164. signal(SIGTERM, termhandler);
  165. signal(SIGINT, termhandler);
  166. statusinit();
  167. }