11 lines
131 B
Bash
11 lines
131 B
Bash
|
PACK_DIR="$HOME/Games/Factorio/Modpacks/"
|
||
|
|
||
|
input () {
|
||
|
ls $PACK_DIR
|
||
|
}
|
||
|
|
||
|
output () {
|
||
|
factorio --mod-directory $PACK_DIR/$1
|
||
|
}
|
||
|
|