mirror of
https://github.com/hyprwm/Hypr.git
synced 2024-11-15 11:15:59 +01:00
19 lines
493 B
C++
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;
|
|
};
|