mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-01-29 09:32:55 +00:00
9 lines
231 B
Bash
Executable File
9 lines
231 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
FLATPAK_LIST=$(/usr/bin/flatpak list --app --columns=application)
|
|
if grep -q "org.gnome.Prompt" <<< $FLATPAK_LIST; then
|
|
/usr/bin/flatpak run org.gnome.Prompt -- "$@"
|
|
else
|
|
/usr/bin/gnome-terminal -- "$@"
|
|
fi
|