You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to request the following command for Yantra Launcher:
[COMMAND]
[DESCRIPTION]
[EXAMPLE]
[ANYTHING ELSE]
`#!/bin/bash
Name des Spiels
GAME_NAME="Brawl Stars"
Befehl zum Starten des Spiels (bitte anpassen, falls notwendig)
GAME_CMD="brawlstars"
Überprüfen, ob das Spiel installiert ist
if command -v $GAME_CMD &> /dev/null; then
echo "Starte $GAME_NAME..."
$GAME_CMD &
else
echo "Fehler: $GAME_NAME ist nicht installiert oder nicht im Pfad."
fi`
The text was updated successfully, but these errors were encountered:
I would like to request the following command for Yantra Launcher:
[COMMAND]
[DESCRIPTION]
[EXAMPLE]
[ANYTHING ELSE]
`#!/bin/bash
Name des Spiels
GAME_NAME="Brawl Stars"
Befehl zum Starten des Spiels (bitte anpassen, falls notwendig)
GAME_CMD="brawlstars"
Überprüfen, ob das Spiel installiert ist
if command -v $GAME_CMD &> /dev/null; then
echo "Starte $GAME_NAME..."
$GAME_CMD &
else
echo "Fehler: $GAME_NAME ist nicht installiert oder nicht im Pfad."
fi`
The text was updated successfully, but these errors were encountered: