aboutsummaryrefslogtreecommitdiff
path: root/nexgb/examples/seq-nowrap.go
diff options
context:
space:
mode:
authorAndrew Gallant (Ocelot) <Andrew.Gallant@tufts.edu>2012-05-05 18:22:40 -0400
committerAndrew Gallant (Ocelot) <Andrew.Gallant@tufts.edu>2012-05-05 18:22:40 -0400
commit99bc76de54729df5494faa944d4da96a8885d51e (patch)
treea855999db11daed23007aaab866e273ffd275b86 /nexgb/examples/seq-nowrap.go
parent369ad0d33e51035a3e48436fc85f60130b201437 (diff)
downloadhaven-99bc76de54729df5494faa944d4da96a8885d51e.tar.gz
haven-99bc76de54729df5494faa944d4da96a8885d51e.tar.xz
haven-99bc76de54729df5494faa944d4da96a8885d51e.zip
examples. some should be tests
Diffstat (limited to 'nexgb/examples/seq-nowrap.go')
-rw-r--r--nexgb/examples/seq-nowrap.go29
1 files changed, 29 insertions, 0 deletions
diff --git a/nexgb/examples/seq-nowrap.go b/nexgb/examples/seq-nowrap.go
new file mode 100644
index 0000000..994a07b
--- /dev/null
+++ b/nexgb/examples/seq-nowrap.go
@@ -0,0 +1,29 @@
+package main
+
+import (
+ "fmt"
+
+ "github.com/BurntSushi/xgb"
+)
+
+func main() {
+ X, _ := xgb.NewConn()
+
+ for i := 1; i <= 1<<16 + 10; i++ {
+ X.NoOperation()
+ // fmt.Printf("%d. No-Op\n", i)
+ }
+
+ aname := "_NET_ACTIVE_WINDOW"
+
+ for i := 1; i <= 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)
+ }
+ }
+}
+