You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Display information or place always-on-top widgets
12
+
* Display information or always-on-top widgets
13
13
* Use HTML/JS/CSS to draw on your screen
14
14
* Great for screencasting or streaming overlays
15
15
* Edit source, hit save, screen will update
@@ -18,8 +18,31 @@ User programmable screen overlay using web technologies
18
18
19
19
## Getting Started
20
20
21
-
* download or run shell command
22
-
* run with edit flag `topframe --edit`
21
+
First, [download Go](https://golang.org/dl/) or `brew install go`. If you have Go installed, make sure it is
22
+
version 1.16 or greater:
23
+
24
+
```
25
+
$ go version
26
+
go version go1.16.2 darwin/amd64
27
+
```
28
+
29
+
Then use `go get` to download, build, and install the topframe binary into a `PATH` directory:
30
+
31
+
```
32
+
$ GOBIN=/usr/local/bin go get github.com/progrium/topframe
33
+
```
34
+
35
+
Currently, this is the preferred way to install as anything else requires a much more elaborate
36
+
release process with Apple code signing, etc. Specifying `GOBIN` is optional, but lets you specify
37
+
where to install the binary, ensuring it is put in a directory in your `PATH`.
38
+
39
+
Running `topframe` will create a `~/.topframe` directory with a default `index.html` used for the
40
+
overlay. If you have an `EDITOR` specified, you can run with `-edit` to open this in your preferred editor
41
+
so you can start making changes to your topframe overlay immediately:
42
+
43
+
```
44
+
$ topframe -edit
45
+
```
23
46
24
47
### Launching on Startup
25
48
@@ -52,4 +75,6 @@ in the right place before generating, or modify the plist file.
52
75
53
76
## About
54
77
78
+
Topframe started as a 130 line example for [progrium/macdriver](https://github.com/progrium/macdriver).
0 commit comments