Captura ghostty en debian 13
La manera mas sencilla y rápida de instalar ghostty en Debian 13, es descargando la appimage.
https://github.com/pkgforge-dev/ghostty-appimage
Una ves descargado el archivo podemos guardarlo en /opt/ghostty/ghostty
y hacerlo ejecutable chmod +x /opt/ghostty/ghostty
También nos puede interesar [https://github.com/pkgforge-dev/ghostty-appimage/blob/main/assets/ghostty.png](descargar el logo) para crear un icono de acceso con el archivo ghostty.desktop
en el path: /usr/share/applications/ghostty.desktop
:
[Desktop Entry]
Name=ghostty
Type=Application
Comment=A terminal emulator
TryExec=/opt/ghostty/ghostty
Exec=/opt/ghostty/ghostty
Icon=/opt/ghostty.png
Categories=System;TerminalEmulator;
Keywords=terminal;tty;pty;
StartupNotify=true
StartupWMClass=com.mitchellh.ghostty
Terminal=false
Actions=new-window;
X-GNOME-UsesNotifications=true
X-TerminalArgExec=-e
X-TerminalArgTitle=--title=
X-TerminalArgAppId=--class=
X-TerminalArgDir=--working-directory=
X-TerminalArgHold=--wait-after-command
DBusActivatable=true
[Desktop Action new-window]
Name=New Window
Exec=/opt/ghostty/ghostty
tips:
- Si al acceder por ssh a cualquier equipo, ejecutamos
top
y no devuelve nada, o recibimos una respuestaError opening terminal: xterm-ghostty.
es necesario agregar en~/.bashrc
:
if [[ "$TERM_PROGRAM" == "ghostty" ]]; then
export TERM=xterm-256color
fi