diff options
| author | Moritz Luedecke <ritze@skweez.net> | 2017-08-20 15:21:33 +0200 | 
|---|---|---|
| committer | Moritz Luedecke <ritze@skweez.net> | 2017-08-20 15:21:33 +0200 | 
| commit | 75634f63d166b2916763249875310fc1269fe626 (patch) | |
| tree | e756a0b44589bcd82e062bed76ce237557f0931d | |
| parent | 301e7de62f85f49a7a4d6b52fd42efb9a34ca4e6 (diff) | |
Rename option windowed to embedded
| -rw-r--r-- | config.h | 1 | ||||
| -rw-r--r-- | pinentry-dmenu.c | 17 | 
2 files changed, 9 insertions, 9 deletions
| @@ -2,6 +2,7 @@  /* Default settings; can be overriden by command line. */  static int topbar = 1; +static int embedded = 0;  static int minpwlen = 32;  static const char *fonts[] = {  	"monospace:size=10" diff --git a/pinentry-dmenu.c b/pinentry-dmenu.c index 029e80f..047c2dc 100644 --- a/pinentry-dmenu.c +++ b/pinentry-dmenu.c @@ -43,7 +43,7 @@ enum { Nothing, Yes, No }; /* confirm dialog */  static char text[BUFSIZ] = "";  //static char *text; -static char *embed; +static char *winid;  static int bh, mw, mh;  static int sel;  static int promptw, ppromptw, pdescw; @@ -96,7 +96,7 @@ static void  grabkeyboard(void) {  	int i; -	if (embed) { +	if (winid) {  		return;  	}  	/* try to grab keyboard, @@ -305,7 +305,7 @@ setup(void) {  	                XNClientWindow, win, XNFocusWindow, win, NULL);  	XMapRaised(dpy, win); -	if (embed) { +	if (winid) {  		XSelectInput(dpy, parentwin, FocusChangeMask);  		if (XQueryTree(dpy, parentwin, &dw, &w, &dws, &du) && dws) { @@ -532,7 +532,7 @@ cmdhandler(pinentry_t received_pinentry) {  	}  	screen = DefaultScreen(dpy);  	root = RootWindow(dpy, screen); -	if (!embed || !(parentwin = strtol(embed, NULL, 0))) { +	if (!winid || !(parentwin = strtol(winid, NULL, 0))) {  		parentwin = root;  	}  	if (!XGetWindowAttributes(dpy, parentwin, &wa)) { @@ -624,8 +624,8 @@ main(int argc, char *argv[]) {  		if (config_lookup_string(&cfg, "desc_fg", &str)) {  			colors[SchemeDesc][ColFg] = str;  		} -		if (config_lookup_bool(&cfg, "windowed", &bval)) { -			windowed = bval; +		if (config_lookup_bool(&cfg, "embedded", &bval)) { +			embedded = bval;  		}  	} else if (str = config_error_file(&cfg)) {  		fprintf(stderr, "%s:%d: %s\n", config_error_file(&cfg), @@ -637,9 +637,8 @@ main(int argc, char *argv[]) {  	for (i = 0; i < argc; i++) {  		if (!strcmp(argv[i], "-W") || !strcmp(argv[i], "--parent-wid")) { -			if (windowed) { -				embed = argv[++i]; -				printf("-> embed: %s\n", embed); +			if (embedded) { +				winid = argv[++i];  			}  		}  	} | 
