├── .envrc ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── flake.lock ├── flake.nix ├── ghostwrite.c └── ghostwrite.svg /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ghostwrite 2 | .direnv 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cispa/GhostWrite/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cispa/GhostWrite/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cispa/GhostWrite/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cispa/GhostWrite/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cispa/GhostWrite/HEAD/flake.nix -------------------------------------------------------------------------------- /ghostwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cispa/GhostWrite/HEAD/ghostwrite.c -------------------------------------------------------------------------------- /ghostwrite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cispa/GhostWrite/HEAD/ghostwrite.svg --------------------------------------------------------------------------------