Simon Brunning
Simon Brunning
Ah, yes, I'm on 1.19.3.
Putting your email address into the clipboard is pretty easy - see https://stackoverflow.com/questions/1825692/can-python-send-text-to-the-mac-clipboard for some ways to do that - but Rumps isn't controlling the target application, so your users...
Re right vs. left click, it's possible already if your callback looks like this: ```python def on_click(self, sender): event = AppKit.NSApplication.sharedApplication().currentEvent() if event.type() == AppKit.NSEventTypeLeftMouseUp: print(f'Left click on {sender.title}') elif...
This utility function works for me, for both right vs. left clicks vs. keyword shortcuts, and for checking for shift/ctrl/option/command: ```python import AppKit from dataclasses import dataclass from enum import...
As far as I can tell, apps which show 2 lines of text in the Mac menu bar are actually creating images and showing those. Perhaps you can dynamically create...
Related to https://github.com/lmcinnes/pynndescent/issues/163?
Possibly due to https://github.com/python/cpython/issues/91070?
There are certainly those who argue the opposite, that [trunk based development](https://trunkbaseddevelopment.com/) is the better way to go.
And you can override the name of the virtual environment to `.venv` if you like: ``` export VIRTUAL_ENV=."venv" layout python ```