Metadata-Version: 2.3
Name: bitbar_helper
Version: 0.3.1
Summary: Helpers for writing bitbar/swiftbar scripts
Author: Paul Traylor
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3.15
Classifier: Programming Language :: Python :: 3.16
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# Helpers for writing bitbar/swiftbar scripts

Provides a `Bitbar` clas, with helpers to find the plugin directory and helpers for formatting output lines.

```python
from bitbar_helper import Bitbar

bb = Bitbar()
# Print my app title
bb.print('My Title')
# Print devider to indicate menu
bb.print('---')
# Add a menu to reload the plugin
bb.print('reload me', reload=True)
# Add a link to example site
bb.print('open me', html='https://example.com')
```
