de.sciss.mellite.Config.scala Maven / Gradle / Ivy
/*
* Config.scala
* (Mellite)
*
* Copyright (c) 2012-2023 Hanns Holger Rutz. All rights reserved.
*
* This software is published under the GNU Affero General Public License v3+
*
*
* For further information, please contact Hanns Holger Rutz at
* [email protected]
*/
package de.sciss.mellite
import de.sciss.file.File
final case class Config(open : List[File] = Nil,
autoRun : List[String] = Nil,
headless : Boolean = false,
bootAudio : Boolean = false,
logFrame : Boolean = true,
launcherPort: Int = -1,
prefix : String = "default",
lookAndFeel : Option[String] = None,
autoQuit : Boolean = false,
) {
def hasLauncher: Boolean = launcherPort >= 0
}