├── .editorconfig ├── .env.sample ├── .envrc ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── 1-bug-report.yml │ └── config.yml └── workflows │ ├── test.yml │ └── warn-autogenerated-files.yaml ├── .gitignore ├── .prettierrc ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── bin └── video-to-terminal │ ├── README.md │ ├── video-to-terminal.sh │ └── video.mp4 ├── docker-compose.yaml ├── docs ├── about.mdx ├── config │ ├── index.mdx │ ├── keybind │ │ ├── index.mdx │ │ ├── reference.mdx │ │ └── sequence.mdx │ └── reference.mdx ├── features │ ├── index.mdx │ ├── shell-integration.mdx │ └── theme.mdx ├── help │ ├── gtk-opengl-context.mdx │ ├── gtk-single-instance.mdx │ ├── index.mdx │ ├── macos-login-shells.mdx │ ├── macos-tiling-wms.mdx │ ├── synchronized-output.mdx │ └── terminfo.mdx ├── index.mdx ├── install │ ├── binary.mdx │ ├── build.mdx │ ├── package.mdx │ ├── pre.mdx │ └── release-notes │ │ ├── 1-0-1.mdx │ │ ├── 1-1-0.mdx │ │ ├── 1-1-1.mdx │ │ ├── 1-1-2.mdx │ │ ├── 1-1-3.mdx │ │ ├── 1-2-0.mdx │ │ ├── 1-2-1.mdx │ │ ├── 1-2-2.mdx │ │ ├── 1-2-3.mdx │ │ └── index.mdx ├── linux │ ├── index.mdx │ └── systemd.mdx ├── nav.json ├── sponsor.mdx └── vt │ ├── concepts │ ├── colors.mdx │ ├── cursor.mdx │ ├── screen.mdx │ └── sequences.mdx │ ├── control │ ├── bel.mdx │ ├── bs.mdx │ ├── cr.mdx │ ├── lf.mdx │ └── tab.mdx │ ├── csi │ ├── cbt.mdx │ ├── cht.mdx │ ├── cnl.mdx │ ├── cpl.mdx │ ├── cub.mdx │ ├── cud.mdx │ ├── cuf.mdx │ ├── cup.mdx │ ├── cuu.mdx │ ├── dch.mdx │ ├── decscusr.mdx │ ├── decslrm.mdx │ ├── decstbm.mdx │ ├── dl.mdx │ ├── dsr.mdx │ ├── ech.mdx │ ├── ed.mdx │ ├── el.mdx │ ├── hpa.mdx │ ├── hpr.mdx │ ├── ich.mdx │ ├── il.mdx │ ├── rep.mdx │ ├── sd.mdx │ ├── su.mdx │ ├── tbc.mdx │ ├── vpa.mdx │ ├── vpr.mdx │ └── xtshiftescape.mdx │ ├── esc │ ├── decaln.mdx │ ├── deckpam.mdx │ ├── deckpnm.mdx │ ├── decrc.mdx │ ├── decsc.mdx │ ├── ind.mdx │ ├── ri.mdx │ └── ris.mdx │ ├── external.mdx │ ├── index.mdx │ ├── osc │ ├── 0.mdx │ ├── 1.mdx │ ├── 104.mdx │ ├── 105.mdx │ ├── 11x.mdx │ ├── 1x.mdx │ ├── 2.mdx │ ├── 22.mdx │ ├── 4.mdx │ ├── 5.mdx │ ├── 52.mdx │ ├── 7.mdx │ ├── 8.mdx │ ├── 9.mdx │ └── conemu.mdx │ └── reference.mdx ├── flake.lock ├── flake.nix ├── next.config.mjs ├── nix └── devShell.nix ├── package.json ├── postcss.config.json ├── public ├── favicon-128.png ├── favicon-16.png ├── favicon-256.png ├── favicon-32.png ├── favicon.ico ├── ghostty-404.png ├── ghostty-logo.svg ├── images │ ├── 1-1-0 │ │ ├── csd.png │ │ ├── linear-corrected_blending.png │ │ ├── linear_blending.png │ │ ├── p3_blending.png │ │ ├── srgb_blending.png │ │ └── ssd.png │ └── 1-2-0 │ │ ├── adjust-new.png │ │ ├── adjust-old.png │ │ ├── background-image.png │ │ ├── gnome.png │ │ ├── macos.png │ │ ├── palette-gtk.png │ │ ├── palette-macos.png │ │ ├── quick-terminal-gtk.png │ │ ├── quick-terminal-pos1.png │ │ ├── quick-terminal-pos2.png │ │ ├── shortcuts.png │ │ ├── sprites-new.png │ │ └── sprites-old.png ├── next.svg ├── social-share-card.jpg └── vercel.svg ├── src ├── components │ ├── animated-terminal │ │ └── index.tsx │ ├── blockquote │ │ ├── Blockquote.module.css │ │ └── index.tsx │ ├── breadcrumbs │ │ ├── Breadcrumbs.module.css │ │ └── index.tsx │ ├── button-links │ │ ├── ButtonLinks.module.css │ │ └── index.tsx │ ├── button │ │ ├── Button.module.css │ │ └── index.tsx │ ├── callout │ │ ├── Callout.module.css │ │ └── index.tsx │ ├── card-links │ │ ├── CardLinks.module.css │ │ └── index.tsx │ ├── codeblock │ │ ├── CodeBlock.module.css │ │ └── index.tsx │ ├── custom-mdx │ │ ├── CustomMDX.module.css │ │ └── index.tsx │ ├── donate-card │ │ ├── DonateCard.module.css │ │ └── index.tsx │ ├── footer │ │ ├── Footer.module.css │ │ └── index.tsx │ ├── generic-404 │ │ ├── Generic404.module.css │ │ └── index.tsx │ ├── generic-card │ │ ├── GenericCard.module.css │ │ └── index.tsx │ ├── github │ │ ├── GitHub.module.css │ │ ├── index.tsx │ │ └── mdx.tsx │ ├── grid-container │ │ ├── GridContainer.module.css │ │ └── index.tsx │ ├── info-cards-section │ │ ├── InfoCards.module.css │ │ └── index.tsx │ ├── jumplink-header │ │ ├── JumplinkHeader.module.css │ │ └── index.tsx │ ├── link │ │ ├── Link.module.css │ │ └── index.tsx │ ├── mermaid │ │ └── index.tsx │ ├── nav-tree │ │ ├── NavTree.module.css │ │ └── index.tsx │ ├── navbar │ │ ├── Navbar.module.css │ │ ├── ghostty-wordmark.svg │ │ └── index.tsx │ ├── preview-banner │ │ ├── PreviewBanner.module.css │ │ └── index.tsx │ ├── scroll-to-top │ │ ├── ScrollToTop.module.css │ │ └── index.tsx │ ├── section-wrapper │ │ ├── SectionWrapper.module.css │ │ └── index.tsx │ ├── sidecar │ │ ├── Sidecar.module.css │ │ └── index.tsx │ ├── tabbed-terminals-section │ │ ├── TabbedTerminalsSection.module.css │ │ └── index.tsx │ ├── tag-list │ │ ├── TagList.module.css │ │ └── index.tsx │ ├── terminal-cards-section │ │ ├── TerminalCardsSection.module.css │ │ └── index.tsx │ ├── terminal │ │ ├── Terminal.module.css │ │ └── index.tsx │ ├── text │ │ ├── Text.module.css │ │ ├── font │ │ │ └── pretendard-std-variable.woff2 │ │ └── index.tsx │ ├── video │ │ └── index.tsx │ └── vt-sequence │ │ ├── VTSequence.module.css │ │ └── index.tsx ├── layouts │ ├── nav-footer-layout │ │ └── index.tsx │ └── root-layout │ │ ├── RootLayout.module.css │ │ └── index.tsx ├── lib │ ├── fetch-docs.ts │ ├── fetch-latest-ghostty-version.ts │ ├── fetch-nav.ts │ ├── fetch-terminal-content.ts │ ├── nav-tree-to-breadcrumbs.ts │ └── use-store.ts ├── pages │ ├── 404.tsx │ ├── 404Page.module.css │ ├── Home.module.css │ ├── _app.tsx │ ├── _document.tsx │ ├── docs │ │ ├── [...path] │ │ │ ├── DocsPage.module.css │ │ │ └── index.tsx │ │ └── index.tsx │ ├── download │ │ ├── DownloadPage.module.css │ │ ├── index.tsx │ │ ├── release.tsx │ │ └── tip.tsx │ └── index.tsx ├── styles │ └── globals.css └── types │ └── style.ts ├── terminals └── home │ └── animation_frames │ ├── frame_001.txt │ ├── frame_002.txt │ ├── frame_003.txt │ ├── frame_004.txt │ ├── frame_005.txt │ ├── frame_006.txt │ ├── frame_007.txt │ ├── frame_008.txt │ ├── frame_009.txt │ ├── frame_010.txt │ ├── frame_011.txt │ ├── frame_012.txt │ ├── frame_013.txt │ ├── frame_014.txt │ ├── frame_015.txt │ ├── frame_016.txt │ ├── frame_017.txt │ ├── frame_018.txt │ ├── frame_019.txt │ ├── frame_020.txt │ ├── frame_021.txt │ ├── frame_022.txt │ ├── frame_023.txt │ ├── frame_024.txt │ ├── frame_025.txt │ ├── frame_026.txt │ ├── frame_027.txt │ ├── frame_028.txt │ ├── frame_029.txt │ ├── frame_030.txt │ ├── frame_031.txt │ ├── frame_032.txt │ ├── frame_033.txt │ ├── frame_034.txt │ ├── frame_035.txt │ ├── frame_036.txt │ ├── frame_037.txt │ ├── frame_038.txt │ ├── frame_039.txt │ ├── frame_040.txt │ ├── frame_041.txt │ ├── frame_042.txt │ ├── frame_043.txt │ ├── frame_044.txt │ ├── frame_045.txt │ ├── frame_046.txt │ ├── frame_047.txt │ ├── frame_048.txt │ ├── frame_049.txt │ ├── frame_050.txt │ ├── frame_051.txt │ ├── frame_052.txt │ ├── frame_053.txt │ ├── frame_054.txt │ ├── frame_055.txt │ ├── frame_056.txt │ ├── frame_057.txt │ ├── frame_058.txt │ ├── frame_059.txt │ ├── frame_060.txt │ ├── frame_061.txt │ ├── frame_062.txt │ ├── frame_063.txt │ ├── frame_064.txt │ ├── frame_065.txt │ ├── frame_066.txt │ ├── frame_067.txt │ ├── frame_068.txt │ ├── frame_069.txt │ ├── frame_070.txt │ ├── frame_071.txt │ ├── frame_072.txt │ ├── frame_073.txt │ ├── frame_074.txt │ ├── frame_075.txt │ ├── frame_076.txt │ ├── frame_077.txt │ ├── frame_078.txt │ ├── frame_079.txt │ ├── frame_080.txt │ ├── frame_081.txt │ ├── frame_082.txt │ ├── frame_083.txt │ ├── frame_084.txt │ ├── frame_085.txt │ ├── frame_086.txt │ ├── frame_087.txt │ ├── frame_088.txt │ ├── frame_089.txt │ ├── frame_090.txt │ ├── frame_091.txt │ ├── frame_092.txt │ ├── frame_093.txt │ ├── frame_094.txt │ ├── frame_095.txt │ ├── frame_096.txt │ ├── frame_097.txt │ ├── frame_098.txt │ ├── frame_099.txt │ ├── frame_100.txt │ ├── frame_101.txt │ ├── frame_102.txt │ ├── frame_103.txt │ ├── frame_104.txt │ ├── frame_105.txt │ ├── frame_106.txt │ ├── frame_107.txt │ ├── frame_108.txt │ ├── frame_109.txt │ ├── frame_110.txt │ ├── frame_111.txt │ ├── frame_112.txt │ ├── frame_113.txt │ ├── frame_114.txt │ ├── frame_115.txt │ ├── frame_116.txt │ ├── frame_117.txt │ ├── frame_118.txt │ ├── frame_119.txt │ ├── frame_120.txt │ ├── frame_121.txt │ ├── frame_122.txt │ ├── frame_123.txt │ ├── frame_124.txt │ ├── frame_125.txt │ ├── frame_126.txt │ ├── frame_127.txt │ ├── frame_128.txt │ ├── frame_129.txt │ ├── frame_130.txt │ ├── frame_131.txt │ ├── frame_132.txt │ ├── frame_133.txt │ ├── frame_134.txt │ ├── frame_135.txt │ ├── frame_136.txt │ ├── frame_137.txt │ ├── frame_138.txt │ ├── frame_139.txt │ ├── frame_140.txt │ ├── frame_141.txt │ ├── frame_142.txt │ ├── frame_143.txt │ ├── frame_144.txt │ ├── frame_145.txt │ ├── frame_146.txt │ ├── frame_147.txt │ ├── frame_148.txt │ ├── frame_149.txt │ ├── frame_150.txt │ ├── frame_151.txt │ ├── frame_152.txt │ ├── frame_153.txt │ ├── frame_154.txt │ ├── frame_155.txt │ ├── frame_156.txt │ ├── frame_157.txt │ ├── frame_158.txt │ ├── frame_159.txt │ ├── frame_160.txt │ ├── frame_161.txt │ ├── frame_162.txt │ ├── frame_163.txt │ ├── frame_164.txt │ ├── frame_165.txt │ ├── frame_166.txt │ ├── frame_167.txt │ ├── frame_168.txt │ ├── frame_169.txt │ ├── frame_170.txt │ ├── frame_171.txt │ ├── frame_172.txt │ ├── frame_173.txt │ ├── frame_174.txt │ ├── frame_175.txt │ ├── frame_176.txt │ ├── frame_177.txt │ ├── frame_178.txt │ ├── frame_179.txt │ ├── frame_180.txt │ ├── frame_181.txt │ ├── frame_182.txt │ ├── frame_183.txt │ ├── frame_184.txt │ ├── frame_185.txt │ ├── frame_186.txt │ ├── frame_187.txt │ ├── frame_188.txt │ ├── frame_189.txt │ ├── frame_190.txt │ ├── frame_191.txt │ ├── frame_192.txt │ ├── frame_193.txt │ ├── frame_194.txt │ ├── frame_195.txt │ ├── frame_196.txt │ ├── frame_197.txt │ ├── frame_198.txt │ ├── frame_199.txt │ ├── frame_200.txt │ ├── frame_201.txt │ ├── frame_202.txt │ ├── frame_203.txt │ ├── frame_204.txt │ ├── frame_205.txt │ ├── frame_206.txt │ ├── frame_207.txt │ ├── frame_208.txt │ ├── frame_209.txt │ ├── frame_210.txt │ ├── frame_211.txt │ ├── frame_212.txt │ ├── frame_213.txt │ ├── frame_214.txt │ ├── frame_215.txt │ ├── frame_216.txt │ ├── frame_217.txt │ ├── frame_218.txt │ ├── frame_219.txt │ ├── frame_220.txt │ ├── frame_221.txt │ ├── frame_222.txt │ ├── frame_223.txt │ ├── frame_224.txt │ ├── frame_225.txt │ ├── frame_226.txt │ ├── frame_227.txt │ ├── frame_228.txt │ ├── frame_229.txt │ ├── frame_230.txt │ ├── frame_231.txt │ ├── frame_232.txt │ ├── frame_233.txt │ ├── frame_234.txt │ └── frame_235.txt └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/.env.sample -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/.envrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/.github/ISSUE_TEMPLATE/1-bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/warn-autogenerated-files.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/.github/workflows/warn-autogenerated-files.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/README.md -------------------------------------------------------------------------------- /bin/video-to-terminal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/bin/video-to-terminal/README.md -------------------------------------------------------------------------------- /bin/video-to-terminal/video-to-terminal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/bin/video-to-terminal/video-to-terminal.sh -------------------------------------------------------------------------------- /bin/video-to-terminal/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/bin/video-to-terminal/video.mp4 -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/about.mdx -------------------------------------------------------------------------------- /docs/config/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/config/index.mdx -------------------------------------------------------------------------------- /docs/config/keybind/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/config/keybind/index.mdx -------------------------------------------------------------------------------- /docs/config/keybind/reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/config/keybind/reference.mdx -------------------------------------------------------------------------------- /docs/config/keybind/sequence.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/config/keybind/sequence.mdx -------------------------------------------------------------------------------- /docs/config/reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/config/reference.mdx -------------------------------------------------------------------------------- /docs/features/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/features/index.mdx -------------------------------------------------------------------------------- /docs/features/shell-integration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/features/shell-integration.mdx -------------------------------------------------------------------------------- /docs/features/theme.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/features/theme.mdx -------------------------------------------------------------------------------- /docs/help/gtk-opengl-context.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/help/gtk-opengl-context.mdx -------------------------------------------------------------------------------- /docs/help/gtk-single-instance.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/help/gtk-single-instance.mdx -------------------------------------------------------------------------------- /docs/help/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/help/index.mdx -------------------------------------------------------------------------------- /docs/help/macos-login-shells.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/help/macos-login-shells.mdx -------------------------------------------------------------------------------- /docs/help/macos-tiling-wms.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/help/macos-tiling-wms.mdx -------------------------------------------------------------------------------- /docs/help/synchronized-output.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/help/synchronized-output.mdx -------------------------------------------------------------------------------- /docs/help/terminfo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/help/terminfo.mdx -------------------------------------------------------------------------------- /docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/index.mdx -------------------------------------------------------------------------------- /docs/install/binary.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/install/binary.mdx -------------------------------------------------------------------------------- /docs/install/build.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/install/build.mdx -------------------------------------------------------------------------------- /docs/install/package.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/install/package.mdx -------------------------------------------------------------------------------- /docs/install/pre.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/install/pre.mdx -------------------------------------------------------------------------------- /docs/install/release-notes/1-0-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/install/release-notes/1-0-1.mdx -------------------------------------------------------------------------------- /docs/install/release-notes/1-1-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/install/release-notes/1-1-0.mdx -------------------------------------------------------------------------------- /docs/install/release-notes/1-1-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/install/release-notes/1-1-1.mdx -------------------------------------------------------------------------------- /docs/install/release-notes/1-1-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/install/release-notes/1-1-2.mdx -------------------------------------------------------------------------------- /docs/install/release-notes/1-1-3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/install/release-notes/1-1-3.mdx -------------------------------------------------------------------------------- /docs/install/release-notes/1-2-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/install/release-notes/1-2-0.mdx -------------------------------------------------------------------------------- /docs/install/release-notes/1-2-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/install/release-notes/1-2-1.mdx -------------------------------------------------------------------------------- /docs/install/release-notes/1-2-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/install/release-notes/1-2-2.mdx -------------------------------------------------------------------------------- /docs/install/release-notes/1-2-3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/install/release-notes/1-2-3.mdx -------------------------------------------------------------------------------- /docs/install/release-notes/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/install/release-notes/index.mdx -------------------------------------------------------------------------------- /docs/linux/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/linux/index.mdx -------------------------------------------------------------------------------- /docs/linux/systemd.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/linux/systemd.mdx -------------------------------------------------------------------------------- /docs/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/nav.json -------------------------------------------------------------------------------- /docs/sponsor.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/sponsor.mdx -------------------------------------------------------------------------------- /docs/vt/concepts/colors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/concepts/colors.mdx -------------------------------------------------------------------------------- /docs/vt/concepts/cursor.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/concepts/cursor.mdx -------------------------------------------------------------------------------- /docs/vt/concepts/screen.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/concepts/screen.mdx -------------------------------------------------------------------------------- /docs/vt/concepts/sequences.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/concepts/sequences.mdx -------------------------------------------------------------------------------- /docs/vt/control/bel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/control/bel.mdx -------------------------------------------------------------------------------- /docs/vt/control/bs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/control/bs.mdx -------------------------------------------------------------------------------- /docs/vt/control/cr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/control/cr.mdx -------------------------------------------------------------------------------- /docs/vt/control/lf.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/control/lf.mdx -------------------------------------------------------------------------------- /docs/vt/control/tab.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/control/tab.mdx -------------------------------------------------------------------------------- /docs/vt/csi/cbt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/cbt.mdx -------------------------------------------------------------------------------- /docs/vt/csi/cht.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/cht.mdx -------------------------------------------------------------------------------- /docs/vt/csi/cnl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/cnl.mdx -------------------------------------------------------------------------------- /docs/vt/csi/cpl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/cpl.mdx -------------------------------------------------------------------------------- /docs/vt/csi/cub.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/cub.mdx -------------------------------------------------------------------------------- /docs/vt/csi/cud.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/cud.mdx -------------------------------------------------------------------------------- /docs/vt/csi/cuf.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/cuf.mdx -------------------------------------------------------------------------------- /docs/vt/csi/cup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/cup.mdx -------------------------------------------------------------------------------- /docs/vt/csi/cuu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/cuu.mdx -------------------------------------------------------------------------------- /docs/vt/csi/dch.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/dch.mdx -------------------------------------------------------------------------------- /docs/vt/csi/decscusr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/decscusr.mdx -------------------------------------------------------------------------------- /docs/vt/csi/decslrm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/decslrm.mdx -------------------------------------------------------------------------------- /docs/vt/csi/decstbm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/decstbm.mdx -------------------------------------------------------------------------------- /docs/vt/csi/dl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/dl.mdx -------------------------------------------------------------------------------- /docs/vt/csi/dsr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/dsr.mdx -------------------------------------------------------------------------------- /docs/vt/csi/ech.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/ech.mdx -------------------------------------------------------------------------------- /docs/vt/csi/ed.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/ed.mdx -------------------------------------------------------------------------------- /docs/vt/csi/el.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/el.mdx -------------------------------------------------------------------------------- /docs/vt/csi/hpa.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/hpa.mdx -------------------------------------------------------------------------------- /docs/vt/csi/hpr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/hpr.mdx -------------------------------------------------------------------------------- /docs/vt/csi/ich.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/ich.mdx -------------------------------------------------------------------------------- /docs/vt/csi/il.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/il.mdx -------------------------------------------------------------------------------- /docs/vt/csi/rep.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/rep.mdx -------------------------------------------------------------------------------- /docs/vt/csi/sd.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/sd.mdx -------------------------------------------------------------------------------- /docs/vt/csi/su.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/su.mdx -------------------------------------------------------------------------------- /docs/vt/csi/tbc.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/tbc.mdx -------------------------------------------------------------------------------- /docs/vt/csi/vpa.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/vpa.mdx -------------------------------------------------------------------------------- /docs/vt/csi/vpr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/vpr.mdx -------------------------------------------------------------------------------- /docs/vt/csi/xtshiftescape.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/csi/xtshiftescape.mdx -------------------------------------------------------------------------------- /docs/vt/esc/decaln.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/esc/decaln.mdx -------------------------------------------------------------------------------- /docs/vt/esc/deckpam.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/esc/deckpam.mdx -------------------------------------------------------------------------------- /docs/vt/esc/deckpnm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/esc/deckpnm.mdx -------------------------------------------------------------------------------- /docs/vt/esc/decrc.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/esc/decrc.mdx -------------------------------------------------------------------------------- /docs/vt/esc/decsc.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/esc/decsc.mdx -------------------------------------------------------------------------------- /docs/vt/esc/ind.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/esc/ind.mdx -------------------------------------------------------------------------------- /docs/vt/esc/ri.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/esc/ri.mdx -------------------------------------------------------------------------------- /docs/vt/esc/ris.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/esc/ris.mdx -------------------------------------------------------------------------------- /docs/vt/external.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/external.mdx -------------------------------------------------------------------------------- /docs/vt/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/index.mdx -------------------------------------------------------------------------------- /docs/vt/osc/0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/osc/0.mdx -------------------------------------------------------------------------------- /docs/vt/osc/1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/osc/1.mdx -------------------------------------------------------------------------------- /docs/vt/osc/104.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/osc/104.mdx -------------------------------------------------------------------------------- /docs/vt/osc/105.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/osc/105.mdx -------------------------------------------------------------------------------- /docs/vt/osc/11x.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/osc/11x.mdx -------------------------------------------------------------------------------- /docs/vt/osc/1x.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/osc/1x.mdx -------------------------------------------------------------------------------- /docs/vt/osc/2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/osc/2.mdx -------------------------------------------------------------------------------- /docs/vt/osc/22.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/osc/22.mdx -------------------------------------------------------------------------------- /docs/vt/osc/4.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/osc/4.mdx -------------------------------------------------------------------------------- /docs/vt/osc/5.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/osc/5.mdx -------------------------------------------------------------------------------- /docs/vt/osc/52.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/osc/52.mdx -------------------------------------------------------------------------------- /docs/vt/osc/7.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/osc/7.mdx -------------------------------------------------------------------------------- /docs/vt/osc/8.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/osc/8.mdx -------------------------------------------------------------------------------- /docs/vt/osc/9.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/osc/9.mdx -------------------------------------------------------------------------------- /docs/vt/osc/conemu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/osc/conemu.mdx -------------------------------------------------------------------------------- /docs/vt/reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/docs/vt/reference.mdx -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/flake.nix -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/next.config.mjs -------------------------------------------------------------------------------- /nix/devShell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/nix/devShell.nix -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/postcss.config.json -------------------------------------------------------------------------------- /public/favicon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/favicon-128.png -------------------------------------------------------------------------------- /public/favicon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/favicon-16.png -------------------------------------------------------------------------------- /public/favicon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/favicon-256.png -------------------------------------------------------------------------------- /public/favicon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/favicon-32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/ghostty-404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/ghostty-404.png -------------------------------------------------------------------------------- /public/ghostty-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/ghostty-logo.svg -------------------------------------------------------------------------------- /public/images/1-1-0/csd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/images/1-1-0/csd.png -------------------------------------------------------------------------------- /public/images/1-1-0/linear-corrected_blending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/images/1-1-0/linear-corrected_blending.png -------------------------------------------------------------------------------- /public/images/1-1-0/linear_blending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/images/1-1-0/linear_blending.png -------------------------------------------------------------------------------- /public/images/1-1-0/p3_blending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/images/1-1-0/p3_blending.png -------------------------------------------------------------------------------- /public/images/1-1-0/srgb_blending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/images/1-1-0/srgb_blending.png -------------------------------------------------------------------------------- /public/images/1-1-0/ssd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/images/1-1-0/ssd.png -------------------------------------------------------------------------------- /public/images/1-2-0/adjust-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/images/1-2-0/adjust-new.png -------------------------------------------------------------------------------- /public/images/1-2-0/adjust-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/images/1-2-0/adjust-old.png -------------------------------------------------------------------------------- /public/images/1-2-0/background-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/images/1-2-0/background-image.png -------------------------------------------------------------------------------- /public/images/1-2-0/gnome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/images/1-2-0/gnome.png -------------------------------------------------------------------------------- /public/images/1-2-0/macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/images/1-2-0/macos.png -------------------------------------------------------------------------------- /public/images/1-2-0/palette-gtk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/images/1-2-0/palette-gtk.png -------------------------------------------------------------------------------- /public/images/1-2-0/palette-macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/images/1-2-0/palette-macos.png -------------------------------------------------------------------------------- /public/images/1-2-0/quick-terminal-gtk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/images/1-2-0/quick-terminal-gtk.png -------------------------------------------------------------------------------- /public/images/1-2-0/quick-terminal-pos1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/images/1-2-0/quick-terminal-pos1.png -------------------------------------------------------------------------------- /public/images/1-2-0/quick-terminal-pos2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/images/1-2-0/quick-terminal-pos2.png -------------------------------------------------------------------------------- /public/images/1-2-0/shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/images/1-2-0/shortcuts.png -------------------------------------------------------------------------------- /public/images/1-2-0/sprites-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/images/1-2-0/sprites-new.png -------------------------------------------------------------------------------- /public/images/1-2-0/sprites-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/images/1-2-0/sprites-old.png -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/social-share-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/social-share-card.jpg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/components/animated-terminal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/animated-terminal/index.tsx -------------------------------------------------------------------------------- /src/components/blockquote/Blockquote.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/blockquote/Blockquote.module.css -------------------------------------------------------------------------------- /src/components/blockquote/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/blockquote/index.tsx -------------------------------------------------------------------------------- /src/components/breadcrumbs/Breadcrumbs.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/breadcrumbs/Breadcrumbs.module.css -------------------------------------------------------------------------------- /src/components/breadcrumbs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/breadcrumbs/index.tsx -------------------------------------------------------------------------------- /src/components/button-links/ButtonLinks.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/button-links/ButtonLinks.module.css -------------------------------------------------------------------------------- /src/components/button-links/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/button-links/index.tsx -------------------------------------------------------------------------------- /src/components/button/Button.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/button/Button.module.css -------------------------------------------------------------------------------- /src/components/button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/button/index.tsx -------------------------------------------------------------------------------- /src/components/callout/Callout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/callout/Callout.module.css -------------------------------------------------------------------------------- /src/components/callout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/callout/index.tsx -------------------------------------------------------------------------------- /src/components/card-links/CardLinks.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/card-links/CardLinks.module.css -------------------------------------------------------------------------------- /src/components/card-links/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/card-links/index.tsx -------------------------------------------------------------------------------- /src/components/codeblock/CodeBlock.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/codeblock/CodeBlock.module.css -------------------------------------------------------------------------------- /src/components/codeblock/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/codeblock/index.tsx -------------------------------------------------------------------------------- /src/components/custom-mdx/CustomMDX.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/custom-mdx/CustomMDX.module.css -------------------------------------------------------------------------------- /src/components/custom-mdx/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/custom-mdx/index.tsx -------------------------------------------------------------------------------- /src/components/donate-card/DonateCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/donate-card/DonateCard.module.css -------------------------------------------------------------------------------- /src/components/donate-card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/donate-card/index.tsx -------------------------------------------------------------------------------- /src/components/footer/Footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/footer/Footer.module.css -------------------------------------------------------------------------------- /src/components/footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/footer/index.tsx -------------------------------------------------------------------------------- /src/components/generic-404/Generic404.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/generic-404/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/generic-404/index.tsx -------------------------------------------------------------------------------- /src/components/generic-card/GenericCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/generic-card/GenericCard.module.css -------------------------------------------------------------------------------- /src/components/generic-card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/generic-card/index.tsx -------------------------------------------------------------------------------- /src/components/github/GitHub.module.css: -------------------------------------------------------------------------------- 1 | .github { 2 | display: inline-flex; 3 | } -------------------------------------------------------------------------------- /src/components/github/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/github/index.tsx -------------------------------------------------------------------------------- /src/components/github/mdx.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/github/mdx.tsx -------------------------------------------------------------------------------- /src/components/grid-container/GridContainer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/grid-container/GridContainer.module.css -------------------------------------------------------------------------------- /src/components/grid-container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/grid-container/index.tsx -------------------------------------------------------------------------------- /src/components/info-cards-section/InfoCards.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/info-cards-section/InfoCards.module.css -------------------------------------------------------------------------------- /src/components/info-cards-section/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/info-cards-section/index.tsx -------------------------------------------------------------------------------- /src/components/jumplink-header/JumplinkHeader.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/jumplink-header/JumplinkHeader.module.css -------------------------------------------------------------------------------- /src/components/jumplink-header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/jumplink-header/index.tsx -------------------------------------------------------------------------------- /src/components/link/Link.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/link/Link.module.css -------------------------------------------------------------------------------- /src/components/link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/link/index.tsx -------------------------------------------------------------------------------- /src/components/mermaid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/mermaid/index.tsx -------------------------------------------------------------------------------- /src/components/nav-tree/NavTree.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/nav-tree/NavTree.module.css -------------------------------------------------------------------------------- /src/components/nav-tree/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/nav-tree/index.tsx -------------------------------------------------------------------------------- /src/components/navbar/Navbar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/navbar/Navbar.module.css -------------------------------------------------------------------------------- /src/components/navbar/ghostty-wordmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/navbar/ghostty-wordmark.svg -------------------------------------------------------------------------------- /src/components/navbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/navbar/index.tsx -------------------------------------------------------------------------------- /src/components/preview-banner/PreviewBanner.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/preview-banner/PreviewBanner.module.css -------------------------------------------------------------------------------- /src/components/preview-banner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/preview-banner/index.tsx -------------------------------------------------------------------------------- /src/components/scroll-to-top/ScrollToTop.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/scroll-to-top/ScrollToTop.module.css -------------------------------------------------------------------------------- /src/components/scroll-to-top/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/scroll-to-top/index.tsx -------------------------------------------------------------------------------- /src/components/section-wrapper/SectionWrapper.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/section-wrapper/SectionWrapper.module.css -------------------------------------------------------------------------------- /src/components/section-wrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/section-wrapper/index.tsx -------------------------------------------------------------------------------- /src/components/sidecar/Sidecar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/sidecar/Sidecar.module.css -------------------------------------------------------------------------------- /src/components/sidecar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/sidecar/index.tsx -------------------------------------------------------------------------------- /src/components/tabbed-terminals-section/TabbedTerminalsSection.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/tabbed-terminals-section/TabbedTerminalsSection.module.css -------------------------------------------------------------------------------- /src/components/tabbed-terminals-section/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/tabbed-terminals-section/index.tsx -------------------------------------------------------------------------------- /src/components/tag-list/TagList.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/tag-list/TagList.module.css -------------------------------------------------------------------------------- /src/components/tag-list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/tag-list/index.tsx -------------------------------------------------------------------------------- /src/components/terminal-cards-section/TerminalCardsSection.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/terminal-cards-section/TerminalCardsSection.module.css -------------------------------------------------------------------------------- /src/components/terminal-cards-section/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/terminal-cards-section/index.tsx -------------------------------------------------------------------------------- /src/components/terminal/Terminal.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/terminal/Terminal.module.css -------------------------------------------------------------------------------- /src/components/terminal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/terminal/index.tsx -------------------------------------------------------------------------------- /src/components/text/Text.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/text/Text.module.css -------------------------------------------------------------------------------- /src/components/text/font/pretendard-std-variable.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/text/font/pretendard-std-variable.woff2 -------------------------------------------------------------------------------- /src/components/text/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/text/index.tsx -------------------------------------------------------------------------------- /src/components/video/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/video/index.tsx -------------------------------------------------------------------------------- /src/components/vt-sequence/VTSequence.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/vt-sequence/VTSequence.module.css -------------------------------------------------------------------------------- /src/components/vt-sequence/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/components/vt-sequence/index.tsx -------------------------------------------------------------------------------- /src/layouts/nav-footer-layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/layouts/nav-footer-layout/index.tsx -------------------------------------------------------------------------------- /src/layouts/root-layout/RootLayout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/layouts/root-layout/RootLayout.module.css -------------------------------------------------------------------------------- /src/layouts/root-layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/layouts/root-layout/index.tsx -------------------------------------------------------------------------------- /src/lib/fetch-docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/lib/fetch-docs.ts -------------------------------------------------------------------------------- /src/lib/fetch-latest-ghostty-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/lib/fetch-latest-ghostty-version.ts -------------------------------------------------------------------------------- /src/lib/fetch-nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/lib/fetch-nav.ts -------------------------------------------------------------------------------- /src/lib/fetch-terminal-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/lib/fetch-terminal-content.ts -------------------------------------------------------------------------------- /src/lib/nav-tree-to-breadcrumbs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/lib/nav-tree-to-breadcrumbs.ts -------------------------------------------------------------------------------- /src/lib/use-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/lib/use-store.ts -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/404Page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/pages/404Page.module.css -------------------------------------------------------------------------------- /src/pages/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/pages/Home.module.css -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/docs/[...path]/DocsPage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/pages/docs/[...path]/DocsPage.module.css -------------------------------------------------------------------------------- /src/pages/docs/[...path]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/pages/docs/[...path]/index.tsx -------------------------------------------------------------------------------- /src/pages/docs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/pages/docs/index.tsx -------------------------------------------------------------------------------- /src/pages/download/DownloadPage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/pages/download/DownloadPage.module.css -------------------------------------------------------------------------------- /src/pages/download/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/pages/download/index.tsx -------------------------------------------------------------------------------- /src/pages/download/release.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/pages/download/release.tsx -------------------------------------------------------------------------------- /src/pages/download/tip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/pages/download/tip.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/types/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/src/types/style.ts -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_001.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_002.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_003.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_004.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_005.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_006.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_007.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_008.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_009.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_010.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_011.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_012.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_013.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_014.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_015.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_016.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_016.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_017.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_018.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_019.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_019.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_020.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_020.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_021.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_021.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_022.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_022.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_023.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_023.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_024.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_024.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_025.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_026.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_026.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_027.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_027.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_028.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_028.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_029.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_029.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_030.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_030.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_031.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_031.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_032.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_032.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_033.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_033.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_034.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_034.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_035.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_035.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_036.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_036.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_037.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_037.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_038.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_038.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_039.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_039.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_040.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_040.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_041.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_041.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_042.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_042.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_043.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_043.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_044.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_044.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_045.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_045.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_046.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_046.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_047.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_047.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_048.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_048.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_049.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_049.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_050.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_050.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_051.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_051.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_052.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_052.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_053.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_053.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_054.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_054.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_055.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_055.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_056.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_056.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_057.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_057.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_058.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_058.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_059.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_059.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_060.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_060.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_061.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_061.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_062.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_062.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_063.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_063.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_064.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_064.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_065.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_065.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_066.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_066.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_067.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_067.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_068.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_068.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_069.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_069.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_070.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_070.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_071.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_071.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_072.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_072.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_073.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_073.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_074.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_074.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_075.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_075.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_076.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_076.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_077.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_077.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_078.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_078.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_079.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_079.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_080.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_080.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_081.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_081.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_082.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_082.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_083.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_083.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_084.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_084.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_085.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_085.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_086.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_086.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_087.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_087.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_088.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_088.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_089.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_089.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_090.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_090.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_091.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_091.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_092.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_092.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_093.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_093.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_094.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_094.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_095.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_095.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_096.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_096.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_097.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_097.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_098.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_098.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_099.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_099.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_100.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_101.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_102.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_103.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_104.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_105.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_106.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_107.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_108.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_109.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_109.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_110.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_111.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_112.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_112.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_113.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_113.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_114.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_114.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_115.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_115.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_116.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_116.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_117.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_117.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_118.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_118.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_119.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_119.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_120.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_120.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_121.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_121.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_122.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_122.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_123.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_123.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_124.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_124.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_125.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_125.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_126.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_126.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_127.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_127.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_128.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_129.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_129.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_130.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_130.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_131.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_131.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_132.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_132.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_133.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_133.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_134.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_134.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_135.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_135.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_136.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_136.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_137.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_137.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_138.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_138.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_139.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_139.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_140.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_140.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_141.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_141.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_142.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_142.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_143.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_143.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_144.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_144.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_145.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_145.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_146.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_146.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_147.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_147.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_148.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_148.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_149.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_149.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_150.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_150.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_151.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_151.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_152.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_152.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_153.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_153.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_154.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_154.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_155.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_155.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_156.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_156.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_157.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_157.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_158.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_158.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_159.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_159.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_160.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_160.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_161.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_161.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_162.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_162.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_163.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_163.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_164.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_164.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_165.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_165.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_166.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_166.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_167.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_167.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_168.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_168.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_169.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_169.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_170.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_170.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_171.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_171.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_172.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_172.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_173.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_173.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_174.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_174.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_175.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_175.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_176.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_176.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_177.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_177.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_178.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_178.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_179.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_179.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_180.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_180.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_181.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_181.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_182.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_182.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_183.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_183.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_184.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_184.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_185.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_185.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_186.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_186.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_187.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_187.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_188.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_188.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_189.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_189.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_190.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_190.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_191.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_191.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_192.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_192.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_193.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_193.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_194.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_194.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_195.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_195.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_196.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_196.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_197.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_197.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_198.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_198.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_199.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_199.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_200.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_200.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_201.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_201.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_202.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_202.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_203.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_203.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_204.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_204.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_205.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_205.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_206.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_206.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_207.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_207.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_208.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_208.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_209.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_209.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_210.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_210.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_211.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_211.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_212.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_212.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_213.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_213.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_214.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_214.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_215.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_215.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_216.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_216.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_217.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_217.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_218.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_218.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_219.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_219.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_220.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_220.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_221.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_221.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_222.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_222.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_223.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_223.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_224.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_224.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_225.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_225.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_226.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_226.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_227.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_227.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_228.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_228.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_229.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_229.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_230.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_230.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_231.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_231.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_232.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_232.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_233.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_233.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_234.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_234.txt -------------------------------------------------------------------------------- /terminals/home/animation_frames/frame_235.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/terminals/home/animation_frames/frame_235.txt -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostty-org/website/HEAD/tsconfig.json --------------------------------------------------------------------------------