From 85f9fb486e7b8e9c28274be7dc8fc8f71990625f Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 22 Aug 2025 21:31:45 +0200 Subject: [PATCH] Use terminal directly to avoid any issue about About.desktop not being present Closes #847 --- bin/omarchy-menu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/omarchy-menu b/bin/omarchy-menu index 600a82b7..0276143b 100755 --- a/bin/omarchy-menu +++ b/bin/omarchy-menu @@ -22,7 +22,7 @@ menu() { } terminal() { - alacritty --class Omarchy -e $1 + alacritty --class Omarchy -e "$@" } present_terminal() { @@ -366,7 +366,7 @@ go_to_menu() { *remove*) show_remove_menu ;; *update*) show_update_menu ;; *system*) show_system_menu ;; - *about*) gtk-launch About.desktop ;; + *about*) terminal bash -c 'fastfetch; read -n 1 -s' ;; esac }