clipsy 1.6.0__tar.gz → 1.7.1__tar.gz
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-1.6.0/src/clipsy.egg-info → clipsy-1.7.1}/PKG-INFO +8 -8
- {clipsy-1.6.0 → clipsy-1.7.1}/README.md +7 -7
- {clipsy-1.6.0 → clipsy-1.7.1}/pyproject.toml +1 -1
- {clipsy-1.6.0 → clipsy-1.7.1}/src/clipsy/__init__.py +1 -1
- {clipsy-1.6.0 → clipsy-1.7.1}/src/clipsy/__main__.py +11 -8
- {clipsy-1.6.0 → clipsy-1.7.1/src/clipsy.egg-info}/PKG-INFO +8 -8
- {clipsy-1.6.0 → clipsy-1.7.1}/LICENSE +0 -0
- {clipsy-1.6.0 → clipsy-1.7.1}/setup.cfg +0 -0
- {clipsy-1.6.0 → clipsy-1.7.1}/src/clipsy/app.py +0 -0
- {clipsy-1.6.0 → clipsy-1.7.1}/src/clipsy/config.py +0 -0
- {clipsy-1.6.0 → clipsy-1.7.1}/src/clipsy/models.py +0 -0
- {clipsy-1.6.0 → clipsy-1.7.1}/src/clipsy/monitor.py +0 -0
- {clipsy-1.6.0 → clipsy-1.7.1}/src/clipsy/redact.py +0 -0
- {clipsy-1.6.0 → clipsy-1.7.1}/src/clipsy/storage.py +0 -0
- {clipsy-1.6.0 → clipsy-1.7.1}/src/clipsy/utils.py +0 -0
- {clipsy-1.6.0 → clipsy-1.7.1}/src/clipsy.egg-info/SOURCES.txt +0 -0
- {clipsy-1.6.0 → clipsy-1.7.1}/src/clipsy.egg-info/dependency_links.txt +0 -0
- {clipsy-1.6.0 → clipsy-1.7.1}/src/clipsy.egg-info/entry_points.txt +0 -0
- {clipsy-1.6.0 → clipsy-1.7.1}/src/clipsy.egg-info/requires.txt +0 -0
- {clipsy-1.6.0 → clipsy-1.7.1}/src/clipsy.egg-info/top_level.txt +0 -0
- {clipsy-1.6.0 → clipsy-1.7.1}/tests/test_app.py +0 -0
- {clipsy-1.6.0 → clipsy-1.7.1}/tests/test_monitor.py +0 -0
- {clipsy-1.6.0 → clipsy-1.7.1}/tests/test_redact.py +0 -0
- {clipsy-1.6.0 → clipsy-1.7.1}/tests/test_storage.py +0 -0
- {clipsy-1.6.0 → clipsy-1.7.1}/tests/test_utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: clipsy
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.7.1
|
|
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
|
|
@@ -33,14 +33,14 @@ A lightweight clipboard history manager for macOS. Runs as a menu bar icon — n
|
|
|
33
33
|
```bash
|
|
34
34
|
brew install pipx
|
|
35
35
|
pipx install clipsy
|
|
36
|
-
clipsy
|
|
36
|
+
clipsy
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
### Via pip
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
42
|
pip install clipsy
|
|
43
|
-
clipsy
|
|
43
|
+
clipsy
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
### From source
|
|
@@ -50,12 +50,12 @@ git clone https://github.com/brencon/clipsy.git
|
|
|
50
50
|
cd clipsy
|
|
51
51
|
python3 -m venv .venv
|
|
52
52
|
.venv/bin/pip install -e .
|
|
53
|
-
.venv/bin/clipsy
|
|
53
|
+
.venv/bin/clipsy
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
## Usage
|
|
57
57
|
|
|
58
|
-
After running `clipsy
|
|
58
|
+
After running `clipsy`, the app installs as a background service and starts automatically on login. A scissors icon (✂️) appears in your menu bar.
|
|
59
59
|
|
|
60
60
|
Then just use your Mac normally. Every time you copy something, it shows up in the Clipsy menu:
|
|
61
61
|
|
|
@@ -81,10 +81,10 @@ Then just use your Mac normally. Every time you copy something, it shows up in t
|
|
|
81
81
|
## Commands
|
|
82
82
|
|
|
83
83
|
```bash
|
|
84
|
-
clipsy
|
|
85
|
-
clipsy uninstall # Remove from login items
|
|
84
|
+
clipsy # Install and start as background service (default)
|
|
86
85
|
clipsy status # Check if running
|
|
87
|
-
clipsy
|
|
86
|
+
clipsy uninstall # Remove from login items
|
|
87
|
+
clipsy run # Run in foreground (for debugging)
|
|
88
88
|
```
|
|
89
89
|
|
|
90
90
|
## Data Storage
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
__version__ = "1.
|
|
1
|
+
__version__ = "1.7.1"
|
|
2
2
|
__app_name__ = "Clipsy"
|
|
@@ -37,6 +37,7 @@ def create_plist(clipsy_path: str) -> str:
|
|
|
37
37
|
<key>ProgramArguments</key>
|
|
38
38
|
<array>
|
|
39
39
|
<string>{clipsy_path}</string>
|
|
40
|
+
<string>run</string>
|
|
40
41
|
</array>
|
|
41
42
|
<key>RunAtLoad</key>
|
|
42
43
|
<true/>
|
|
@@ -154,34 +155,36 @@ def main():
|
|
|
154
155
|
formatter_class=argparse.RawDescriptionHelpFormatter,
|
|
155
156
|
epilog="""
|
|
156
157
|
Commands:
|
|
157
|
-
(none)
|
|
158
|
-
install Install as LaunchAgent (runs on login)
|
|
158
|
+
(none) Install and run as background service (default)
|
|
159
159
|
uninstall Remove LaunchAgent
|
|
160
160
|
status Check if Clipsy is running
|
|
161
|
+
run Run in foreground (for debugging)
|
|
161
162
|
|
|
162
163
|
Examples:
|
|
163
|
-
clipsy
|
|
164
|
+
clipsy # Install and start as background service
|
|
164
165
|
clipsy status # Check if running
|
|
165
166
|
clipsy uninstall # Stop and remove from login items
|
|
167
|
+
clipsy run # Run in foreground (debugging)
|
|
166
168
|
""",
|
|
167
169
|
)
|
|
168
170
|
parser.add_argument(
|
|
169
171
|
"command",
|
|
170
172
|
nargs="?",
|
|
171
|
-
choices=["
|
|
173
|
+
choices=["uninstall", "status", "run"],
|
|
172
174
|
help="Command to run",
|
|
173
175
|
)
|
|
174
176
|
|
|
175
177
|
args = parser.parse_args()
|
|
176
178
|
|
|
177
|
-
if args.command == "
|
|
178
|
-
sys.exit(install_launchagent())
|
|
179
|
-
elif args.command == "uninstall":
|
|
179
|
+
if args.command == "uninstall":
|
|
180
180
|
sys.exit(uninstall_launchagent())
|
|
181
181
|
elif args.command == "status":
|
|
182
182
|
sys.exit(check_status())
|
|
183
|
-
|
|
183
|
+
elif args.command == "run":
|
|
184
184
|
run_app()
|
|
185
|
+
else:
|
|
186
|
+
# Default: install and start as background service
|
|
187
|
+
sys.exit(install_launchagent())
|
|
185
188
|
|
|
186
189
|
|
|
187
190
|
if __name__ == "__main__":
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: clipsy
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.7.1
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|