Use terminal directly to avoid any issue about About.desktop not being present

Closes #847
This commit is contained in:
David Heinemeier Hansson 2025-08-22 21:31:45 +02:00
parent 04aa3cca0d
commit 85f9fb486e

View File

@ -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
}