├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── default.nix ├── flake.lock ├── flake.nix ├── hyprpm.toml ├── install.sh ├── meson.build └── src ├── OvGridLayout.cpp ├── OvGridLayout.hpp ├── dispatchers.cpp ├── dispatchers.hpp ├── globaleventhook.cpp ├── globaleventhook.hpp ├── globals.hpp ├── log.hpp └── main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | /result 2 | /build 3 | /.vscode 4 | /.cache -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bighu630/hycov/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bighu630/hycov/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bighu630/hycov/HEAD/README.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bighu630/hycov/HEAD/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bighu630/hycov/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bighu630/hycov/HEAD/flake.nix -------------------------------------------------------------------------------- /hyprpm.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bighu630/hycov/HEAD/hyprpm.toml -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bighu630/hycov/HEAD/install.sh -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bighu630/hycov/HEAD/meson.build -------------------------------------------------------------------------------- /src/OvGridLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bighu630/hycov/HEAD/src/OvGridLayout.cpp -------------------------------------------------------------------------------- /src/OvGridLayout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bighu630/hycov/HEAD/src/OvGridLayout.hpp -------------------------------------------------------------------------------- /src/dispatchers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bighu630/hycov/HEAD/src/dispatchers.cpp -------------------------------------------------------------------------------- /src/dispatchers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bighu630/hycov/HEAD/src/dispatchers.hpp -------------------------------------------------------------------------------- /src/globaleventhook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bighu630/hycov/HEAD/src/globaleventhook.cpp -------------------------------------------------------------------------------- /src/globaleventhook.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void registerGlobalEventHook(); 4 | -------------------------------------------------------------------------------- /src/globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bighu630/hycov/HEAD/src/globals.hpp -------------------------------------------------------------------------------- /src/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bighu630/hycov/HEAD/src/log.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bighu630/hycov/HEAD/src/main.cpp --------------------------------------------------------------------------------