14 lines
435 B
Text
Executable file
14 lines
435 B
Text
Executable file
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2022-present JELOS (https://github.com/JustEnoughLinuxOS)
|
|
|
|
. /etc/profile
|
|
|
|
#Set up gzdoom
|
|
if [ ! -d "/storage/.config/gzdoom/" ]; then
|
|
cp -rf /usr/config/gzdoom /storage/.config/
|
|
sed -i '/Joy10=/c\Joy10=togglemap;
|
|
/Joy9=/c\Joy9=menu_main;
|
|
/vid_defheight=/c\vid_defheight=480;
|
|
/vid_defwidth=/c\vid_defwidth=640' /storage/.config/gzdoom/gzdoom.ini
|
|
fi
|