blob: b083b2d3b3881f8226c84cbb35cbbb4dda0cf630 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
package at.hannibal2.skyhanni.utils
import java.awt.Desktop
import java.io.IOException
import java.net.URI
object OSUtils {
@JvmStatic
fun openBrowser(url: String) {
if (Desktop.isDesktopSupported() && Desktop.getDesktop().isSupported(Desktop.Action.BROWSE)) {
try {
Desktop.getDesktop().browse(URI(url))
} catch (e: IOException) {
e.printStackTrace()
LorenzUtils.error("[SkyHanni] Error opening website: $url!")
}
} else {
copyToClipboard(url)
LorenzUtils.warning("[SkyHanni] Web browser is not supported! Copied url to clipboard.")
}
}
fun copyToClipboard(text: String) {
ClipboardUtils.copyToClipboard(text)
}
suspend fun readFromClipboard() = ClipboardUtils.readFromClipboard()
}
|