summaryrefslogtreecommitdiff
path: root/slstatus.c
diff options
context:
space:
mode:
authorLaslo Hunhold <dev@frign.de>2017-08-10 22:22:39 +0200
committerAaron Marcher <me@drkhsh.at>2017-08-10 22:32:57 +0200
commitc9d47405f4ab3cf99d7d2116fbb7622c02a27e5e (patch)
treebce922c5842a7ce2072cefbe49fce654bd3bdfef /slstatus.c
parent4d33c360141952f6071d19c34c0395ad2ff668a1 (diff)
Reduce -o | -n to -s
What we really want is to either output to WM_NAME or stdout. If we want just one single line, we do slstatus | head -n 1.
Diffstat (limited to 'slstatus.c')
-rw-r--r--slstatus.c31
1 files changed, 10 insertions, 21 deletions
diff --git a/slstatus.c b/slstatus.c
index b31f21d..4b6770b 100644
--- a/slstatus.c
+++ b/slstatus.c
@@ -75,7 +75,6 @@ static void usage(void);
char *argv0;
static unsigned short int delay = 0;
static unsigned short int done;
-static unsigned short int oflag, nflag;
static Display *dpy;
#include "config.h"
@@ -840,41 +839,34 @@ sighandler(const int signo)
static void
usage(void)
{
- fprintf(stderr, "usage: %s [-o | -n]\n", argv0);
+ fprintf(stderr, "usage: %s [-s]\n", argv0);
exit(1);
}
int
main(int argc, char *argv[])
{
- unsigned short int i;
- char status_string[MAXLEN];
- char *element;
struct arg argument;
struct sigaction act;
- size_t len;
+ size_t i, len;
+ int sflag = 0;
+ char status_string[MAXLEN];
+ char *element;
ARGBEGIN {
- case 'o':
- oflag = 1;
- break;
- case 'n':
- nflag = 1;
+ case 's':
+ sflag = 1;
break;
default:
usage();
} ARGEND
- if (oflag && nflag) {
- usage();
- }
-
memset(&act, 0, sizeof(act));
act.sa_handler = sighandler;
sigaction(SIGINT, &act, 0);
sigaction(SIGTERM, &act, 0);
- if (!oflag) {
+ if (!sflag) {
dpy = XOpenDisplay(NULL);
}
@@ -896,11 +888,8 @@ main(int argc, char *argv[])
}
}
- if (oflag) {
- printf("%s\n", status_string);
- } else if (nflag) {
+ if (sflag) {
printf("%s\n", status_string);
- done = 1;
} else {
XStoreName(dpy, DefaultRootWindow(dpy), status_string);
XSync(dpy, False);
@@ -915,7 +904,7 @@ main(int argc, char *argv[])
}
}
- if (!oflag) {
+ if (!sflag) {
XStoreName(dpy, DefaultRootWindow(dpy), NULL);
XCloseDisplay(dpy);
}