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

commonMain.XClip.kt Maven / Gradle / Ivy

There is a newer version: 0.0.87
Show newest version
package pl.mareklangiewicz.kommand

import pl.mareklangiewicz.annotations.DelicateApi


// TODO_later: real implementation (class/types/all options)

enum class XClipSelection { Primary, Secondary, Clipboard }

@OptIn(DelicateApi::class)
fun xclipOut(selection: XClipSelection = XClipSelection.Primary) =
  kommand("xclip", "-o", "-selection", selection.name.lowercase())
    .reducedOutToList()

@OptIn(DelicateApi::class)
fun xclipIn(selection: XClipSelection = XClipSelection.Primary, vararg inFiles: String) =
  kommand("xclip", "-i", "-selection", selection.name.lowercase(), *inFiles)
    .reducedOutToList()




© 2015 - 2024 Weber Informatics LLC | Privacy Policy