├── .clang-format ├── .github └── workflows │ └── nix.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── VERSION ├── flake.lock ├── flake.nix ├── hyprwayland-scanner-config.cmake.in ├── hyprwayland-scanner.pc.in ├── nix └── default.nix └── src └── main.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprwayland-scanner/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/nix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprwayland-scanner/HEAD/.github/workflows/nix.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprwayland-scanner/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprwayland-scanner/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprwayland-scanner/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprwayland-scanner/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.4.5 2 | -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprwayland-scanner/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprwayland-scanner/HEAD/flake.nix -------------------------------------------------------------------------------- /hyprwayland-scanner-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprwayland-scanner/HEAD/hyprwayland-scanner-config.cmake.in -------------------------------------------------------------------------------- /hyprwayland-scanner.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprwayland-scanner/HEAD/hyprwayland-scanner.pc.in -------------------------------------------------------------------------------- /nix/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprwayland-scanner/HEAD/nix/default.nix -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprwayland-scanner/HEAD/src/main.cpp --------------------------------------------------------------------------------