├── .clang-format ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── hyprload.toml ├── include ├── customDecoration.hpp ├── customLayout.hpp └── globals.hpp └── src ├── customDecoration.cpp ├── customLayout.cpp └── main.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-plugin-template/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | compile_flags.txt 2 | obj/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-plugin-template/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-plugin-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-plugin-template/HEAD/README.md -------------------------------------------------------------------------------- /hyprload.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-plugin-template/HEAD/hyprload.toml -------------------------------------------------------------------------------- /include/customDecoration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-plugin-template/HEAD/include/customDecoration.hpp -------------------------------------------------------------------------------- /include/customLayout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-plugin-template/HEAD/include/customLayout.hpp -------------------------------------------------------------------------------- /include/globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-plugin-template/HEAD/include/globals.hpp -------------------------------------------------------------------------------- /src/customDecoration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-plugin-template/HEAD/src/customDecoration.cpp -------------------------------------------------------------------------------- /src/customLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-plugin-template/HEAD/src/customLayout.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-plugin-template/HEAD/src/main.cpp --------------------------------------------------------------------------------