diff options
35 files changed, 79 insertions, 79 deletions
diff --git a/bigreq/bigreq.go b/bigreq/bigreq.go index 6590376..d8a5859 100644 --- a/bigreq/bigreq.go +++ b/bigreq/bigreq.go @@ -4,9 +4,9 @@ package bigreq // This file is automatically generated from bigreq.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the BIG-REQUESTS extension. diff --git a/composite/composite.go b/composite/composite.go index 1373f8b..4622cee 100644 --- a/composite/composite.go +++ b/composite/composite.go @@ -4,10 +4,10 @@ package composite // This file is automatically generated from composite.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/xfixes" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/xfixes" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the Composite extension. diff --git a/damage/damage.go b/damage/damage.go index 26eca04..53326d9 100644 --- a/damage/damage.go +++ b/damage/damage.go @@ -4,10 +4,10 @@ package damage // This file is automatically generated from damage.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/xfixes" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/xfixes" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the DAMAGE extension. @@ -10,7 +10,7 @@ Most uses of XGB typically fall under the realm of window manager and GUI kit development, but other applications (like pagers, panels, tilers, etc.) may also require XGB. Moreover, it is a near certainty that if you need to work with X, xgbutil will be of great use to you as well: -https://github.com/BurntSushi/xgbutil +https://github.com/jezek/xgbutil Example @@ -23,8 +23,8 @@ accompanying documentation can be found in examples/create-window. import ( "fmt" - "github.com/BurntSushi/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb" + "github.com/jezek/xgb/xproto" ) func main() { @@ -74,8 +74,8 @@ can be found in examples/xinerama. import ( "fmt" "log" - "github.com/BurntSushi/xgb" - "github.com/BurntSushi/xgb/xinerama" + "github.com/jezek/xgb" + "github.com/jezek/xgb/xinerama" ) func main() { diff --git a/dpms/dpms.go b/dpms/dpms.go index 4bf5883..da28f1e 100644 --- a/dpms/dpms.go +++ b/dpms/dpms.go @@ -4,9 +4,9 @@ package dpms // This file is automatically generated from dpms.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the DPMS extension. diff --git a/dri2/dri2.go b/dri2/dri2.go index 820cf2b..1cc1d0a 100644 --- a/dri2/dri2.go +++ b/dri2/dri2.go @@ -4,9 +4,9 @@ package dri2 // This file is automatically generated from dri2.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the DRI2 extension. diff --git a/examples/atoms/main.go b/examples/atoms/main.go index 8985768..b94a772 100644 --- a/examples/atoms/main.go +++ b/examples/atoms/main.go @@ -9,8 +9,8 @@ import ( "runtime/pprof" "time" - "github.com/BurntSushi/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb" + "github.com/jezek/xgb/xproto" ) var ( diff --git a/examples/create-window/main.go b/examples/create-window/main.go index 73a0099..50a9bff 100644 --- a/examples/create-window/main.go +++ b/examples/create-window/main.go @@ -7,8 +7,8 @@ package main import ( "fmt" - "github.com/BurntSushi/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb" + "github.com/jezek/xgb/xproto" ) func main() { diff --git a/examples/doc.go b/examples/doc.go index 80ea5b7..20fed98 100644 --- a/examples/doc.go +++ b/examples/doc.go @@ -11,7 +11,7 @@ to events. If you're looking to query information about your window manager, get-active-window is a start. However, to do anything extensive requires a lot of boiler plate. To that end, I'd recommend use of my higher level -library, xgbutil: https://github.com/BurntSushi/xgbutil +library, xgbutil: https://github.com/jezek/xgbutil There are also examples of using the Xinerama and RandR extensions, if you're interested in querying information about your active heads. In RandR's case, diff --git a/examples/get-active-window/main.go b/examples/get-active-window/main.go index 48e020c..37f374c 100644 --- a/examples/get-active-window/main.go +++ b/examples/get-active-window/main.go @@ -6,8 +6,8 @@ import ( "fmt" "log" - "github.com/BurntSushi/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb" + "github.com/jezek/xgb/xproto" ) func main() { diff --git a/examples/randr/main.go b/examples/randr/main.go index e349144..13b934a 100644 --- a/examples/randr/main.go +++ b/examples/randr/main.go @@ -14,9 +14,9 @@ import ( "fmt" "log" - "github.com/BurntSushi/xgb" - "github.com/BurntSushi/xgb/randr" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb" + "github.com/jezek/xgb/randr" + "github.com/jezek/xgb/xproto" ) func main() { diff --git a/examples/xinerama/main.go b/examples/xinerama/main.go index 896bb63..a7e1531 100644 --- a/examples/xinerama/main.go +++ b/examples/xinerama/main.go @@ -5,8 +5,8 @@ import ( "fmt" "log" - "github.com/BurntSushi/xgb" - "github.com/BurntSushi/xgb/xinerama" + "github.com/jezek/xgb" + "github.com/jezek/xgb/xinerama" ) func main() { @@ -4,9 +4,9 @@ package ge // This file is automatically generated from ge.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the Generic Event Extension extension. @@ -4,9 +4,9 @@ package glx // This file is automatically generated from glx.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the GLX extension. diff --git a/randr/randr.go b/randr/randr.go index 021c011..bc62d73 100644 --- a/randr/randr.go +++ b/randr/randr.go @@ -4,10 +4,10 @@ package randr // This file is automatically generated from randr.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/render" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/render" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the RANDR extension. diff --git a/record/record.go b/record/record.go index 5469170..419587f 100644 --- a/record/record.go +++ b/record/record.go @@ -4,9 +4,9 @@ package record // This file is automatically generated from record.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the RECORD extension. diff --git a/render/render.go b/render/render.go index e15bd67..223162a 100644 --- a/render/render.go +++ b/render/render.go @@ -4,9 +4,9 @@ package render // This file is automatically generated from render.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the RENDER extension. @@ -4,9 +4,9 @@ package res // This file is automatically generated from res.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the X-Resource extension. diff --git a/screensaver/screensaver.go b/screensaver/screensaver.go index 418576c..6854505 100644 --- a/screensaver/screensaver.go +++ b/screensaver/screensaver.go @@ -4,9 +4,9 @@ package screensaver // This file is automatically generated from screensaver.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the MIT-SCREEN-SAVER extension. diff --git a/shape/shape.go b/shape/shape.go index 7069f7e..42b3f9f 100644 --- a/shape/shape.go +++ b/shape/shape.go @@ -4,9 +4,9 @@ package shape // This file is automatically generated from shape.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the SHAPE extension. @@ -4,9 +4,9 @@ package shm // This file is automatically generated from shm.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the MIT-SHM extension. diff --git a/xcmisc/xcmisc.go b/xcmisc/xcmisc.go index 1778057..93dd20f 100644 --- a/xcmisc/xcmisc.go +++ b/xcmisc/xcmisc.go @@ -4,9 +4,9 @@ package xcmisc // This file is automatically generated from xc_misc.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the XC-MISC extension. diff --git a/xevie/xevie.go b/xevie/xevie.go index 180312b..f0ddd31 100644 --- a/xevie/xevie.go +++ b/xevie/xevie.go @@ -4,9 +4,9 @@ package xevie // This file is automatically generated from xevie.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the XEVIE extension. diff --git a/xf86dri/xf86dri.go b/xf86dri/xf86dri.go index 51c9322..bc67e9b 100644 --- a/xf86dri/xf86dri.go +++ b/xf86dri/xf86dri.go @@ -4,9 +4,9 @@ package xf86dri // This file is automatically generated from xf86dri.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the XFree86-DRI extension. diff --git a/xf86vidmode/xf86vidmode.go b/xf86vidmode/xf86vidmode.go index 2829fd6..6bd3232 100644 --- a/xf86vidmode/xf86vidmode.go +++ b/xf86vidmode/xf86vidmode.go @@ -4,9 +4,9 @@ package xf86vidmode // This file is automatically generated from xf86vidmode.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the XFree86-VidModeExtension extension. diff --git a/xfixes/xfixes.go b/xfixes/xfixes.go index 0f9e4b0..5751527 100644 --- a/xfixes/xfixes.go +++ b/xfixes/xfixes.go @@ -4,11 +4,11 @@ package xfixes // This file is automatically generated from xfixes.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/render" - "github.com/BurntSushi/xgb/shape" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/render" + "github.com/jezek/xgb/shape" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the XFIXES extension. diff --git a/xgbgen/context.go b/xgbgen/context.go index f18fd67..755cf6e 100644 --- a/xgbgen/context.go +++ b/xgbgen/context.go @@ -64,10 +64,10 @@ func (c *Context) Morph(xmlBytes []byte) { // Write imports. We always need to import at least xgb. // We also need to import xproto if it's an extension. c.Putln("import (") - c.Putln("\"github.com/BurntSushi/xgb\"") + c.Putln("\"github.com/jezek/xgb\"") c.Putln("") if c.protocol.isExt() { - c.Putln("\"github.com/BurntSushi/xgb/xproto\"") + c.Putln("\"github.com/jezek/xgb/xproto\"") } sort.Sort(Protocols(c.protocol.Imports)) @@ -76,7 +76,7 @@ func (c *Context) Morph(xmlBytes []byte) { if imp.Name == "xproto" { continue } - c.Putln("\"github.com/BurntSushi/xgb/%s\"", imp.Name) + c.Putln("\"github.com/jezek/xgb/%s\"", imp.Name) } c.Putln(")") c.Putln("") diff --git a/xinerama/xinerama.go b/xinerama/xinerama.go index ec97406..580387c 100644 --- a/xinerama/xinerama.go +++ b/xinerama/xinerama.go @@ -4,9 +4,9 @@ package xinerama // This file is automatically generated from xinerama.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the XINERAMA extension. diff --git a/xprint/xprint.go b/xprint/xprint.go index d692aed..97e06e1 100644 --- a/xprint/xprint.go +++ b/xprint/xprint.go @@ -4,9 +4,9 @@ package xprint // This file is automatically generated from xprint.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the XpExtension extension. diff --git a/xproto/xproto.go b/xproto/xproto.go index 716c49b..8d7e51b 100644 --- a/xproto/xproto.go +++ b/xproto/xproto.go @@ -4,7 +4,7 @@ package xproto // This file is automatically generated from xproto.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" ) // Setup parses the setup bytes retrieved when diff --git a/xproto/xproto_test.go b/xproto/xproto_test.go index a5bec71..f8080bf 100644 --- a/xproto/xproto_test.go +++ b/xproto/xproto_test.go @@ -26,7 +26,7 @@ import ( "testing" "time" - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" ) // The X connection used throughout testing. diff --git a/xselinux/xselinux.go b/xselinux/xselinux.go index 1afcc10..68d55ea 100644 --- a/xselinux/xselinux.go +++ b/xselinux/xselinux.go @@ -4,9 +4,9 @@ package xselinux // This file is automatically generated from xselinux.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the SELinux extension. diff --git a/xtest/xtest.go b/xtest/xtest.go index 182760e..c11cfc6 100644 --- a/xtest/xtest.go +++ b/xtest/xtest.go @@ -4,9 +4,9 @@ package xtest // This file is automatically generated from xtest.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the XTEST extension. @@ -4,10 +4,10 @@ package xv // This file is automatically generated from xv.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/shm" - "github.com/BurntSushi/xgb/xproto" + "github.com/jezek/xgb/shm" + "github.com/jezek/xgb/xproto" ) // Init must be called before using the XVideo extension. diff --git a/xvmc/xvmc.go b/xvmc/xvmc.go index b943fa0..3f61416 100644 --- a/xvmc/xvmc.go +++ b/xvmc/xvmc.go @@ -4,10 +4,10 @@ package xvmc // This file is automatically generated from xvmc.xml. Edit at your peril! import ( - "github.com/BurntSushi/xgb" + "github.com/jezek/xgb" - "github.com/BurntSushi/xgb/xproto" - "github.com/BurntSushi/xgb/xv" + "github.com/jezek/xgb/xproto" + "github.com/jezek/xgb/xv" ) // Init must be called before using the XVideo-MotionCompensation extension. |
