nyxwm

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

blocks.h (484B)


      1 #include "nyxwm.h"
      2 
      3 static const Block blocks[] = {
      4     /*Icon*/    /*Command*/                                                    /*Update Interval*/    /*Update Signal*/
      5     {"", "date '+%b %d (%a) %I:%M%p'",                                         5,                     0},  // Changed %p to %P
      6     {"", "curl -s 'wttr.in/?format=%C+%t'",                            3600,                  0},  // Update every hour
      7 };
      8 
      9 static char delim[] = "  ";
     10 static unsigned int delimLen = 5;