File tree Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 1
- <img src =" docs/logo.svg " width =" 250 " align =" right " />
1
+ <img src =" https://github.com/9001/copyparty/raw/hovudstraum/ docs/logo.svg" width =" 250 " align =" right " />
2
2
3
3
### 💾🎉 copyparty
4
4
@@ -1887,6 +1887,7 @@ interact with copyparty using non-browser clients
1887
1887
* [rclone](https://rclone.org/) as client can give ~ 5x performance, see [./docs/rclone.md](docs/rclone.md)
1888
1888
1889
1889
* sharex (screenshot utility): see [./contrib/sharex.sxcu](contrib/# sharexsxcu)
1890
+ * and for screenshots on linux, see [./contrib/flameshot.sh](./contrib/flameshot.sh)
1890
1891
1891
1892
* contextlet (web browser integration); see [contrib contextlet](contrib/# send-to-cppcontextletjson)
1892
1893
Original file line number Diff line number Diff line change 19
19
* the ` act:bput ` thing is optional since copyparty v1.9.29
20
20
* using an older sharex version, maybe sharex v12.1.1 for example? dw fam i got your back 👉😎👉 [ ` sharex12.sxcu ` ] ( sharex12.sxcu )
21
21
22
+ ### [ ` flameshot.sh ` ] ( flameshot.sh )
23
+ * takes a screenshot with [ flameshot] ( https://flameshot.org/ ) on Linux, uploads it, and writes the URL to clipboard
24
+
22
25
### [ ` send-to-cpp.contextlet.json ` ] ( send-to-cpp.contextlet.json )
23
26
* browser integration, kind of? custom rightclick actions and stuff
24
27
* rightclick a pic and send it to copyparty straight from your browser
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ set -e
3
+
4
+ # take a screenshot with flameshot and send it to copyparty;
5
+ # the image url will be placed on your clipboard
6
+
7
+ password=wark
8
+ url=https://a.ocv.me/up/
9
+ filename=$( date +%Y-%m%d-%H%M%S) .png
10
+
11
+ flameshot gui -s -r |
12
+ curl -T- $url$filename ? pw=$password |
13
+ tail -n 1 |
14
+ xsel -ib
You can’t perform that action at this time.
0 commit comments