https://github.com/null93/bitsy
Bitsy is a simple and lightweight clipboard manager for MacOS
https://github.com/null93/bitsy
clipboard-manager java-application mac-application maven
Last synced: 4 months ago
JSON representation
Bitsy is a simple and lightweight clipboard manager for MacOS
- Host: GitHub
- URL: https://github.com/null93/bitsy
- Owner: null93
- License: mit
- Created: 2016-05-25T07:03:28.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-10-11T05:17:14.000Z (about 7 years ago)
- Last Synced: 2025-01-01T00:22:49.923Z (12 months ago)
- Topics: clipboard-manager, java-application, mac-application, maven
- Language: Java
- Homepage:
- Size: 16.6 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Bitsy
> Bitsy is a simple and lightweight clipboard manager for MacOS



## Building & Running
This project uses Maven as it's build system. If you would like to build and run the application from source, then the following commands will prove useful. Please note that the application version is replaced with **x.x.x** for the sake of maintainability of this _README_ document.
##### Package JAR
This will produce a _jar_ file in the _target_ directory.
```
mvn package
```
##### Bundle APP
This will bundle the project _jar_ into an app that can be found here: _target/bitsy-x.x.x/bitsy.app_
```
mvn package appbundle:bundle
```
##### Run JAR
This will run the produced _jar_ file, please note that you can also run the _app_ by simply clicking it.
```
java -cp target/bitsy-x.x.x.jar io.raffi.bitsy.Application
```