polybar/include/utils/i3.hpp

35 lines
937 B
C++
Raw Normal View History

#pragma once
2016-11-02 19:22:45 +00:00
#include <i3ipc++/ipc.hpp>
#include "common.hpp"
2016-12-21 13:55:19 +00:00
#include "x11/extensions/randr.hpp"
2016-10-12 02:24:12 +00:00
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-11-26 05:13:20 +00:00
class connection;
namespace i3_util {
2016-10-12 01:57:22 +00:00
using connection_t = i3ipc::connection;
using workspace_t = i3ipc::workspace_t;
2016-12-14 03:42:21 +00:00
const auto ws_numsort = [](shared_ptr<workspace_t> a, shared_ptr<workspace_t> b) { return a->num < b->num; };
vector<shared_ptr<workspace_t>> workspaces(const connection_t& conn, const string& output = "");
shared_ptr<workspace_t> focused_workspace(const connection_t&);
2016-10-12 01:57:22 +00:00
2016-11-25 12:55:15 +00:00
vector<xcb_window_t> root_windows(connection& conn, const string& output_name = "");
bool restack_to_root(connection& conn, const xcb_window_t win);
}
2016-12-14 03:42:21 +00:00
namespace {
inline bool operator==(i3_util::workspace_t& a, i3_util::workspace_t& b) {
return a.num == b.num && a.output == b.output;
}
inline bool operator!=(i3_util::workspace_t& a, i3_util::workspace_t& b) {
return !(a == b);
}
}
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END