clipsy 1.6.0__py3-none-any.whl → 1.7.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- clipsy/__init__.py +1 -1
- clipsy/__main__.py +10 -8
- {clipsy-1.6.0.dist-info → clipsy-1.7.0.dist-info}/METADATA +8 -8
- {clipsy-1.6.0.dist-info → clipsy-1.7.0.dist-info}/RECORD +8 -8
- {clipsy-1.6.0.dist-info → clipsy-1.7.0.dist-info}/WHEEL +0 -0
- {clipsy-1.6.0.dist-info → clipsy-1.7.0.dist-info}/entry_points.txt +0 -0
- {clipsy-1.6.0.dist-info → clipsy-1.7.0.dist-info}/licenses/LICENSE +0 -0
- {clipsy-1.6.0.dist-info → clipsy-1.7.0.dist-info}/top_level.txt +0 -0
clipsy/__init__.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
__version__ = "1.
|
|
1
|
+
__version__ = "1.7.0"
|
|
2
2
|
__app_name__ = "Clipsy"
|
clipsy/__main__.py
CHANGED
|
@@ -154,34 +154,36 @@ def main():
|
|
|
154
154
|
formatter_class=argparse.RawDescriptionHelpFormatter,
|
|
155
155
|
epilog="""
|
|
156
156
|
Commands:
|
|
157
|
-
(none)
|
|
158
|
-
install Install as LaunchAgent (runs on login)
|
|
157
|
+
(none) Install and run as background service (default)
|
|
159
158
|
uninstall Remove LaunchAgent
|
|
160
159
|
status Check if Clipsy is running
|
|
160
|
+
run Run in foreground (for debugging)
|
|
161
161
|
|
|
162
162
|
Examples:
|
|
163
|
-
clipsy
|
|
163
|
+
clipsy # Install and start as background service
|
|
164
164
|
clipsy status # Check if running
|
|
165
165
|
clipsy uninstall # Stop and remove from login items
|
|
166
|
+
clipsy run # Run in foreground (debugging)
|
|
166
167
|
""",
|
|
167
168
|
)
|
|
168
169
|
parser.add_argument(
|
|
169
170
|
"command",
|
|
170
171
|
nargs="?",
|
|
171
|
-
choices=["
|
|
172
|
+
choices=["uninstall", "status", "run"],
|
|
172
173
|
help="Command to run",
|
|
173
174
|
)
|
|
174
175
|
|
|
175
176
|
args = parser.parse_args()
|
|
176
177
|
|
|
177
|
-
if args.command == "
|
|
178
|
-
sys.exit(install_launchagent())
|
|
179
|
-
elif args.command == "uninstall":
|
|
178
|
+
if args.command == "uninstall":
|
|
180
179
|
sys.exit(uninstall_launchagent())
|
|
181
180
|
elif args.command == "status":
|
|
182
181
|
sys.exit(check_status())
|
|
183
|
-
|
|
182
|
+
elif args.command == "run":
|
|
184
183
|
run_app()
|
|
184
|
+
else:
|
|
185
|
+
# Default: install and start as background service
|
|
186
|
+
sys.exit(install_launchagent())
|
|
185
187
|
|
|
186
188
|
|
|
187
189
|
if __name__ == "__main__":
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: clipsy
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.7.0
|
|
4
4
|
Summary: Lightweight clipboard history manager for macOS
|
|
5
5
|
Author-email: Brendan Conrad <brendan.conrad@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -64,14 +64,14 @@ A lightweight clipboard history manager for macOS. Runs as a menu bar icon — n
|
|
|
64
64
|
```bash
|
|
65
65
|
brew install pipx
|
|
66
66
|
pipx install clipsy
|
|
67
|
-
clipsy
|
|
67
|
+
clipsy
|
|
68
68
|
```
|
|
69
69
|
|
|
70
70
|
### Via pip
|
|
71
71
|
|
|
72
72
|
```bash
|
|
73
73
|
pip install clipsy
|
|
74
|
-
clipsy
|
|
74
|
+
clipsy
|
|
75
75
|
```
|
|
76
76
|
|
|
77
77
|
### From source
|
|
@@ -81,12 +81,12 @@ git clone https://github.com/brencon/clipsy.git
|
|
|
81
81
|
cd clipsy
|
|
82
82
|
python3 -m venv .venv
|
|
83
83
|
.venv/bin/pip install -e .
|
|
84
|
-
.venv/bin/clipsy
|
|
84
|
+
.venv/bin/clipsy
|
|
85
85
|
```
|
|
86
86
|
|
|
87
87
|
## Usage
|
|
88
88
|
|
|
89
|
-
After running `clipsy
|
|
89
|
+
After running `clipsy`, the app installs as a background service and starts automatically on login. A scissors icon (✂️) appears in your menu bar.
|
|
90
90
|
|
|
91
91
|
Then just use your Mac normally. Every time you copy something, it shows up in the Clipsy menu:
|
|
92
92
|
|
|
@@ -112,10 +112,10 @@ Then just use your Mac normally. Every time you copy something, it shows up in t
|
|
|
112
112
|
## Commands
|
|
113
113
|
|
|
114
114
|
```bash
|
|
115
|
-
clipsy
|
|
116
|
-
clipsy uninstall # Remove from login items
|
|
115
|
+
clipsy # Install and start as background service (default)
|
|
117
116
|
clipsy status # Check if running
|
|
118
|
-
clipsy
|
|
117
|
+
clipsy uninstall # Remove from login items
|
|
118
|
+
clipsy run # Run in foreground (for debugging)
|
|
119
119
|
```
|
|
120
120
|
|
|
121
121
|
## Data Storage
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
clipsy/__init__.py,sha256=
|
|
2
|
-
clipsy/__main__.py,sha256=
|
|
1
|
+
clipsy/__init__.py,sha256=5B_3MB6DYDXcJfVxDSzafJY1_-IM-eLcNadIWCMyJTc,46
|
|
2
|
+
clipsy/__main__.py,sha256=Ipb_HlLKeG5TPKdaAd4FALgrvCX9PPw9TuMF1BH0AAQ,4962
|
|
3
3
|
clipsy/app.py,sha256=_IKuZgA-DvAE3KDsDN00S0aaMIxwBpiv_P1fpzwQFqU,7299
|
|
4
4
|
clipsy/config.py,sha256=E9NCsGMeT2H0YXYCq5xYwbd27VkksV4S9txZSMX0RmE,672
|
|
5
5
|
clipsy/models.py,sha256=i3KjD4Dcp7y_gTXkIBr2xZxFIIC6kHaMWmv6cSIDABM,563
|
|
@@ -7,9 +7,9 @@ clipsy/monitor.py,sha256=UUKZToYcZ5pzu7LfiuJ_nnE4AA-d3uLW-WdQU_XrDME,6288
|
|
|
7
7
|
clipsy/redact.py,sha256=EU2nq8oEDYLZ_I_9tX2bXACIF971a0V_ApKdvpN4VGY,7284
|
|
8
8
|
clipsy/storage.py,sha256=QNox2-spkVx_gMPSWqKgF_yj-SMpRJ4UAT6yd9l6rVY,9794
|
|
9
9
|
clipsy/utils.py,sha256=rztT20cXYJ7633q3oLwt6Fv0Ubq9hm5bPPKDkWyvxdI,2208
|
|
10
|
-
clipsy-1.
|
|
11
|
-
clipsy-1.
|
|
12
|
-
clipsy-1.
|
|
13
|
-
clipsy-1.
|
|
14
|
-
clipsy-1.
|
|
15
|
-
clipsy-1.
|
|
10
|
+
clipsy-1.7.0.dist-info/licenses/LICENSE,sha256=bZ7uVihgPnLGryi5ugUgkVrEoho0_hFAd3bVdhYXGqs,1071
|
|
11
|
+
clipsy-1.7.0.dist-info/METADATA,sha256=xO1ksDaZw867EM92OS3AsH8yakCtH1doeytarvNCAtQ,5811
|
|
12
|
+
clipsy-1.7.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
13
|
+
clipsy-1.7.0.dist-info/entry_points.txt,sha256=ISIoWU3Zj-4NEuj2pJW96LxpsvjRJJH73otv9gA9YSs,48
|
|
14
|
+
clipsy-1.7.0.dist-info/top_level.txt,sha256=trxprVJk4ZMudCshc7PD0N9iFgQO4Tq4sW5L5wLduns,7
|
|
15
|
+
clipsy-1.7.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|