Skip to content

Commit 2cb92d0

Browse files
committed
update import path to robotn
1 parent dc8a456 commit 2cb92d0

File tree

36 files changed

+82
-82
lines changed

36 files changed

+82
-82
lines changed

README

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ easier by using a slightly higher level library: xgbutil.
1212

1313
Quick Usage
1414
===========
15-
go get github.com/BurntSushi/xgb
16-
go run go/path/src/github.com/BurntSushi/xgb/examples/create-window/main.go
15+
go get github.com/robotn/xgb
16+
go run go/path/src/github.com/robotn/xgb/examples/create-window/main.go
1717

1818
BurntSushi's Fork
1919
=================
2020
I've forked the XGB repository from Google Code due to inactivty upstream.
2121

2222
Godoc documentation can be found here:
23-
http://godoc.burntsushi.net/pkg/github.com/BurntSushi/xgb/
23+
http://godoc.burntsushi.net/pkg/github.com/robotn/xgb/
2424

2525
Much of the code has been rewritten in an effort to support thread safety
2626
and multiple extensions. Namely, go_client.py has been thrown away in favor

bigreq/bigreq.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ package bigreq
44
// This file is automatically generated from bigreq.xml. Edit at your peril!
55

66
import (
7-
"github.com/BurntSushi/xgb"
7+
"github.com/robotn/xgb"
88

9-
"github.com/BurntSushi/xgb/xproto"
9+
"github.com/robotn/xgb/xproto"
1010
)
1111

1212
// Init must be called before using the BIG-REQUESTS extension.

composite/composite.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ package composite
44
// This file is automatically generated from composite.xml. Edit at your peril!
55

66
import (
7-
"github.com/BurntSushi/xgb"
7+
"github.com/robotn/xgb"
88

9-
"github.com/BurntSushi/xgb/xfixes"
10-
"github.com/BurntSushi/xgb/xproto"
9+
"github.com/robotn/xgb/xfixes"
10+
"github.com/robotn/xgb/xproto"
1111
)
1212

1313
// Init must be called before using the Composite extension.

damage/damage.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ package damage
44
// This file is automatically generated from damage.xml. Edit at your peril!
55

66
import (
7-
"github.com/BurntSushi/xgb"
7+
"github.com/robotn/xgb"
88

9-
"github.com/BurntSushi/xgb/xfixes"
10-
"github.com/BurntSushi/xgb/xproto"
9+
"github.com/robotn/xgb/xfixes"
10+
"github.com/robotn/xgb/xproto"
1111
)
1212

1313
// Init must be called before using the DAMAGE extension.

doc.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Most uses of XGB typically fall under the realm of window manager and GUI kit
1010
development, but other applications (like pagers, panels, tilers, etc.) may
1111
also require XGB. Moreover, it is a near certainty that if you need to work
1212
with X, xgbutil will be of great use to you as well:
13-
https://github.com/BurntSushi/xgbutil
13+
https://github.com/robotn/xgbutil
1414
1515
Example
1616
@@ -23,8 +23,8 @@ accompanying documentation can be found in examples/create-window.
2323
2424
import (
2525
"fmt"
26-
"github.com/BurntSushi/xgb"
27-
"github.com/BurntSushi/xgb/xproto"
26+
"github.com/robotn/xgb"
27+
"github.com/robotn/xgb/xproto"
2828
)
2929
3030
func main() {
@@ -74,8 +74,8 @@ can be found in examples/xinerama.
7474
import (
7575
"fmt"
7676
"log"
77-
"github.com/BurntSushi/xgb"
78-
"github.com/BurntSushi/xgb/xinerama"
77+
"github.com/robotn/xgb"
78+
"github.com/robotn/xgb/xinerama"
7979
)
8080
8181
func main() {

dpms/dpms.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ package dpms
44
// This file is automatically generated from dpms.xml. Edit at your peril!
55

66
import (
7-
"github.com/BurntSushi/xgb"
7+
"github.com/robotn/xgb"
88

9-
"github.com/BurntSushi/xgb/xproto"
9+
"github.com/robotn/xgb/xproto"
1010
)
1111

1212
// Init must be called before using the DPMS extension.

dri2/dri2.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ package dri2
44
// This file is automatically generated from dri2.xml. Edit at your peril!
55

66
import (
7-
"github.com/BurntSushi/xgb"
7+
"github.com/robotn/xgb"
88

9-
"github.com/BurntSushi/xgb/xproto"
9+
"github.com/robotn/xgb/xproto"
1010
)
1111

1212
// Init must be called before using the DRI2 extension.

examples/atoms/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"runtime/pprof"
1010
"time"
1111

12-
"github.com/BurntSushi/xgb"
13-
"github.com/BurntSushi/xgb/xproto"
12+
"github.com/robotn/xgb"
13+
"github.com/robotn/xgb/xproto"
1414
)
1515

1616
var (

examples/create-window/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ package main
77
import (
88
"fmt"
99

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

1414
func main() {

examples/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ to events.
1111
If you're looking to query information about your window manager,
1212
get-active-window is a start. However, to do anything extensive requires
1313
a lot of boiler plate. To that end, I'd recommend use of my higher level
14-
library, xgbutil: https://github.com/BurntSushi/xgbutil
14+
library, xgbutil: https://github.com/robotn/xgbutil
1515
1616
There are also examples of using the Xinerama and RandR extensions, if you're
1717
interested in querying information about your active heads. In RandR's case,

0 commit comments

Comments
 (0)