Introduction
Introduction Statistics Contact Development Disclaimer Help
lsw -a - lsw - lists window titles of X clients to stdout
git clone git://git.suckless.org/lsw
Log
Files
Refs
README
LICENSE
---
commit 955a4e65bda4c1bbfaa4ab7bd39aaa9ea97b36ba
parent 6f321d7fb63fb80b4726e706cdab5d1807d55976
Author: Connor Lane Smith <[email protected]>
Date: Sat, 18 Jun 2011 03:24:26 +0100
lsw -a
Diffstat:
M lsw.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/lsw.c b/lsw.c
@@ -10,6 +10,7 @@ static void getname(Window win, char *buf, size_t size);
static void lsw(Window win);
static Atom netwmname;
+static Bool aflag = False;
static Bool lflag = False;
static Display *dpy;
@@ -28,6 +29,8 @@ main(int argc, char *argv[]) {
puts("lsw-"VERSION", © 2006-2011 lsw engineers, see L…
exit(EXIT_SUCCESS);
}
+ else if(!strcmp(argv[i], "-a"))
+ aflag = True;
else if(!strcmp(argv[i], "-l"))
lflag = True;
else
@@ -52,7 +55,8 @@ lsw(Window win) {
if(!XQueryTree(dpy, win, &dw, &dw, &wins, &n))
return;
for(i = 0; i < n; i++)
- if(XGetWindowAttributes(dpy, win, &wa) && !wa.override_redirec…
+ if(aflag || (XGetWindowAttributes(dpy, wins[i], &wa)
+ && !wa.override_redirect && wa.map_state == IsViewable)) {
getname(wins[i], buf, sizeof buf);
if(lflag)
printf("0x%lx %s\n", wins[i], buf);
@@ -72,7 +76,6 @@ getname(Window win, char *buf, size_t size) {
if(!XGetTextProperty(dpy, win, &prop, netwmname) || prop.nitems == 0)
if(!XGetWMName(dpy, win, &prop) || prop.nitems == 0)
return;
-
if(prop.encoding == XA_STRING)
strncpy(buf, (char *)prop.value, size);
else if(!XmbTextPropertyToTextList(dpy, &prop, &list, &n) && n > 0) {
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.