https://github.com/dantheuber/clipless
A clipboard manager with a deep toolkit for office workers.
https://github.com/dantheuber/clipless
clipboard clipboard-management clipboard-manager electron toolkit
Last synced: 6 months ago
JSON representation
A clipboard manager with a deep toolkit for office workers.
- Host: GitHub
- URL: https://github.com/dantheuber/clipless
- Owner: dantheuber
- Created: 2015-09-11T08:30:20.000Z (about 10 years ago)
- Default Branch: main
- Last Pushed: 2024-12-16T05:28:40.000Z (10 months ago)
- Last Synced: 2025-03-23T21:51:54.535Z (7 months ago)
- Topics: clipboard, clipboard-management, clipboard-manager, electron, toolkit
- Language: JavaScript
- Homepage:
- Size: 804 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Clipless
> A clipboard manager for office workers developed with [`electron-webpack`](https://github.com/electron-userland/electron-webpack).## Feature List
Review the [planning document](https://github.com/dantheuber/clipless/blob/master/PlanningDocument.md) for in depth plans for this project going forward.### Currently implemented Features
1. Maintain an ongoing list of the last 10 items copied to your clipboard.
2. Use hotkey to quickly retrieve the contents of a previous clip:
- `ctrl+{number}` on windows or linux
- `command+{number}` on Mac
3. Lock a previous clips contents, useful for saving an item that you would like to access at a later time without going back to re-copy it from a given source.
4. Make manual changes to a previous clip.
5. Create clip compilation templates as described in the [planning document](https://github.com/dantheuber/clipless/blob/master/PlanningDocument.md#clip-compile-templates)
- Use `ctrl+shift+~` to view list of templates and select one by clicking on it or tabbing thru the list.
6. Open all the tools you need on the fly! Using quick clips you can configure relevant search terms using regular expressions and associate them with online tools allowing you the ability to quickly open them directly without any hassle.
- TODO: Write thorough documentation on how quick clips feature is used. (particularly named capture groups)### Planned Features
1. [Scratch Pad](https://github.com/dantheuber/clipless/issues/27)
## Getting Started
Simply clone down this repository, install dependencies, and start the app.```bash
# clone the repo
git clone https://github.com/dantheuber/clipless.git
cd clipless# install dependencies
yarn# start developing
yarn dev
```### Development Scripts
```bash
# run application in development mode
yarn dev# compile source code and create webpack output
yarn compile# `yarn compile` & create build with electron-builder
yarn dist# `yarn compile` & create unpacked build with electron-builder
yarn dist:dir
```