From b57eca1a2bf1a65899866753cf9f8488223a2b47 Mon Sep 17 00:00:00 2001 From: "Enno Boland (tox)" Date: Sun, 8 Nov 2009 23:45:11 +0100 Subject: [PATCH] SETPROP() macro shows now the current value in dwm. --- config.def.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.def.h b/config.def.h index 245b952..493570b 100644 --- a/config.def.h +++ b/config.def.h @@ -9,8 +9,8 @@ static char *dldir = ".surf/dl"; static time_t sessiontime = 3600; #define SETPROP(p) { .v = (char *[]){ "/bin/sh", "-c", \ - "prop=\"`dmenu < /dev/null`\" &&" \ - "xprop -id $1 -f $0 8s -set $0 \"$prop\"", \ + "prop=\"`xprop -id $1 $0 | cut -d '\"' -f 2 | dmenu`\" &&" \ + "xprop -id $1 -f $0 8s -set $0 \"$prop\"", \ p, winid, NULL } } #define MODKEY GDK_CONTROL_MASK static Key keys[] = { -- 2.20.1