Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drdrang/jumpcut
A small fork of Steve Cook's Jumpcut clipboard history utility(jumpcut.sourceforge.net).
https://github.com/drdrang/jumpcut
Last synced: 3 months ago
JSON representation
A small fork of Steve Cook's Jumpcut clipboard history utility(jumpcut.sourceforge.net).
- Host: GitHub
- URL: https://github.com/drdrang/jumpcut
- Owner: drdrang
- Created: 2009-01-28T15:57:38.000Z (almost 16 years ago)
- Default Branch: master
- Last Pushed: 2010-09-02T22:09:24.000Z (about 14 years ago)
- Last Synced: 2024-07-19T22:48:00.945Z (4 months ago)
- Language: Objective-C
- Homepage: http://www.leancrew.com/all-this/2009/01/jumpcut/
- Size: 453 KB
- Stars: 47
- Watchers: 7
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is a fork of [Steve Cook's Jumpcut][1], a multi-clipboard utility for text on the Mac. It differs from the original in
* The size of the HUD display.
* The alignment of the text.
* The size and location of the clipping number.
* The size of the scissors icon.A more complete description can be found [here][2].
**Note**
The current version will compile in XCode 3.2.3 on Snow Leopard. If you need to build on a Leopard machine, uncomment the `enum` in these lines of AppController.m:// The following lines should be uncommented if you're building on 10.5 or earlier.
//enum {
// NSWindowCollectionBehaviorDefault = 0,
// NSWindowCollectionBehaviorCanJoinAllSpaces = 1 << 0,
// NSWindowCollectionBehaviorMoveToActiveSpace = 1 << 1
//};You may also need to change the Base SDK in the XCode Project Settings.
Thanks to [Matthew Freeman][3] for pointing out that the older version wouldn't build anymore.
[1]: http://jumpcut.sourceforge.net
[2]: http://www.leancrew.com/all-this/2009/01/jumpcut/
[3]: http://github.com/n2linux