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.

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