
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
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.
Use the package manager pip to install pyxmenu.
pip install pyxmenu
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)
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.
FAQs
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.