Skip to content

Supported terminals

Darion Spaargaren edited this page Jun 30, 2023 · 5 revisions

Compatible

  • CMD (Windows, default)

    • "openInTerminal": true
    • "terminalStartCommand": "cmd /c start"
  • Gnome Terminal (Linux)

    • "openInTerminal": true
    • "terminalStartCommand": "gnome terminal --"
  • SSH with screen

    • "restartScriptPath": "./start.sh"
    • "openInTerminal": false
    • Modify the start script to incorporate screen -dm to run a command via screen
    • ./start.sh:
      #!/usr/bin/env bash
      
      screen -dm java -Xmx2G -jar fabric-server-launch.jar nogui
      
Clone this wiki locally