don't modify display if we're on Xinerama
This commit is contained in:
parent
ecf79693a2
commit
3bba90fa38
3
util.c
3
util.c
|
@ -27,6 +27,7 @@
|
||||||
|
|
||||||
#include <X11/Xutil.h>
|
#include <X11/Xutil.h>
|
||||||
#include <X11/Xatom.h>
|
#include <X11/Xatom.h>
|
||||||
|
#include <X11/extensions/Xinerama.h>
|
||||||
|
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
||||||
|
@ -67,7 +68,7 @@ uicb_spawn(Display * disp,
|
||||||
if(!arg)
|
if(!arg)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if((tmp = getenv("DISPLAY")))
|
if(XineramaIsActive(disp) && (tmp = getenv("DISPLAY")))
|
||||||
{
|
{
|
||||||
display = a_strdup(tmp);
|
display = a_strdup(tmp);
|
||||||
if((tmp = strrchr(display, '.')))
|
if((tmp = strrchr(display, '.')))
|
||||||
|
|
Loading…
Reference in New Issue