nexgb: rewrite import paths
This commit is contained in:
@@ -9,8 +9,8 @@ import (
|
||||
"runtime/pprof"
|
||||
"time"
|
||||
|
||||
"github.com/BurntSushi/xgb"
|
||||
"github.com/BurntSushi/xgb/xproto"
|
||||
xgb "janouch.name/haven/nexgb"
|
||||
"janouch.name/haven/nexgb/xproto"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
@@ -7,8 +7,8 @@ package main
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/BurntSushi/xgb"
|
||||
"github.com/BurntSushi/xgb/xproto"
|
||||
xgb "janouch.name/haven/nexgb"
|
||||
"janouch.name/haven/nexgb/xproto"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
||||
@@ -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://janouch.name/haven/nexgbutil
|
||||
|
||||
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,
|
||||
|
||||
@@ -6,8 +6,8 @@ import (
|
||||
"fmt"
|
||||
"log"
|
||||
|
||||
"github.com/BurntSushi/xgb"
|
||||
"github.com/BurntSushi/xgb/xproto"
|
||||
xgb "janouch.name/haven/nexgb"
|
||||
"janouch.name/haven/nexgb/xproto"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
||||
@@ -14,9 +14,9 @@ import (
|
||||
"fmt"
|
||||
"log"
|
||||
|
||||
"github.com/BurntSushi/xgb"
|
||||
"github.com/BurntSushi/xgb/randr"
|
||||
"github.com/BurntSushi/xgb/xproto"
|
||||
xgb "janouch.name/haven/nexgb"
|
||||
"janouch.name/haven/nexgb/randr"
|
||||
"janouch.name/haven/nexgb/xproto"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
||||
@@ -5,8 +5,8 @@ import (
|
||||
"fmt"
|
||||
"log"
|
||||
|
||||
"github.com/BurntSushi/xgb"
|
||||
"github.com/BurntSushi/xgb/xinerama"
|
||||
xgb "janouch.name/haven/nexgb"
|
||||
"janouch.name/haven/nexgb/xinerama"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
||||
Reference in New Issue
Block a user