├── .gitignore ├── LICENSE ├── README.md ├── dist └── linux │ ├── app.desktop │ ├── ghostty_dolphin.desktop │ └── ghostty_nautilus.py ├── flake.lock ├── flake.nix ├── images └── icons │ ├── icon_1024.png │ ├── icon_128.png │ ├── icon_128@2x.png │ ├── icon_16.png │ ├── icon_16@2x.png │ ├── icon_256.png │ ├── icon_256@2x.png │ ├── icon_32.png │ ├── icon_32@2x.png │ └── icon_512.png ├── nix ├── build-support │ ├── check-zig-cache-hash.sh │ └── fetch-zig-cache.sh ├── devShell.nix ├── package.nix ├── wraptest.nix └── zigCacheHash.nix ├── shell.nix └── src ├── Keysym.zig ├── main.zig ├── options.zig ├── shell-integration ├── README.md ├── bash │ ├── bash-preexec.sh │ └── ghostty.bash ├── elvish │ └── lib │ │ └── ghostty-integration.elv ├── fish │ └── vendor_conf.d │ │ └── ghostty-shell-integration.fish └── zsh │ ├── .zshenv │ └── ghostty-integration └── wayland.zig /.gitignore: -------------------------------------------------------------------------------- 1 | zig-out 2 | .zig-cache 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/README.md -------------------------------------------------------------------------------- /dist/linux/app.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/dist/linux/app.desktop -------------------------------------------------------------------------------- /dist/linux/ghostty_dolphin.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/dist/linux/ghostty_dolphin.desktop -------------------------------------------------------------------------------- /dist/linux/ghostty_nautilus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/dist/linux/ghostty_nautilus.py -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/flake.nix -------------------------------------------------------------------------------- /images/icons/icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/images/icons/icon_1024.png -------------------------------------------------------------------------------- /images/icons/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/images/icons/icon_128.png -------------------------------------------------------------------------------- /images/icons/icon_128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/images/icons/icon_128@2x.png -------------------------------------------------------------------------------- /images/icons/icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/images/icons/icon_16.png -------------------------------------------------------------------------------- /images/icons/icon_16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/images/icons/icon_16@2x.png -------------------------------------------------------------------------------- /images/icons/icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/images/icons/icon_256.png -------------------------------------------------------------------------------- /images/icons/icon_256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/images/icons/icon_256@2x.png -------------------------------------------------------------------------------- /images/icons/icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/images/icons/icon_32.png -------------------------------------------------------------------------------- /images/icons/icon_32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/images/icons/icon_32@2x.png -------------------------------------------------------------------------------- /images/icons/icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/images/icons/icon_512.png -------------------------------------------------------------------------------- /nix/build-support/check-zig-cache-hash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/nix/build-support/check-zig-cache-hash.sh -------------------------------------------------------------------------------- /nix/build-support/fetch-zig-cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/nix/build-support/fetch-zig-cache.sh -------------------------------------------------------------------------------- /nix/devShell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/nix/devShell.nix -------------------------------------------------------------------------------- /nix/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/nix/package.nix -------------------------------------------------------------------------------- /nix/wraptest.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/nix/wraptest.nix -------------------------------------------------------------------------------- /nix/zigCacheHash.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/nix/zigCacheHash.nix -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/shell.nix -------------------------------------------------------------------------------- /src/Keysym.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/src/Keysym.zig -------------------------------------------------------------------------------- /src/main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/src/main.zig -------------------------------------------------------------------------------- /src/options.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/src/options.zig -------------------------------------------------------------------------------- /src/shell-integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/src/shell-integration/README.md -------------------------------------------------------------------------------- /src/shell-integration/bash/bash-preexec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/src/shell-integration/bash/bash-preexec.sh -------------------------------------------------------------------------------- /src/shell-integration/bash/ghostty.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/src/shell-integration/bash/ghostty.bash -------------------------------------------------------------------------------- /src/shell-integration/elvish/lib/ghostty-integration.elv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/src/shell-integration/elvish/lib/ghostty-integration.elv -------------------------------------------------------------------------------- /src/shell-integration/fish/vendor_conf.d/ghostty-shell-integration.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/src/shell-integration/fish/vendor_conf.d/ghostty-shell-integration.fish -------------------------------------------------------------------------------- /src/shell-integration/zsh/.zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/src/shell-integration/zsh/.zshenv -------------------------------------------------------------------------------- /src/shell-integration/zsh/ghostty-integration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/src/shell-integration/zsh/ghostty-integration -------------------------------------------------------------------------------- /src/wayland.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabydd/wraith/HEAD/src/wayland.zig --------------------------------------------------------------------------------