├── .clang-format ├── .clangd ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── flake.lock ├── flake.nix ├── hyprpm.toml ├── meson.build ├── meson.options └── src ├── config.hpp ├── globals.hpp ├── input.cpp ├── layout ├── grid.cpp ├── grid.hpp ├── layout_base.cpp ├── layout_base.hpp ├── linear.cpp └── linear.hpp ├── main.cpp ├── manager.cpp ├── manager.hpp ├── overview.cpp ├── overview.hpp ├── pass ├── pass_element.cpp └── pass_element.hpp ├── render.cpp ├── render.hpp └── types.hpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/.clang-format -------------------------------------------------------------------------------- /.clangd: -------------------------------------------------------------------------------- 1 | CompileFlags: 2 | Remove: [--no-gnu-unique] 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/flake.nix -------------------------------------------------------------------------------- /hyprpm.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/hyprpm.toml -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/meson.build -------------------------------------------------------------------------------- /meson.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/meson.options -------------------------------------------------------------------------------- /src/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/src/config.hpp -------------------------------------------------------------------------------- /src/globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/src/globals.hpp -------------------------------------------------------------------------------- /src/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/src/input.cpp -------------------------------------------------------------------------------- /src/layout/grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/src/layout/grid.cpp -------------------------------------------------------------------------------- /src/layout/grid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/src/layout/grid.hpp -------------------------------------------------------------------------------- /src/layout/layout_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/src/layout/layout_base.cpp -------------------------------------------------------------------------------- /src/layout/layout_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/src/layout/layout_base.hpp -------------------------------------------------------------------------------- /src/layout/linear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/src/layout/linear.cpp -------------------------------------------------------------------------------- /src/layout/linear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/src/layout/linear.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/src/manager.cpp -------------------------------------------------------------------------------- /src/manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/src/manager.hpp -------------------------------------------------------------------------------- /src/overview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/src/overview.cpp -------------------------------------------------------------------------------- /src/overview.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/src/overview.hpp -------------------------------------------------------------------------------- /src/pass/pass_element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/src/pass/pass_element.cpp -------------------------------------------------------------------------------- /src/pass/pass_element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/src/pass/pass_element.hpp -------------------------------------------------------------------------------- /src/render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/src/render.cpp -------------------------------------------------------------------------------- /src/render.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/src/render.hpp -------------------------------------------------------------------------------- /src/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raybbian/hyprtasking/HEAD/src/types.hpp --------------------------------------------------------------------------------