├── .clangd ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── easymotionDeco.cpp ├── easymotionDeco.hpp ├── flake.lock ├── flake.nix ├── globals.hpp ├── hyprpm.toml └── main.cpp /.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakk4223/hyprland-easymotion/HEAD/.clangd -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.so 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakk4223/hyprland-easymotion/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakk4223/hyprland-easymotion/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakk4223/hyprland-easymotion/HEAD/README.md -------------------------------------------------------------------------------- /easymotionDeco.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakk4223/hyprland-easymotion/HEAD/easymotionDeco.cpp -------------------------------------------------------------------------------- /easymotionDeco.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakk4223/hyprland-easymotion/HEAD/easymotionDeco.hpp -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakk4223/hyprland-easymotion/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakk4223/hyprland-easymotion/HEAD/flake.nix -------------------------------------------------------------------------------- /globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakk4223/hyprland-easymotion/HEAD/globals.hpp -------------------------------------------------------------------------------- /hyprpm.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakk4223/hyprland-easymotion/HEAD/hyprpm.toml -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakk4223/hyprland-easymotion/HEAD/main.cpp --------------------------------------------------------------------------------