1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-10-27 05:23:39 -04:00
polybar/include/utils/i3.hpp

20 lines
380 B
C++
Raw Normal View History

#pragma once
2016-11-02 15:22:45 -04:00
#include <i3ipc++/ipc.hpp>
#include "common.hpp"
2016-11-02 15:22:45 -04:00
#include "x11/randr.hpp"
2016-10-11 22:24:12 -04:00
2016-11-19 00:22:44 -05:00
POLYBAR_NS
2016-11-26 00:13:20 -05:00
class connection;
namespace i3_util {
2016-10-11 21:57:22 -04:00
using connection_t = i3ipc::connection;
2016-11-25 07:55:15 -05:00
vector<xcb_window_t> root_windows(connection& conn, const string& output_name = "");
2016-11-02 15:22:45 -04:00
bool restack_above_root(connection& conn, const monitor_t& mon, const xcb_window_t win);
}
2016-11-19 00:22:44 -05:00
POLYBAR_NS_END