Ridiculously Uncomplicated macOS Python Statusbar apps.
Questions tagged [rumps]
4 questions
1
vote
0 answers
How to change Python menu bar app logo black and white based on Mac menu bar light or dark?
I want to make a Python menu bar application using the rumps package, but I want to make my menu bar logo change from black and white based on the Mac menu bar color, is there any way to accomplish this using rumps? Or if there isn't a way is it…

Charlie Zhang
- 65
- 8
0
votes
0 answers
Run a function inside an icon with rumps
Problem:
Very new to programming, but I am trying to build off a simple rumps example and thought I could just call a function from another file inside of a decorator that associates the function with the "Run Program" menu item but it seems like…

Mitch Halls
- 11
- 1
0
votes
1 answer
How do I run processes in the background of a Python Rumps application?
I have a Python Rumps application that monitors a folder for new files using the rumps.Timer(...) feature. When it sees new files, it transfers them offsite (to AWS s3) and runs a GET request. sometimes that transfer, and get request can take over 1…

Schmidty
- 11
- 2
0
votes
2 answers
rumps.notification not working - silently fails to show notification
I have a simple python3.9 rumps app, roughly following the documented example https://rumps.readthedocs.io/en/latest/examples.html.
main.py:
import rumps
class SiMenuBarApp(rumps.App):
def __init__(self):
super(SiMenuBarApp,…

srowland
- 1,625
- 1
- 12
- 19