https://github.com/webfreak001/sharex-lite
Cross Platform ShareX clone - currently on hold
https://github.com/webfreak001/sharex-lite
Last synced: over 1 year ago
JSON representation
Cross Platform ShareX clone - currently on hold
- Host: GitHub
- URL: https://github.com/webfreak001/sharex-lite
- Owner: WebFreak001
- License: gpl-3.0
- Created: 2015-10-02T23:11:36.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2016-02-11T15:37:26.000Z (over 10 years ago)
- Last Synced: 2025-01-11T04:13:10.192Z (over 1 year ago)
- Language: D
- Homepage:
- Size: 91.8 KB
- Stars: 6
- Watchers: 5
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cross Platform ShareX clone
Currently WIP
Supported platforms for sure: Linux
## Installation:
Install dub, gtk dev, x11 dev
First run `dub build :selector` to create the screenshot capture utility
Then run `dub build` to create the actual program
Running it will create the config folder (~/.sharex/)
Example script for .sharex/scripts/ folder:
```lua
-- simple.lua
-- Example Workflow
sleep(500)
bitmap = captureObjects()
path = saveImage(bitmap)
runWait("gimp " .. path)
url = uploadImage(path)
copyText(url)
```