10 lines
222 B
Bash
Executable file
10 lines
222 B
Bash
Executable file
#!/bin/sh
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (C) 2021-present - Fewtarius
|
|
|
|
. /etc/profile
|
|
|
|
ARG=${1//[\\]/}
|
|
export SDL_AUDIODRIVER=alsa
|
|
unset XDG_RUNTIME_DIR
|
|
${FAST_CORES} pcsx2 --fullscreen "$ARG"
|