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.

175 lines
3.1 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. static void (*writestatus) () = setroot;
  33. void replace(char *str, char old, char new)
  34. {
  35. int N = strlen(str);
  36. for(int i = 0; i < N; i++)
  37. if(str[i] == old)
  38. str[i] = new;
  39. }
  40. //opens process *cmd and stores output in *output
  41. void getcmd(const Block *block, char *output)
  42. {
  43. strcpy(output, block->icon);
  44. char *cmd = block->command;
  45. FILE *cmdf = popen(cmd,"r");
  46. if (!cmdf)
  47. return;
  48. char c;
  49. int i = strlen(block->icon);
  50. while((c = fgetc(cmdf)) != EOF)
  51. output[i++] = c;
  52. if (delim != '\0' && --i)
  53. output[i++] = delim;
  54. output[i++] = '\0';
  55. pclose(cmdf);
  56. }
  57. void getcmds(int time)
  58. {
  59. const Block* current;
  60. for(int i = 0; i < LENGTH(blocks); i++)
  61. {
  62. current = blocks + i;
  63. if ((current->interval != 0 && time % current->interval == 0) || time == -1)
  64. getcmd(current,statusbar[i]);
  65. }
  66. }
  67. void getsigcmds(int signal)
  68. {
  69. const Block *current;
  70. for (int i = 0; i < LENGTH(blocks); i++)
  71. {
  72. current = blocks + i;
  73. if (current->signal == signal)
  74. getcmd(current,statusbar[i]);
  75. }
  76. }
  77. void setupsignals()
  78. {
  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. int getstatus(char *str, char *last)
  86. {
  87. strcpy(last, str);
  88. str[0] = '\0';
  89. for(int i = 0; i < LENGTH(blocks); i++)
  90. {
  91. strcat(str, statusbar[i]);
  92. }
  93. str[strlen(str)-1] = '\0';
  94. return strcmp(str, last);//0 if they are the same
  95. }
  96. void setroot()
  97. {
  98. if (!getstatus(statusstr[0], statusstr[1]))//Only set root if text has changed.
  99. return;
  100. Display *d = XOpenDisplay(NULL);
  101. if (d) {
  102. dpy = d;
  103. }
  104. screen = DefaultScreen(dpy);
  105. root = RootWindow(dpy, screen);
  106. XStoreName(dpy, root, statusstr[0]);
  107. XCloseDisplay(dpy);
  108. }
  109. void pstdout()
  110. {
  111. if (!getstatus(statusstr[0], statusstr[1]))//Only write out if text has changed.
  112. return;
  113. printf("%s\n",statusstr[0]);
  114. fflush(stdout);
  115. }
  116. void statusloop()
  117. {
  118. setupsignals();
  119. int i = 0;
  120. getcmds(-1);
  121. while(statusContinue)
  122. {
  123. getcmds(i);
  124. writestatus();
  125. sleep(1.0);
  126. i++;
  127. }
  128. }
  129. void statusinit()
  130. {
  131. statusloop();
  132. }
  133. void sighandler(int signum)
  134. {
  135. getsigcmds(signum-SIGRTMIN);
  136. writestatus();
  137. }
  138. void termhandler(int signum)
  139. {
  140. statusContinue = 0;
  141. exit(0);
  142. }
  143. int main(int argc, char** argv)
  144. {
  145. for(int i = 0; i < argc; i++)
  146. {
  147. if (!strcmp("-d",argv[i]))
  148. delim = argv[++i][0];
  149. else if(!strcmp("-p",argv[i]))
  150. writestatus = pstdout;
  151. }
  152. signal(SIGTERM, termhandler);
  153. signal(SIGINT, termhandler);
  154. statusinit();
  155. }