Implement X11 clipboard support via xclip

This commit is contained in:
2024-03-03 20:58:51 -05:00
parent 00e0a70ee6
commit 9802b7498b
4 changed files with 30 additions and 10 deletions
+12
View File
@@ -0,0 +1,12 @@
//go:build windows
package offline
// EntryRoot path to libmutton entry directory
var EntryRoot = home + "\\AppData\\Local\\libmutton\\entries"
// exported constants
const (
PathSeparator = "\\"
Windows = true
)