mirror of
https://github.com/ashish-yadav11/dwmblocks
synced 2024-11-17 09:26:13 +00:00
34 lines
1.3 KiB
C
34 lines
1.3 KiB
C
/* time interval in seconds to sleep before looking for updates in the main loop */
|
|
#define SLEEPINTERVAL 30
|
|
|
|
#define PATH(name) "/home/ashish/.local/projects/dwmblocks/blocks/"name
|
|
|
|
/* If multiple realtime signals are pending, then the lowest numbered signal is delivered first.
|
|
* If interval of a block is set to 0, the block will only be updated once at startup.
|
|
* 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.
|
|
* Keep signal for clickable blocks less than 10. */
|
|
|
|
/* pathu - path of the program whose output is to be used for status text
|
|
* patch - path of the program to be executed on clicks */
|
|
static Block blocks[] = {
|
|
/* pathu pathc interval signal */
|
|
{ PATH("hotspot.sh"), PATH("hotspot_button.sh"), -1, 1},
|
|
|
|
{ PATH("time.sh"), NULL, 30, 0},
|
|
|
|
{ PATH("calendar.sh"), PATH("calendar_button.sh"), 60, 2},
|
|
|
|
// { PATH("mail.sh"), PATH("mail_button.sh"), 30, 3},
|
|
|
|
{ PATH("volume.sh"), PATH("volume_button.sh"), 0, 4},
|
|
|
|
{ PATH("cpu_temp.sh"), PATH("cpu_temp_button.sh"), 30, 5},
|
|
|
|
{ PATH("battery.sh"), PATH("battery_button.sh"), 0, 6},
|
|
|
|
{ NULL } /* just to mark the end of the array */
|
|
};
|
|
|
|
static const char *delim = " | ";
|