All Downloads are FREE. Search and download functionalities are using the official Maven repository.

okietreiber.scala-xdg-basedir_2.10.0.1.0.source-code.runtime.scala Maven / Gradle / Ivy

The newest version!
package org.freedesktop.basedir

/** $Info
  *
  * @define TypeInfo runtime
  */
object runtime extends Basedir {

  private[basedir] def home: String =
    sys.env.getOrElse("XDG_RUNTIME_DIR", s"/run/user/${sys.env("UID")}")

  def locate(path: String*): Option[String] =
    List(home/path) collectFirst {
      case file if file.toPath.exists => file
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy