add delay option to awesome-message
This commit is contained in:
parent
0bfa880b0f
commit
bf2afc9489
|
@ -22,6 +22,7 @@
|
|||
#define _GNU_SOURCE
|
||||
#include <getopt.h>
|
||||
|
||||
#include <signal.h>
|
||||
#include <unistd.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
|
@ -36,6 +37,8 @@
|
|||
|
||||
#define PROGNAME "awesome-message"
|
||||
|
||||
static Bool running = True;
|
||||
|
||||
/** Import awesome config file format */
|
||||
extern cfg_opt_t awesome_opts[];
|
||||
|
||||
|
@ -58,7 +61,7 @@ static void __attribute__ ((noreturn))
|
|||
exit_help(int exit_code)
|
||||
{
|
||||
FILE *outfile = (exit_code == EXIT_SUCCESS) ? stdout : stderr;
|
||||
fprintf(outfile, "Usage: %s [-x xcoord] [-y ycoord] <message> <icon>\n",
|
||||
fprintf(outfile, "Usage: %s [-x xcoord] [-y ycoord] [-d delay] <message> <icon>\n",
|
||||
PROGNAME);
|
||||
exit(exit_code);
|
||||
}
|
||||
|
@ -113,6 +116,12 @@ config_parse(const char *confpatharg)
|
|||
p_delete(&confpath);
|
||||
}
|
||||
|
||||
static void
|
||||
exit_on_signal(int sig __attribute__ ((unused)))
|
||||
{
|
||||
running = False;
|
||||
}
|
||||
|
||||
int
|
||||
main(int argc, char **argv)
|
||||
{
|
||||
|
@ -120,10 +129,10 @@ main(int argc, char **argv)
|
|||
SimpleWindow *sw;
|
||||
DrawCtx *ctx;
|
||||
XEvent ev;
|
||||
Bool running = True;
|
||||
Area geometry = { 0, 0, 200, 50, NULL },
|
||||
icon_geometry = { -1, -1, -1, -1, NULL };
|
||||
int opt;
|
||||
int delay = 0;
|
||||
char *configfile = NULL;
|
||||
static struct option long_options[] =
|
||||
{
|
||||
|
@ -137,10 +146,13 @@ main(int argc, char **argv)
|
|||
|
||||
globalconf.display = disp;
|
||||
|
||||
while((opt = getopt_long(argc, argv, "vhf:b:x:y:n:c:",
|
||||
while((opt = getopt_long(argc, argv, "vhf:b:x:y:n:c:d:",
|
||||
long_options, NULL)) != -1)
|
||||
switch(opt)
|
||||
{
|
||||
case 'd':
|
||||
delay = atoi(optarg);
|
||||
break;
|
||||
case 'v':
|
||||
eprint_version(PROGNAME);
|
||||
break;
|
||||
|
@ -200,7 +212,12 @@ main(int argc, char **argv)
|
|||
XMapRaised(disp, sw->window);
|
||||
XSync(disp, False);
|
||||
|
||||
signal(SIGALRM, &exit_on_signal);
|
||||
alarm(delay);
|
||||
|
||||
while(running)
|
||||
{
|
||||
if(XPending(disp))
|
||||
{
|
||||
XNextEvent(disp, &ev);
|
||||
switch(ev.type)
|
||||
|
@ -215,6 +232,8 @@ main(int argc, char **argv)
|
|||
break;
|
||||
}
|
||||
}
|
||||
sleep(0.1);
|
||||
}
|
||||
|
||||
simplewindow_delete(sw);
|
||||
XCloseDisplay(disp);
|
||||
|
|
Loading…
Reference in New Issue