mirror of
https://github.com/go-vgo/robotgo.git
synced 2025-06-01 14:43:55 +00:00
Merge pull request #415 from go-vgo/bitmap-pr
Update README.md and godoc
This commit is contained in:
commit
61f10e4f53
@ -112,6 +112,15 @@ sudo dnf install xsel xclip
|
||||
```
|
||||
|
||||
## Installation:
|
||||
|
||||
With Go module support (Go 1.11+), just import:
|
||||
|
||||
```go
|
||||
import "github.com/go-vgo/robotgo"
|
||||
```
|
||||
|
||||
Otherwise, to install the robotgo package, run the command:
|
||||
|
||||
```
|
||||
go get github.com/go-vgo/robotgo
|
||||
```
|
||||
|
@ -106,6 +106,14 @@ sudo dnf install xsel xclip
|
||||
```
|
||||
|
||||
## Installation:
|
||||
With Go module support (Go 1.11+), just import:
|
||||
|
||||
```go
|
||||
import "github.com/go-vgo/robotgo"
|
||||
```
|
||||
|
||||
Otherwise, to install the robotgo package, run the command:
|
||||
|
||||
```
|
||||
go get github.com/go-vgo/robotgo
|
||||
```
|
||||
|
@ -18,6 +18,12 @@ See Requirements:
|
||||
https://github.com/go-vgo/robotgo#requirements
|
||||
|
||||
Installation:
|
||||
With Go module support (Go 1.11+), just import:
|
||||
```go
|
||||
import "github.com/go-vgo/robotgo"
|
||||
```
|
||||
|
||||
Otherwise, to install the robotgo package, run the command:
|
||||
go get -u github.com/go-vgo/robotgo
|
||||
*/
|
||||
package robotgo
|
||||
@ -641,7 +647,8 @@ func MovesClick(x, y int, args ...interface{}) {
|
||||
Click(args...)
|
||||
}
|
||||
|
||||
// Toggle toggle the mouse, support button: "left", "center", "right",
|
||||
// Toggle toggle the mouse, support button:
|
||||
// "left", "center", "right",
|
||||
// "wheelDown", "wheelUp", "wheelLeft", "wheelRight"
|
||||
//
|
||||
// Examples:
|
||||
|
Loading…
Reference in New Issue
Block a user