rename NOBACKGROUND to HIDE_BACKGROUND and use TRUE/FALSE instead of 0/1
This commit is contained in:
parent
f1299dcfc1
commit
62f54a3745
2 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@ static char *stylefile = ".surf/style.css";
|
||||||
static char *scriptfile = ".surf/script.js";
|
static char *scriptfile = ".surf/script.js";
|
||||||
static char *cookiefile = ".surf/cookies.txt";
|
static char *cookiefile = ".surf/cookies.txt";
|
||||||
static time_t sessiontime = 3600;
|
static time_t sessiontime = 3600;
|
||||||
#define NOBACKGROUND 0
|
#define HIDE_BACKGROUND FALSE
|
||||||
|
|
||||||
#define SETPROP(p, q) { .v = (char *[]){ "/bin/sh", "-c", \
|
#define SETPROP(p, q) { .v = (char *[]){ "/bin/sh", "-c", \
|
||||||
"prop=\"`xprop -id $2 $0 | cut -d '\"' -f 2 | dmenu`\" &&" \
|
"prop=\"`xprop -id $2 $0 | cut -d '\"' -f 2 | dmenu`\" &&" \
|
||||||
|
|
2
surf.c
2
surf.c
|
@ -507,7 +507,7 @@ newclient(void) {
|
||||||
|
|
||||||
setatom(c, AtomFind, "");
|
setatom(c, AtomFind, "");
|
||||||
setatom(c, AtomUri, "about:blank");
|
setatom(c, AtomUri, "about:blank");
|
||||||
if(NOBACKGROUND)
|
if(HIDE_BACKGROUND)
|
||||||
webkit_web_view_set_transparent(c->view, TRUE);
|
webkit_web_view_set_transparent(c->view, TRUE);
|
||||||
|
|
||||||
c->title = NULL;
|
c->title = NULL;
|
||||||
|
|
Loading…
Reference in a new issue