13 lines
272 B
Bash
Executable File
13 lines
272 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# retrieve the id and title from the TITLE file
|
|
export GSGP_ID="$( cut -d' ' -f1 < TITLE )"
|
|
export GSGP_TITLE="$( cut -d' ' -f2- < TITLE )"
|
|
|
|
export GSGP_PROFILE=default
|
|
|
|
opening_scene="$( dirname $0)/util/scene-runner start"
|
|
|
|
screen -c screenrc $opening_scene
|
|
|