#include <cairo-xlib.h>
#include <pango/pangocairo.h>
#include <unistd.h>
+#include <signal.h>
#include "window.h"
#include "server.h"
const char* clock_get_tooltip(void* obj)
{
+ strftime(buf_tooltip, sizeof(buf_tooltip), time_tooltip_format, localtime(&time_clock.tv_sec));
return buf_tooltip;
}
}
if (command) {
pid_t pid;
+ sigset_t sigset;
+ sigprocmask(SIG_SETMASK, &sigset, 0);
+ sigprocmask(SIG_UNBLOCK, &sigset, 0);
pid = fork();
+ sigprocmask(SIG_BLOCK, &sigset, 0);
if (pid == 0) {
execl("/bin/sh", "/bin/sh", "-c", command, NULL);
_exit(0);
extern char *time1_format;
extern char *time2_format;
+extern char *time_tooltip_format;
extern PangoFontDescription *time1_font_desc;
extern PangoFontDescription *time2_font_desc;
extern char *clock_lclick_command;
memcpy(&panel_config.clock.area.pix.back, &a->pix.back, sizeof(Color));
memcpy(&panel_config.clock.area.pix.border, &a->pix.border, sizeof(Border));
}
+ else if (strcmp(key, "clock_tooltip") == 0) {
+ if (strlen(value) > 0)
+ time_tooltip_format = strdup (value);
+ }
else if (strcmp(key, "clock_lclick_command") == 0) {
if (strlen(value) > 0)
clock_lclick_command = strdup(value);