Hypr/src/ewmh/ewmh.hpp
2021-12-21 10:46:22 +01:00

19 lines
493 B
C++

#pragma once
#include "../defines.hpp"
namespace EWMH {
void setupInitEWMH();
void updateCurrentWindow(xcb_window_t);
void updateWindow(xcb_window_t);
void updateClientList();
void setFrameExtents(xcb_window_t);
void refreshAllExtents();
void updateDesktops();
namespace DesktopInfo {
inline int lastid = 0;
};
inline xcb_window_t EWMHwindow = XCB_WINDOW_NONE;
};