Skip to content

Commit c861d6f

Browse files
committed
update go mod and import path
1 parent 402e748 commit c861d6f

File tree

58 files changed

+204
-212
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+204
-212
lines changed

README

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@ Your first stop should be the examples directory.
1717

1818
Installation
1919
============
20-
go get github.com/BurntSushi/xgbutil
20+
go get github.com/robotn/xgbutil
2121

2222
Dependencies
2323
============
2424
XGB is the main dependency. Use of the xgraphics packages requires graphics-go
2525
and freetype-go.
2626

27-
XGB project URL: https://github.com/BurntSushi/xgb
27+
XGB project URL: https://github.com/robotn/xgb
2828

2929
Quick Example
3030
=============
31-
go get github.com/BurntSushi/xgbutil/_examples/window-name-sizes
31+
go get github.com/robotn/xgbutil/_examples/window-name-sizes
3232
"$GOPATH"/bin/window-name-sizes
3333

3434
The output will be a list of names of all top-level windows and their geometry
@@ -37,7 +37,7 @@ some basic EWMH properties.)
3737

3838
Documentation
3939
=============
40-
https://godoc.org/github.com/BurntSushi/xgbutil
40+
https://godoc.org/github.com/robotn/xgbutil
4141

4242
Examples
4343
========

_examples/change-cursor/main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ package main
1313
import (
1414
"log"
1515

16-
"github.com/BurntSushi/xgb/xproto"
16+
"github.com/robotn/xgb/xproto"
1717

18-
"github.com/BurntSushi/xgbutil"
19-
"github.com/BurntSushi/xgbutil/xcursor"
20-
"github.com/BurntSushi/xgbutil/xwindow"
18+
"github.com/robotn/xgbutil"
19+
"github.com/robotn/xgbutil/xcursor"
20+
"github.com/robotn/xgbutil/xwindow"
2121
)
2222

2323
func main() {

_examples/compress-events/main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ import (
4646
"log"
4747
"time"
4848

49-
"github.com/BurntSushi/xgb/xproto"
49+
"github.com/robotn/xgb/xproto"
5050

51-
"github.com/BurntSushi/xgbutil"
52-
"github.com/BurntSushi/xgbutil/xevent"
53-
"github.com/BurntSushi/xgbutil/xwindow"
51+
"github.com/robotn/xgbutil"
52+
"github.com/robotn/xgbutil/xevent"
53+
"github.com/robotn/xgbutil/xwindow"
5454
)
5555

5656
// workTime is the amount of time to sleep to simulate "work" in response to

_examples/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ more bloated than I would like.
1515
1616
If you have any suggestions for other examples to include, I'd be happy to hear
1717
them. You may post them at the main project page:
18-
https://github.com/BurntSushi/xgbutil.
18+
https://github.com/robotn/xgbutil.
1919
*/
2020
package documentation

_examples/draw-text/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"log"
77
"os"
88

9-
"github.com/BurntSushi/xgbutil"
10-
"github.com/BurntSushi/xgbutil/xevent"
11-
"github.com/BurntSushi/xgbutil/xgraphics"
9+
"github.com/robotn/xgbutil"
10+
"github.com/robotn/xgbutil/xevent"
11+
"github.com/robotn/xgbutil/xgraphics"
1212
)
1313

1414
var (

_examples/fullscreen/main.go

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ import (
88
_ "image/png"
99
"log"
1010

11-
"github.com/BurntSushi/xgb/xproto"
12-
13-
"github.com/BurntSushi/xgbutil"
14-
"github.com/BurntSushi/xgbutil/ewmh"
15-
"github.com/BurntSushi/xgbutil/gopher"
16-
"github.com/BurntSushi/xgbutil/icccm"
17-
"github.com/BurntSushi/xgbutil/keybind"
18-
"github.com/BurntSushi/xgbutil/mousebind"
19-
"github.com/BurntSushi/xgbutil/xevent"
20-
"github.com/BurntSushi/xgbutil/xgraphics"
21-
"github.com/BurntSushi/xgbutil/xwindow"
11+
"github.com/robotn/xgb/xproto"
12+
13+
"github.com/robotn/xgbutil"
14+
"github.com/robotn/xgbutil/ewmh"
15+
"github.com/robotn/xgbutil/gopher"
16+
"github.com/robotn/xgbutil/icccm"
17+
"github.com/robotn/xgbutil/keybind"
18+
"github.com/robotn/xgbutil/mousebind"
19+
"github.com/robotn/xgbutil/xevent"
20+
"github.com/robotn/xgbutil/xgraphics"
21+
"github.com/robotn/xgbutil/xwindow"
2222
)
2323

2424
func main() {

_examples/graceful-window-close/main.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ import (
2424
"os"
2525
"time"
2626

27-
"github.com/BurntSushi/xgb/xproto"
27+
"github.com/robotn/xgb/xproto"
2828

29-
"github.com/BurntSushi/xgbutil"
30-
"github.com/BurntSushi/xgbutil/mousebind"
31-
"github.com/BurntSushi/xgbutil/xevent"
32-
"github.com/BurntSushi/xgbutil/xwindow"
29+
"github.com/robotn/xgbutil"
30+
"github.com/robotn/xgbutil/mousebind"
31+
"github.com/robotn/xgbutil/xevent"
32+
"github.com/robotn/xgbutil/xwindow"
3333
)
3434

3535
// When counter reaches 0, exit.

_examples/image-speed/main.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
package main
66

77
import (
8-
"github.com/BurntSushi/xgb/xproto"
9-
"github.com/BurntSushi/xgbutil"
10-
"github.com/BurntSushi/xgbutil/keybind"
11-
"github.com/BurntSushi/xgbutil/xevent"
12-
"github.com/BurntSushi/xgbutil/xgraphics"
13-
"github.com/BurntSushi/xgbutil/xwindow"
8+
"github.com/robotn/xgb/xproto"
9+
"github.com/robotn/xgbutil"
10+
"github.com/robotn/xgbutil/keybind"
11+
"github.com/robotn/xgbutil/xevent"
12+
"github.com/robotn/xgbutil/xgraphics"
13+
"github.com/robotn/xgbutil/xwindow"
1414
"image"
1515
"log"
1616
"time"

_examples/keypress-english/main.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ import (
77
"flag"
88
"log"
99

10-
"github.com/BurntSushi/xgb/xproto"
10+
"github.com/robotn/xgb/xproto"
1111

12-
"github.com/BurntSushi/xgbutil"
13-
"github.com/BurntSushi/xgbutil/keybind"
14-
"github.com/BurntSushi/xgbutil/xevent"
15-
"github.com/BurntSushi/xgbutil/xwindow"
12+
"github.com/robotn/xgbutil"
13+
"github.com/robotn/xgbutil/keybind"
14+
"github.com/robotn/xgbutil/xevent"
15+
"github.com/robotn/xgbutil/xwindow"
1616
)
1717

1818
var flagRoot = false

_examples/multiple-source-event-loop/main.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ import (
88
"log"
99
"time"
1010

11-
"github.com/BurntSushi/xgb/xproto"
11+
"github.com/robotn/xgb/xproto"
1212

13-
"github.com/BurntSushi/xgbutil"
14-
"github.com/BurntSushi/xgbutil/ewmh"
15-
"github.com/BurntSushi/xgbutil/xevent"
16-
"github.com/BurntSushi/xgbutil/xprop"
17-
"github.com/BurntSushi/xgbutil/xwindow"
13+
"github.com/robotn/xgbutil"
14+
"github.com/robotn/xgbutil/ewmh"
15+
"github.com/robotn/xgbutil/xevent"
16+
"github.com/robotn/xgbutil/xprop"
17+
"github.com/robotn/xgbutil/xwindow"
1818
)
1919

2020
// otherSource serves as a placeholder from some other source of user input.

0 commit comments

Comments
 (0)