Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kdungs/uStatus
Minimal status display for OS X tray using psutils and rumps in Python.
https://github.com/kdungs/uStatus
hack script
Last synced: 26 days ago
JSON representation
Minimal status display for OS X tray using psutils and rumps in Python.
- Host: GitHub
- URL: https://github.com/kdungs/uStatus
- Owner: kdungs
- License: mit
- Created: 2015-03-11T13:51:08.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-12T08:19:02.000Z (almost 10 years ago)
- Last Synced: 2024-08-04T09:05:26.933Z (4 months ago)
- Topics: hack, script
- Language: Python
- Homepage:
- Size: 145 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Mac-Menubar-Megalist - µStatus
README
# µStatus
Minimal status display for OS X tray using [psutil](https://github.com/giampaolo/psutil) and [rumps](https://github.com/jaredks/rumps) in Python.![Here's what it looks like.](https://i.imgur.com/vknJ13g.png)
_Work in progress, please don't judge._
## Installation
To install dependencies do
```bash
$ sudo pip install psutil rumps py2app
```
If you don't want to create a standalone version later on, you will not need `py2app`.The program can then be run via
```bash
$ python ustatus.py
```## Configuration
You can configure the app to your liking by modifying the call to `configure_app` at the bottom of `ustatus.py`. Since `StatusCollection`s are also `Status`es, you can even nest them, how cool is that? The default set up should already cover most use cases.## Standalone
Using `py2app` you can easily create a standalone version of the program that runs like a normal OS X binary by calling
```bash
$ python setup.py py2app
```