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.

168 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. typedef struct {
  10. char* icon;
  11. char* command;
  12. unsigned int interval;
  13. unsigned int signal;
  14. } Block;
  15. void sighandler(int num);
  16. void replace(char *str, char old, char new);
  17. void getcmds(int time);
  18. void getsigcmds(int signal);
  19. void setupsignals();
  20. int getstatus(char *str, char *last);
  21. void setroot();
  22. void statusloop();
  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)][CMDLENGTH] = {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. fgets(output+i, CMDLENGTH-i, cmdf);
  51. i = strlen(output);
  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. strcat(str, statusbar[i]);
  91. str[strlen(str)-1] = '\0';
  92. return strcmp(str, last);//0 if they are the same
  93. }
  94. void setroot()
  95. {
  96. if (!getstatus(statusstr[0], statusstr[1]))//Only set root if text has changed.
  97. return;
  98. Display *d = XOpenDisplay(NULL);
  99. if (d) {
  100. dpy = d;
  101. }
  102. screen = DefaultScreen(dpy);
  103. root = RootWindow(dpy, screen);
  104. XStoreName(dpy, root, statusstr[0]);
  105. XCloseDisplay(dpy);
  106. }
  107. void pstdout()
  108. {
  109. if (!getstatus(statusstr[0], statusstr[1]))//Only write out if text has changed.
  110. return;
  111. printf("%s\n",statusstr[0]);
  112. fflush(stdout);
  113. }
  114. void statusloop()
  115. {
  116. setupsignals();
  117. int i = 0;
  118. getcmds(-1);
  119. while(statusContinue)
  120. {
  121. getcmds(i);
  122. writestatus();
  123. sleep(1.0);
  124. i++;
  125. }
  126. }
  127. void sighandler(int signum)
  128. {
  129. getsigcmds(signum-SIGRTMIN);
  130. writestatus();
  131. }
  132. void termhandler(int signum)
  133. {
  134. statusContinue = 0;
  135. exit(0);
  136. }
  137. int main(int argc, char** argv)
  138. {
  139. for(int i = 0; i < argc; i++)
  140. {
  141. if (!strcmp("-d",argv[i]))
  142. delim = argv[++i][0];
  143. else if(!strcmp("-p",argv[i]))
  144. writestatus = pstdout;
  145. }
  146. signal(SIGTERM, termhandler);
  147. signal(SIGINT, termhandler);
  148. statusloop();
  149. }