A python utility for creating xbar, argos and ardos menus.
Project description
pyxmenu
pyxmenu
is a Python library for helping you create python plugins for xbar,
argos and ardos with ease!
The library wraps all the menu creation logic with classes and objects to let you create a plugin with a few lines of code and without dealing with string formatting complications.
Installation
Use the package manager pip to install pyxmenu.
pip install pyxmenu
Usage
from pyxmenu import Plugin, Item
# Create a new xbar plugin
plugin = Plugin(
# Set the title of the plugin
title=Item("My Plugin", font="Menlo", size=20),
# Add items to the plugin
items=[
Item("Hello", color="blue", href="https://github.com/labrador-team/pyxmenu")
]
).add_items(
# Add multiple items to the plugin
[
Item("World", color="red", key="shift+k"),
Item("Foo", color="green", alternative=Item("Bar", color="yellow")),
# Add item with submenu
Item("Baz", color="purple", children=[
Item("Qux"),
Item("Quux"),
]),
]
)
print(plugin)
Contributing
Please open an issue first to discuss what you would like to change. We welcome any and all criticism, feedback, and suggestions even if we may not agree.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyxmenu-0.0.1.tar.gz
(11.6 kB
view details)
Built Distribution
pyxmenu-0.0.1-py3-none-any.whl
(19.2 kB
view details)