gitextract_b40pju7c/ ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── FUNDING.yml │ ├── SECURITY.md │ └── workflows/ │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── cmd/ │ └── hexecute/ │ └── main.go ├── flake.nix ├── go.mod ├── go.sum ├── internal/ │ ├── config/ │ │ └── config.go │ ├── draw/ │ │ └── draw.go │ ├── execute/ │ │ └── execute.go │ ├── gesture/ │ │ └── gesture.go │ ├── models/ │ │ └── models.go │ ├── opengl/ │ │ └── opengl.go │ ├── shaders/ │ │ ├── background.frag.glsl │ │ ├── background.vert.glsl │ │ ├── cursorGlow.frag.glsl │ │ ├── cursorGlow.vert.glsl │ │ ├── line.frag.glsl │ │ ├── line.vert.glsl │ │ ├── particle.frag.glsl │ │ ├── particle.vert.glsl │ │ ├── paths.go │ │ └── shader.go │ ├── spawn/ │ │ └── spawn.go │ ├── stroke/ │ │ └── stroke.go │ └── update/ │ └── update.go └── pkg/ └── wayland/ ├── .clangd ├── keyboard-shortcuts-inhibit-client.h ├── tablet-v2.c ├── tablet-v2.h ├── wayland.c ├── wayland.go ├── wayland.h └── wlr-layer-shell-client.h