2020-07-03 21:04:11 +00:00
|
|
|
/* time interval in seconds to sleep before looking for updates in the main loop */
|
2020-08-22 17:43:56 +00:00
|
|
|
#define SLEEPINTERVAL 1
|
2020-07-03 21:04:11 +00:00
|
|
|
|
2020-08-22 17:43:56 +00:00
|
|
|
#define PATH(name) "/home/ashish/.local/projects/dwmblocks/blocks/"name
|
2020-07-03 21:04:11 +00:00
|
|
|
|
2020-07-13 19:56:52 +00:00
|
|
|
/* If interval of a block is set to 0, the block will only be updated once at startup.
|
2020-07-03 21:04:11 +00:00
|
|
|
* If interval is set to a negative value, the block will never be updated in the main loop.
|
|
|
|
* Set signal to 0 if signalling is not required for the block.
|
2020-07-26 19:30:39 +00:00
|
|
|
* Signal must be less than 10 for clickable blocks.
|
2020-07-13 19:56:52 +00:00
|
|
|
* If multiple realtime signals are pending, then the lowest numbered signal is delivered first. */
|
2020-07-03 21:04:11 +00:00
|
|
|
|
|
|
|
/* pathu - path of the program whose output is to be used for status text
|
2020-07-18 14:25:50 +00:00
|
|
|
* pathc - path of the program to be executed on clicks */
|
2020-07-03 21:04:11 +00:00
|
|
|
static Block blocks[] = {
|
2020-08-22 17:43:56 +00:00
|
|
|
/* pathu pathc interval signal */
|
|
|
|
{ PATH("time.sh"), NULL, 30, 10},
|
2020-07-03 21:04:11 +00:00
|
|
|
|
2020-08-22 17:43:56 +00:00
|
|
|
{ PATH("calendar.sh"), NULL, 30, 3},
|
2020-07-03 21:04:11 +00:00
|
|
|
|
2020-08-22 17:43:56 +00:00
|
|
|
{ PATH("volume.sh"), PATH("volume_button.sh"), 0, 1},
|
2020-07-03 21:04:11 +00:00
|
|
|
|
2020-08-22 17:43:56 +00:00
|
|
|
{ PATH("cpu_temp.sh"), PATH("cpu_temp_button.sh"), 1, 4},
|
2020-07-03 21:04:11 +00:00
|
|
|
|
2020-08-22 17:43:56 +00:00
|
|
|
{ PATH("battery.sh"), PATH("battery_button.sh"), 30, 2},
|
2020-07-03 21:04:11 +00:00
|
|
|
|
|
|
|
{ NULL } /* just to mark the end of the array */
|
|
|
|
};
|
|
|
|
|
2020-07-09 20:18:53 +00:00
|
|
|
static const char *delim = " ";
|