This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (ns clipboard.core | |
| (:require [fipp.edn :as fipp]) | |
| (:import (java.awt.datatransfer DataFlavor Transferable StringSelection) | |
| (java.awt Toolkit) | |
| (java.io StringWriter)) | |
| (defn get-clipboard | |
| "get system clipboard" | |
| [] | |
| (-> (Toolkit/getDefaultToolkit) |