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

commonMain.NotifySend.kt Maven / Gradle / Ivy

The newest version!
package pl.mareklangiewicz.kommand

import pl.mareklangiewicz.kground.*

/** [notify-send ubuntu manpage](https://manpages.ubuntu.com/manpages/impish/man1/notify-send.1.html) */
fun notify(summary: String = "", body: String? = null, init: NotifySend.() -> Unit = {}) =
  NotifySend(summary, body).apply(init)

/** [notify-send ubuntu manpage](https://manpages.ubuntu.com/manpages/impish/man1/notify-send.1.html) */
data class NotifySend(
  var summary: String = "",
  var body: String? = null,
  val options: MutableList




© 2015 - 2024 Weber Informatics LLC | Privacy Policy