Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hisaac/PlainPasta
A simple macOS app for "plaintextifying" your clipboard
https://github.com/hisaac/PlainPasta
appkit clipboard macos nspasteboard pasteboard swift
Last synced: about 1 month ago
JSON representation
A simple macOS app for "plaintextifying" your clipboard
- Host: GitHub
- URL: https://github.com/hisaac/PlainPasta
- Owner: hisaac
- License: mit
- Archived: true
- Created: 2018-10-17T01:16:04.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2022-03-11T17:24:13.000Z (almost 3 years ago)
- Last Synced: 2024-08-02T16:10:16.748Z (4 months ago)
- Topics: appkit, clipboard, macos, nspasteboard, pasteboard, swift
- Language: Swift
- Homepage: https://hisaac.github.io/PlainPasta/
- Size: 2.22 MB
- Stars: 85
- Watchers: 5
- Forks: 5
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
- License: LICENSE
Awesome Lists containing this project
- open-source-mac-os-apps - Plain Pasta - Plaintextify your clipboard ![swift_icon] (Applications / Utilities)
- open-source-mac-os-apps - Plain Pasta - Plaintextify your clipboard ![swift_icon] (Applications / Utilities)
- awesome-swift-macos-apps - Plain Pasta - Plaintextify your clipboard (Utilities / Text)
- awesome-swift-macos-apps - Plain Pasta - Plaintextify your clipboard (Utilities / Text)
README
# Plain Pasta
Plain Pasta was a tiny Mac app that makes "Paste and Match Style" the default copy/paste behavior.
## ⚠️ Plain Pasta is no longer under active development ⚠️
This was a really fun project to work on, but I will no longer be actively developing on the project. I'm leaving it here in case there is any code that could still be useful to others. Check out the release notes for a little more information if you'd like: https://github.com/hisaac/PlainPasta/releases/tag/1.3.0
If you're looking for something like Plain Pasta that _is_ still being developed, I'll direct you to the excellent [Pure Paste](https://sindresorhus.com/pure-paste) by [@sindresorhus](https://github.com/sindresorhus). It does everything I had hoped for Plain Pasta to do someday, and then some.
I was in the process of working on a major update to the app. I've kept that work in a separate branch here for reference purposes: [2.0.0-beta](https://github.com/hisaac/PlainPasta/tree/2.0.0-beta)
👋
## Demonstration
Plain Pasta sits in your menu bar, and watches your clipboard for text, removes any styling from the text, and puts plaintext back on your clipboard.
I made this app because I rarely want styling to be copied to my clipboard. When I copy text, all I want is the text.
Download the most recent version of Plain Pasta from the [Mac App Store](https://apps.apple.com/us/app/plain-pasta/id1467796430).
### Without Plain Pasta
Copy/Pasting styled text takes both the text and the styling with it
### With Plain Pasta
Copy/Pasting styled text with Plain Pasta enabled only pastes the text itself, no styling
## Contributing
PRs are more than welcome!
To get up and running, you'll need to clone this repo, and then initialize the [`VerifyNoBS`](https://github.com/olofhellman/VerifyNoBS) submodule using:
```
git submodule update --init
```## Attribution
Plain Pasta was inspired by another app called [FormatMatch](https://itunes.apple.com/us/app/formatmatch/id445211988?mt=12) by [Robert Wessels](http://www.robertwessels.com).
I've used FormatMatch for many years. I would've happily used it for many more years to come, but the app hasn't been updated for over 6 years, and Robert Wessel's website is no longer live. I've been concerned for the continued life of the app, so I finally decided to take the time to write a new version using modern technologies.
- Icon image is [Noodles by Paolo Valzania from the Noun Project](https://thenounproject.com/search/?q=noodle&i=1681744)
- Clipboard monitoring code based on [klipsustreamer](https://github.com/lahdekorpi/klipsustreamer) by [Toni Lähdekorpi](https://github.com/lahdekorpi)