mirror of
https://github.com/hyprwm/Hypr.git
synced 2024-11-15 19:25:57 +01:00
18 lines
445 B
C++
18 lines
445 B
C++
#pragma once
|
|
|
|
#include "../defines.hpp"
|
|
|
|
namespace EWMH {
|
|
void setupInitEWMH();
|
|
void updateCurrentWindow(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;
|
|
};
|