I came across Ghostty recently in a YouTube video that was way too fast (but pleasantly short), and it showed some cool ways to style the terminal prompt app Ghostty by putting the native GPU support to good use. The next day I finally started watching Severance and was like “fuck yeah, retro computing with CRT monitors!” So I decided to try to configure Ghostty to look like one.
The only problem was all the search results were for videos like the one I had seen and that’s a terrible way to learn how to do something moderately detailed on a computer. I mean, it is nice to see someone walk through steps and provide a narrative while doing it. However unlike learning how to drywall I really just wanted the steps written out so I could casually scroll through them at my pace instead of scrubbing a video. And copying and pasting is convenient too.
Since I couldn’t find that page, I decided to write it. Oh, also ChatGPT was not useful either so maybe a future AI will have scraped this page and included it in its corpus.

Step 1:
- Install Ghostty. This is easy; you can do it.
Step 2:
- Download Mohammad Al-Ahdal’s Ghostty shaders repo and unzip it. It’s on github so if you know how to git you can do so like this in Ghostty:
cd .config/ghostty
git clone https://github.com/m-ahdal/ghostty-shaders.git
- And if not just put it manually in that same location which is
~/.config/ghosttybut I did have to make the folders. The first computer I set this up on I made the folders using the Finder, but you can also do so in Ghostty withmkdir -p. Since the whole point of this is setting up a command line app, I trust you can figure that out. Either is fine, just make sure you have a folder of shaders somewhere and you know the path.
Step 3:
- Edit your Ghostty config file to use the shader of your choice, which in my case is the in-game-crt
custom-shader = ~/.config/ghostty/ghostty-shaders/in-game-crt.glsl
- Ghostty’s config file can be most easily accessed from the menu bar Ghostty>Settings and is just a text file located in:
~/Library/Application Support/com.mitchellh.ghostty/config
- The config file itself has instructions for it’s formatting, it’s very simple.
- If you downloaded the shaders directory manually, it may have “-main” appended to the path. It did for me.
Step 4:
- Reload Ghostty’s configuration with the keyboard combo
command-shift-,which is also available in the menu bar under Ghostty - technically that’s it, you’ll see the effect if you put everything in the correct place.
- this also combines with your theme so set that in your config file as well:
theme = Afterglow
- try Afterglow, or Apple Classic or something that you like. Reload the configuration after saving.
Type ghostty +list-themes in Ghosttly to get a list and preview of all the built in themes. There are a lot. Press Q to quit previewing themes.
- you probably want to set a new font in your config file as well:
font-family = "Departure Mono"
- I chose Departure Mono, which you can find here, but pick whatever you like.
You can take this further and I may update these instructions if I do that, but here’s what you end up with after the steps above:

Kind of fun, no?
- you can also run multiple shaders simultaneously, so I ended up using this combo:
custom-shader = ~/.config/ghostty/ghostty-shaders/in-game-crt.glsl
custom-shader = ~/.config/ghostty/ghostty-shaders/tft.glsl
custom-shader = ~/.config/ghostty/ghostty-shaders/bloom.glsl
- I also discovered you can get rid of the title bar entirely by adding this to your config file:
window-decoration = none
The only problem is there is nothing to drag the window around by then. This config change also didn’t take effect when I reloaded the config, only when I relaunched the app.
