aboutsummaryrefslogtreecommitdiff
path: root/nexgb/examples/seq-wrap.go
diff options
context:
space:
mode:
Diffstat (limited to 'nexgb/examples/seq-wrap.go')
-rw-r--r--nexgb/examples/seq-wrap.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/nexgb/examples/seq-wrap.go b/nexgb/examples/seq-wrap.go
new file mode 100644
index 0000000..b5bc834
--- /dev/null
+++ b/nexgb/examples/seq-wrap.go
@@ -0,0 +1,24 @@
+package main
+
+import (
+ "fmt"
+
+ "github.com/BurntSushi/xgb"
+)
+
+func main() {
+ X, _ := xgb.NewConn()
+
+ aname := "_NET_ACTIVE_WINDOW"
+
+ for i := 1; i <= 1<<16 + 10; i++ {
+ atom, err := X.InternAtom(true, uint16(len(aname)), aname).Reply()
+ if err != nil {
+ fmt.Println(err)
+ } else {
+ fmt.Printf("%d. Sequence: %d, Atom: %d\n",
+ i, atom.Sequence, atom.Atom)
+ }
+ }
+}
+