polybar/include/utils/bspwm.hpp

38 lines
785 B
C++
Raw Normal View History

2016-06-14 23:32:35 -04:00
#pragma once
#include <xcb/xcb.h>
#include <xcb/xcb_icccm.h>
2016-06-14 23:32:35 -04:00
#include "common.hpp"
2017-01-10 21:07:28 -05:00
#include "settings.hpp"
2016-06-14 23:32:35 -04:00
#include "utils/socket.hpp"
#include "utils/string.hpp"
2016-12-21 08:55:19 -05:00
#include "x11/extensions/randr.hpp"
2016-11-02 15:22:45 -04:00
#include "x11/window.hpp"
2016-06-14 23:32:35 -04:00
2016-11-19 00:22:44 -05:00
POLYBAR_NS
2016-06-14 23:32:35 -04:00
2016-11-26 00:13:20 -05:00
class connection;
2016-06-14 23:32:35 -04:00
namespace bspwm_util {
struct payload;
using connection_t = unique_ptr<socket_util::unix_connection>;
2016-06-14 23:32:35 -04:00
using payload_t = unique_ptr<payload>;
struct payload {
char data[BUFSIZ]{'\0'};
size_t len = 0;
};
2016-11-02 15:22:45 -04:00
vector<xcb_window_t> root_windows(connection& conn);
2017-01-01 09:45:18 -05:00
bool restack_to_root(connection& conn, const monitor_t& mon, const xcb_window_t win);
2016-11-02 15:22:45 -04:00
string get_socket_path();
2016-11-25 07:55:15 -05:00
payload_t make_payload(const string& cmd);
2016-11-02 15:22:45 -04:00
connection_t make_connection();
connection_t make_subscriber();
2016-06-14 23:32:35 -04:00
}
2016-11-19 00:22:44 -05:00
POLYBAR_NS_END