@fnava621/pilens 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +32 -0
- package/index.ts +1481 -0
- package/package.json +35 -0
package/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# PiLens for Pi
|
|
2
|
+
|
|
3
|
+
PiLens lets you capture, mark up, and send screenshots directly into an active Pi session.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pi install npm:@fnava621/pilens
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Then download and open the Mac app from [pilens.dev](https://pilens.dev):
|
|
12
|
+
|
|
13
|
+
```text
|
|
14
|
+
https://pilens.dev/download
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Inside Pi, run:
|
|
18
|
+
|
|
19
|
+
```text
|
|
20
|
+
/pilens
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## What this package includes
|
|
24
|
+
|
|
25
|
+
This npm package includes the Pi-side extension only:
|
|
26
|
+
|
|
27
|
+
- `/pilens` capture picker
|
|
28
|
+
- `/pilens capture` capture trigger
|
|
29
|
+
- local bridge for the native PiLens Mac app
|
|
30
|
+
- inline preview rendering for sent screenshots
|
|
31
|
+
|
|
32
|
+
The native macOS menu bar app is distributed separately as a DMG from `pilens.dev`.
|