hyprshell-hyprland-plugin 4.8.1

Plugin for hyprland, used to monitor keypresses
Documentation
1
2
3
4
5
6
7
8
9
10
11
#include "globals.h"
#include <hyprland/src/desktop/LayerSurface.hpp>

void onKeyboardFocus(const SP<CWLSurfaceResource> &surface) {
    if (LAYER_VISIBLE) {
        if constexpr (HYPRSHELL_PRINT_DEBUG == 1) {
            HyprlandAPI::addNotification(PHANDLE, "Focus change", GREEN, 5000);
        }
        // TODO focus layer
    }
}