aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authormarkt <markt>2007-07-03 21:09:05 (GMT)
committermarkt <markt>2007-07-03 21:09:05 (GMT)
commit8f6434efa67b2f11548c9862aaa0d29488645500 (patch)
treead8e627d4d2b3aa4e46e4c60bd2034d93130ff45 /util
parentdf5974b9235a345ae68fa8ff96256ae68ab2518b (diff)
downloadfluxbox-8f6434efa67b2f11548c9862aaa0d29488645500.zip
fluxbox-8f6434efa67b2f11548c9862aaa0d29488645500.tar.bz2
stop gvim from repeatedly resizing tabbed windows
Diffstat (limited to 'util')
-rw-r--r--util/fluxbox-remote.cc20
1 files changed, 14 insertions, 6 deletions
diff --git a/util/fluxbox-remote.cc b/util/fluxbox-remote.cc
index eb7a413..67c2193 100644
--- a/util/fluxbox-remote.cc
+++ b/util/fluxbox-remote.cc
@@ -24,15 +24,21 @@
24#include <X11/Xlib.h> 24#include <X11/Xlib.h>
25#include <X11/Xatom.h> 25#include <X11/Xatom.h>
26#include <string.h> 26#include <string.h>
27#include <stdlib.h>
28#include <stdio.h>
27 29
28int main(int argc, char **argv) { 30int main(int argc, char **argv) {
29 31
30 if (argc <= 1) 32 if (argc <= 1) {
31 return 1; 33 printf("fluxbox-remote <fluxbox-command>\n");
34 return EXIT_SUCCESS;
35 }
32 36
33 Display *disp = XOpenDisplay(NULL); 37 Display *disp = XOpenDisplay(NULL);
34 if (!disp) 38 if (!disp) {
35 return 1; 39 perror("error, can't open display.");
40 return EXIT_FAILURE;
41 }
36 42
37 Atom fbcmd_atom = XInternAtom(disp, "_FLUXBOX_COMMAND", False); 43 Atom fbcmd_atom = XInternAtom(disp, "_FLUXBOX_COMMAND", False);
38 Window root = DefaultRootWindow(disp); 44 Window root = DefaultRootWindow(disp);
@@ -44,6 +50,8 @@ int main(int argc, char **argv) {
44 XCloseDisplay(disp); 50 XCloseDisplay(disp);
45 51
46 if (ret == Success) 52 if (ret == Success)
47 return 0; 53 return EXIT_SUCCESS;
48 return 1; 54
55 return EXIT_FAILURE;
49} 56}
57