2023-06-14 16:49:04 +00:00
|
|
|
|
2023-10-23 22:44:47 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
2023-10-24 13:59:09 +00:00
|
|
|
# Copyright (C) 2022-present - The JELOS Project (https://github.com/JustEnoughLinuxOS)
|
2023-06-14 16:49:04 +00:00
|
|
|
|
|
|
|
. /etc/profile
|
|
|
|
|
|
|
|
#Set up gzdoom
|
|
|
|
if [ ! -d "/storage/.config/gzdoom/" ]; then
|
|
|
|
cp -rf /usr/config/gzdoom /storage/.config/
|
2023-07-23 13:47:19 +00:00
|
|
|
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
|
2023-06-14 16:49:04 +00:00
|
|
|
fi
|