forked from proxypoke/i3ipc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
version.go
34 lines (29 loc) · 914 Bytes
/
version.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Author: slowpoke <mail plus git at slowpoke dot io>
// Repository: https://github.com/proxypoke/i3ipc
//
// This program is free software under the terms of the
// Do What The Fuck You Want To Public License.
// It comes without any warranty, to the extent permitted by
// applicable law. For a copy of the license, see COPYING or
// head to http://sam.zoy.org/wtfpl/COPYING.
package i3ipc
import (
"encoding/json"
)
// Struct representing the version of i3. For documentation of the
// fields, refer to http://i3wm.org/docs/ipc.html#_version_reply.
type I3Version struct {
Major int32
Minor int32
Patch int32
Human_Readable string
}
// GetVersion fetches the version of i3.
func (self *IPCSocket) GetVersion() (version I3Version, err error) {
json_reply, err := self.Raw(I3GetVersion, "")
if err != nil {
return
}
err = json.Unmarshal(json_reply, &version)
return
}