commonMain.gnome.GnomeShell.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kommandline Show documentation
Show all versions of kommandline Show documentation
Kotlin DSL for popular CLI commands.
The newest version!
@file:Suppress("unused", "ClassName")
package pl.mareklangiewicz.kommand.gnome
import pl.mareklangiewicz.kommand.Kommand
import pl.mareklangiewicz.kommand.gnome.GnomeShell.Option
/**[gnome-shell ubuntu manpage](http://manpages.ubuntu.com/manpages/impish/man1/gnome-shell.1.html) */
fun gnomeshell(vararg options: Option, init: GnomeShell.() -> Unit = {}) =
GnomeShell(options.toMutableList()).apply(init)
/**[gnome-shell ubuntu manpage](http://manpages.ubuntu.com/manpages/impish/man1/gnome-shell.1.html) */
data class GnomeShell(
val options: MutableList