0% found this document useful (0 votes)
6 views1 page

Xenia Trading Bot Script Setup

This document is a Bash script that sets up a modular environment for TRIMUI STOCK or CrossMix. It defines options for running Godot game engine versions 2 and 3, including screen resolution settings. Additionally, it includes a placeholder function for platform-specific operations.

Uploaded by

Paulo Ubiratan
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views1 page

Xenia Trading Bot Script Setup

This document is a Bash script that sets up a modular environment for TRIMUI STOCK or CrossMix. It defines options for running Godot game engine versions 2 and 3, including screen resolution settings. Additionally, it includes a placeholder function for platform-specific operations.

Uploaded by

Paulo Ubiratan
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

#!

/bin/bash
#
# SPDX-License-Identifier: MIT
#

## Modular - TRIMUI
#
# A modular file that is sourced for specific script lines required by ports
running on TRIMUI STOCK or CrossMix.
#
# usage `[ -f "${controlfolder}/mod_${CFW_NAME}.txt" ] && source "$
{controlfolder}/mod_${CFW_NAME}.txt"`

# Set virtual screen


CUR_TTY="/dev/fd/1"

# Use for Godot 2


GODOT2_OPTS="-r ${DISPLAY_WIDTH}x${DISPLAY_HEIGHT} -f"

# Use for Godot 3+


GODOT_OPTS="--resolution ${DISPLAY_WIDTH}x${DISPLAY_HEIGHT} -f"

pm_platform_helper() {
# DO SOMETHING HERE
printf ""
}

You might also like