hyprshell-hyprland-plugin 4.9.2

Plugin for hyprland, used to monitor keypresses
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <hyprland/src/plugins/PluginAPI.hpp>
#include "globals.h"

// Do NOT change this function.
APICALL EXPORT std::string PLUGIN_API_VERSION() {
    return HYPRLAND_API_VERSION;
}

APICALL EXPORT PLUGIN_DESCRIPTION_INFO PLUGIN_INIT(HANDLE handle) {
    auto [name, description, author, version] = init(handle);
    return {name, description, author, version};
}

APICALL EXPORT void PLUGIN_EXIT() {
    return exit();
}