]> git.lizzy.rs Git - bspwm.git/blobdiff - bspwm.c
Use consistent names
[bspwm.git] / bspwm.c
diff --git a/bspwm.c b/bspwm.c
index 958098d37e08f36f9d72a22c09b0b6e691d61952..fa6f36393ef8896285ce70586bd2192c17306e99 100644 (file)
--- a/bspwm.c
+++ b/bspwm.c
@@ -20,6 +20,7 @@
 #include "events.h"
 #include "common.h"
 #include "helpers.h"
+#include "window.h"
 #include "bspwm.h"
 #include "tree.h"
 #include "ewmh.h"
@@ -29,34 +30,43 @@ void quit(void)
     running = false;
 }
 
+void cleanup(void)
+{
+    while (mon_head != NULL)
+        remove_monitor(mon_head);
+    while (rule_head != NULL)
+        remove_rule(rule_head);
+    free(frozen_pointer);
+}
+
 void register_events(void)
 {
     uint32_t values[] = {ROOT_EVENT_MASK};
-    xcb_generic_error_t *e = xcb_request_check(dpy, xcb_change_window_attributes_checked(dpy, screen->root, XCB_CW_EVENT_MASK, values));
+    xcb_generic_error_t *e = xcb_request_check(dpy, xcb_change_window_attributes_checked(dpy, root, XCB_CW_EVENT_MASK, values));
     if (e != NULL) {
         xcb_disconnect(dpy);
-        err("another WM is already running\n");
+        err("Another window manager is already running.\n");
     }
 }
 
-void grab_buttons(void)
-{
-    xcb_grab_button(dpy, false, screen->root, XCB_EVENT_MASK_BUTTON_PRESS, XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC, XCB_NONE, XCB_NONE, XCB_BUTTON_INDEX_1, button_modifier);
-    xcb_grab_button(dpy, false, screen->root, XCB_EVENT_MASK_BUTTON_PRESS, XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC, XCB_NONE, XCB_NONE, XCB_BUTTON_INDEX_2, button_modifier);
-    xcb_grab_button(dpy, false, screen->root, XCB_EVENT_MASK_BUTTON_PRESS, XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC, XCB_NONE, XCB_NONE, XCB_BUTTON_INDEX_3, button_modifier);
-}
-
 void setup(void)
 {
     ewmh_init();
     screen = xcb_setup_roots_iterator(xcb_get_setup(dpy)).data;
-    if (!screen)
-        err("error: cannot aquire screen\n");
+    if (screen == NULL)
+        err("Can't acquire the default screen.\n");
+    root = screen->root;
+    register_events();
 
     screen_width = screen->width_in_pixels;
     screen_height = screen->height_in_pixels;
     root_depth = screen->root_depth;
 
+    uint32_t mask = XCB_CW_EVENT_MASK;
+    uint32_t values[] = {XCB_EVENT_MASK_POINTER_MOTION};
+    motion_recorder = xcb_generate_id(dpy);
+    xcb_create_window(dpy, XCB_COPY_FROM_PARENT, motion_recorder, root, 0, 0, screen_width, screen_height, 0, XCB_WINDOW_CLASS_INPUT_ONLY, XCB_COPY_FROM_PARENT, mask, values);
+
     xcb_atom_t net_atoms[] = {ewmh->_NET_SUPPORTED,
                               ewmh->_NET_DESKTOP_NAMES,
                               ewmh->_NET_NUMBER_OF_DESKTOPS,
@@ -66,6 +76,7 @@ void setup(void)
                               ewmh->_NET_WM_DESKTOP,
                               ewmh->_NET_WM_STATE,
                               ewmh->_NET_WM_STATE_FULLSCREEN,
+                              ewmh->_NET_WM_STATE_DEMANDS_ATTENTION,
                               ewmh->_NET_WM_WINDOW_TYPE,
                               ewmh->_NET_WM_WINDOW_TYPE_DOCK,
                               ewmh->_NET_WM_WINDOW_TYPE_NOTIFICATION,
@@ -75,7 +86,14 @@ void setup(void)
 
     xcb_ewmh_set_supported(ewmh, default_screen, LENGTH(net_atoms), net_atoms);
 
-    monitor_uid = desktop_uid = client_uid = 0;
+    xcb_intern_atom_reply_t *iar = xcb_intern_atom_reply(dpy, xcb_intern_atom(dpy, 0, strlen("_COMPTON_SHADOW"), "_COMPTON_SHADOW"), NULL);
+
+    if (iar != NULL) {
+        compton_shadow = iar->atom;
+        free(iar);
+    }
+
+    monitor_uid = desktop_uid = client_uid = rule_uid = 0;
     mon = last_mon = mon_head = mon_tail = NULL;
 
     bool xinerama_is_active = false;
@@ -92,7 +110,6 @@ void setup(void)
         xcb_xinerama_query_screens_reply_t *xsq = xcb_xinerama_query_screens_reply(dpy, xcb_xinerama_query_screens(dpy), NULL);
         xcb_xinerama_screen_info_t *xsi = xcb_xinerama_query_screens_screen_info(xsq);
         int n = xcb_xinerama_query_screens_screen_info_length(xsq);
-        PRINTF("number of monitors: %d\n", n);
         for (int i = 0; i < n; i++) {
             xcb_xinerama_screen_info_t info = xsi[i];
             xcb_rectangle_t rect = (xcb_rectangle_t) {info.x_org, info.y_org, info.width, info.height};
@@ -100,7 +117,7 @@ void setup(void)
         }
         free(xsq);
     } else {
-        warn("Xinerama is inactive");
+        warn("Xinerama is inactive.");
         xcb_rectangle_t rect = (xcb_rectangle_t) {0, 0, screen_width, screen_height};
         add_monitor(&rect);
     }
@@ -110,38 +127,58 @@ void setup(void)
 
     ewmh_update_number_of_desktops();
     ewmh_update_desktop_names();
-    rule_head = make_rule();
+    ewmh_update_current_desktop();
+    rule_head = rule_tail = NULL;
     frozen_pointer = make_pointer_state();
-    get_pointer_position(&pointer_position);
     split_mode = MODE_AUTOMATIC;
+    visible = true;
+    exit_status = 0;
 }
 
-int main(void)
+int main(int argc, char *argv[])
 {
     fd_set descriptors;
     char socket_path[MAXLEN];
+    char *fifo_path = NULL;
+    status_prefix = NULL;
     int sock_fd, ret_fd, dpy_fd, sel, n;
     struct sockaddr_un sock_address;
     size_t rsplen = 0;
     char msg[BUFSIZ] = {0};
     char rsp[BUFSIZ] = {0};
-
     xcb_generic_event_t *event;
+    char opt;
+
+    while ((opt = getopt(argc, argv, "hvs:p:")) != -1) {
+        switch (opt) {
+            case 'h':
+                printf("bspwm [-h|-v|-s PANEL_FIFO|-p PANEL_PREFIX]\n");
+                exit(EXIT_SUCCESS);
+                break;
+            case 'v':
+                printf("%s\n", VERSION);
+                exit(EXIT_SUCCESS);
+                break;
+            case 's':
+                fifo_path = optarg;
+                break;
+            case 'p':
+                status_prefix = optarg;
+                break;
+        }
+    }
 
     running = true;
-
     dpy = xcb_connect(NULL, &default_screen);
 
     if (xcb_connection_has_error(dpy))
-        err("error: cannot open display\n");
+        err("Can't open the default display.\n");
 
     setup();
-    register_events();
 
     dpy_fd = xcb_get_file_descriptor(dpy);
 
     char *sp = getenv(SOCKET_ENV_VAR);
-
     strncpy(socket_path, (sp == NULL ? DEFAULT_SOCKET_PATH : sp), sizeof(socket_path));
 
     sock_address.sun_family = AF_UNIX;
@@ -151,17 +188,27 @@ int main(void)
     sock_fd = socket(AF_UNIX, SOCK_STREAM, 0);
 
     if (sock_fd == -1)
-        err("error: could not create socket\n");
+        err("Couldn't create the socket.\n");
+
+    if (bind(sock_fd, (struct sockaddr *) &sock_address, sizeof(sock_address)) == -1)
+        err("Couldn't bind a name to the socket.\n");
 
-    bind(sock_fd, (struct sockaddr *) &sock_address, sizeof(sock_address));
-    listen(sock_fd, SOMAXCONN);
+    if (listen(sock_fd, SOMAXCONN) == -1)
+        err("Couldn't listen to the socket.\n");
 
     sel = MAX(sock_fd, dpy_fd) + 1;
 
+    if (fifo_path != NULL) {
+        int fifo_fd = open(fifo_path, O_RDWR | O_NONBLOCK);
+        if (fifo_fd != -1)
+            status_fifo = fdopen(fifo_fd, "w");
+        else
+            warn("Couldn't open status fifo.\n");
+    }
+
     load_settings();
     run_autostart();
     ewmh_update_wm_name();
-    grab_buttons();
 
     while (running) {
 
@@ -171,7 +218,7 @@ int main(void)
         FD_SET(sock_fd, &descriptors);
         FD_SET(dpy_fd, &descriptors);
 
-        if (select(sel, &descriptors, NULL, NULL, NULL)) {
+        if (select(sel, &descriptors, NULL, NULL, NULL) > 0) {
 
             if (FD_ISSET(sock_fd, &descriptors)) {
                 ret_fd = accept(sock_fd, NULL, 0);
@@ -196,15 +243,18 @@ int main(void)
 
         }
 
-        if (xcb_connection_has_error(dpy)) {
-            err("connection has errors\n");
-        }
+        if (xcb_connection_has_error(dpy))
+            err("The server has closed the connection.\n");
     }
 
+    cleanup();
     close(sock_fd);
+    if (status_fifo != NULL)
+        fclose(status_fifo);
     xcb_ewmh_connection_wipe(ewmh);
+    xcb_destroy_window(dpy, motion_recorder);
     free(ewmh);
     xcb_flush(dpy);
     xcb_disconnect(dpy);
-    return 0;
+    return exit_status;
 }