https://github.com/blackwire/briev
Developer Toolkit
https://github.com/blackwire/briev
clipboard-manager developer-tools office-tools task-automation
Last synced: 6 months ago
JSON representation
Developer Toolkit
- Host: GitHub
- URL: https://github.com/blackwire/briev
- Owner: blackwire
- License: mit
- Created: 2018-04-22T22:20:18.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-07-16T18:37:42.000Z (over 4 years ago)
- Last Synced: 2023-04-25T18:54:26.762Z (over 2 years ago)
- Topics: clipboard-manager, developer-tools, office-tools, task-automation
- Language: CSS
- Size: 745 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# briev
A developer toolkit that is designed to take all those little tasks that require googling something and smash them into an application along with some additional goodies like extending clipboard usefulness and automating repetative tasks.
### Description:
---
A basic set of tools that get used in my trade day in and day out. Color picker/converter, character entity lookup, clipboard utilities (multi-clipboard using CtrlorCmd+1/CtrlorCmd+2 to switch), clipboard history, clipboard to file conversion and file to clipboard conversion, a basic automation tool, and a task scheduler (that requires the app to be open at the moment).
### Using Automation:
---
#### Mouse Behaviors:
* **Move to:** mouse.move(x-coordinate, y-coordinate, speed[fast/slow])
* **Click:** mouse.click(button[left/right/middle], click-count[double/single])
* **Drag to:** mouse.drag(x-coordinate, y-coordinate)
* **Scroll:** mouse.scroll(horizontal-amount, vertical-amount)
#### Keyboard Behaviors:
* **Hold key:** keyboard.holdKey(key)
* **Release key:** keyboard.releaseKey(key)
* **Tap key:** keyboard.tapKey(key)
* **Type:** keyboard.type(string)
#### Sleep Behaviors:
* **Second:** sleep.second(seconds-to-sleep)
* **Minutes:** sleep.minute(minutes-to-sleep)