mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
Because of [hardcoded terminals in glib](https://gitlab.gnome.org/GNOME/glib/-/blob/main/gio/gdesktopappinfo.c#L2755) the previous fix still doesn't work well with Alacritty and Kitty. Using our `omarchy-launch-terminal` aliased to `xdg-terminal-exec` does the trick and doesn't introduce any new dependencies or rely on a lib that isn't stable.
5 lines
241 B
Bash
5 lines
241 B
Bash
echo "Setting up xdg-terminal-exec for gtk-launch terminal support"
|
|
# Solve for hardcoded glib terminals
|
|
# https://github.com/basecamp/omarchy/issues/1852
|
|
sudo ln -s $OMARCHY_PATH/bin/omarchy-launch-terminal /usr/local/bin/xdg-terminal-exec
|