matryer / xbar
- воскресенье, 21 марта 2021 г. в 00:26:02
Put the output from any script or program into your macOS Menu Bar (the BitBar reboot)
xbar (the BitBar reboot) lets you put the output from any script/program in your macOS menu bar.
Digging deeper:
And finally...
From an xbar menu, choose Preferences > Plugins... to use the xbar app to discover and manage plugins.
You can browse all the plugins online, or write your own.
The plugin directory is folder on your Mac where the plugins live, located at ~/Library/Application Support/xbar/plugins
.
If you'd like to contribute a plugin, head over to https://github.com/matryer/xbar-plugins to get started.
Please do not send pull requests to this repo. Open an issue and start a conversation first. PRs will likely not be accepted.
To write a plugin, you need to be able to produce some kind of executable (usually a script) that prints out lines of text.
The text is converted into menus by xbar.
If you want to add your plugin to the app, please send us a pull request to https://github.com/matryer/xbar-plugins.
The refresh time is in the filename of the plugin, following this format:
{name}.{time}.{ext}
name
- The name of the filetime
- The refresh rate (see below)ext
- The file extensionFor example:
date.1m.sh
would refresh every minute.Most plugins will come with a default, but you can change it to anything you like using the app:
Ensure the plugin is executable by running chmod +x plugin.sh
.
To write a plugin, just write some form of executable script that outputs to the standard output.
---
, the lines below it will appear in the dropdown for that plugin, but won't appear inthe menu bar itself.--
will appear in submenus.----
etc. for nested submenus. Two dashes per level of nesting.|
to separate the title from other parametersUse the pipe |
character to specify extra parameters onto the menu item.
For example:
Open website | href=https://xbarapp.com | color=red | key=CmdOrCtrl+o
Open home folder | shell=open | param1="~/"
App version: v1.0 | disabled=true | size=10
The supported parameters are:
key=shift+k
to add a key shortcut+
to create combinationsCmdOrCtrl
, OptionOrAlt
, shift
, ctrl
, super
, tab
, plus
, return
, escape
, f12
, up
, down
, space
href=..
to make the item clickablecolor=..
to change the text color. eg. color=red
or color=#ff0000
font=..
to change the text font. eg. font=UbuntuMono-Bold
size=..
to change the text size. eg. size=12
shell=..
to make the item run a given script terminal with your script e.g. shell=/Users/user/xbar_Plugins/scripts/nginx.restart.sh
if there are spaces in the file path you will need quotes e.g. shell="/Users/user/xbar Plugins/scripts/nginx.restart.sh"
(bash
is also supported but is deprecated)param1=
to specify arguments to the script. Additional params like this param2=foo param3=bar
shell="/Users/user/xbar_Plugins/scripts/nginx.restart.sh" param1=--verbose
assuming that nginx.restart.sh is executable or shell=/usr/bin/ruby param1=/Users/user/rubyscript.rb param2=arg1 param3=arg2
if script is not executableterminal=..
start bash script without opening Terminal. true
or false
refresh=..
to make the item refresh the plugin it belongs to. If the item runs a script, refresh is performed after the script finishes. eg. refresh=true
dropdown=..
May be set to true
or false
. If false
, the line will only appear and cycle in the status bar but not in the dropdownlength=..
to truncate the line to the specified number of characters. A …
will be added to any truncated strings, as well as a tooltip displaying the full string. eg. length=10
trim=..
whether to trim leading/trailing whitespace from the title. true
or false
(defaults to true
)alternate=true
to mark a line as an alternate to the previous one for when the Option key is pressed in the dropdowntemplateImage=..
set an image for this item. The image data must be passed as base64 encoded string and should consist of only black and clear pixels. The alpha channel in the image can be used to adjust the opacity of black content, however. This is the recommended way to set an image for the statusbar. Use a 144 DPI resolution to support Retina displays. The imageformat can be any of the formats supported by Mac OS Ximage=..
set an image for this item. The image data must be passed as base64 encoded string. Use a 144 DPI resolution to support Retina displays. The imageformat can be any of the formats supported by Mac OS Xemojize=false
will disable parsing of github style :mushroom:
into ansi=false
turns off parsing of ANSI codes.You must add the following metadata to your source code (usually in comments somewhere):
# Metadata allows your plugin to show up in the app, and website.
#
# <xbar.title>Title goes here</xbar.title>
# <xbar.version>v1.0</xbar.version>
# <xbar.author>Your Name, Another author name</xbar.author>
# <xbar.author.github>your-github-username,another-github-username</xbar.author.github>
# <xbar.desc>Short description of what your plugin does.</xbar.desc>
# <xbar.image>http://www.hosted-somewhere/pluginimage</xbar.image>
# <xbar.dependencies>python,ruby,node</xbar.dependencies>
# <xbar.abouturl>http://url-to-about.com/</xbar.abouturl>
# Variables become preferences in the app:
#
# <xbar.var>string(VAR_NAME="Mat Ryer"): Your name.</xbar.var>
# <xbar.var>number(VAR_COUNTER=1): A counter.</xbar.var>
# <xbar.var>boolean(VAR_VERBOSE=true): Whether to be verbose or not.</xbar.var>
# <xbar.var>list(VAR_STYLE="normal"): Which style to use. [small, normal, big]</xbar.var>
xbar.title
- The title of the pluginxbar.version
- The version of the plugin (start with v1.0
)xbar.author
- Comma separated list of authors (primary author first)xbar.author.github
- Comma separated list of github usernames (without @
)xbar.desc
- A short description of what your plugin doesxbar.image
- A hosted image showing a preview of your plugin (ideally open)xbar.dependencies
- Comma separated list of dependenciesxbar.abouturl
- Absolute URL to about informationxbar.var
- A user-input parameter which will be available as an environment variable with the same name (learn more about Variables in xbar)For a real example, see the Cycle text and detail plugin source code.
PATH
by including something like export PATH='/usr/local/bin:/usr/bin:$PATH'
in your plugin script.LANG
variable with: export LANG="es_ES.UTF-8"
(for Spanish) to show the text in correct format.bash=$0
#!/bin/bash
date
#!/bin/bash
# the current date and time
date
# the current username
echo $USER
# the current user id
id -u
#!/bin/bash
echo "One"
echo "Two"
echo "Three"
echo "---"
echo "Four"
echo "Five"
echo "Six"
#!/bin/bash
curl -m 1 http://example.com -I >/dev/null 2>&1
[ $? -gt 0 ] && echo "FAIL | color=red" || echo "OK | color=green"
echo "---"
echo "Show Graphs | color=#123def href=http://example.com/graph?foo=bar"
echo "Show KPI Report | color=purple href=http://example.com/report"
#!/bin/zsh
FONT=( 'size=14' 'font=UbuntuMono' )
if ((0)); then echo "DO | $FONT color=orange"
else echo "DO | $FONT color=cadetblue"
echo "---"
...
Specifying variables in the metadata will cause end-users to be prompted for values when they install the plugin.
From there, the values will be available as environment variables.
#!/bin/zsh
# ... other metadata ...
#
# <xbar.var>string(VAR_API_KEY=""): API key to get access to remote data.</xbar.var>
# VAR_API_KEY will be available as an environment variable
load_data -apikey=$VAR_API_KEY
When the system appearance changes, xbar will update the following environment variable:
XBARDarkMode=true|false
XBARDarkMode
in your plugins to render different things in light/dark modesAnything that can write to standard out is supported, but here is a list that have been explicitly tested, along with some helpful tips.
puts "your string here"
print "your string here"
print("your string here")
#!/usr/bin/env PYTHONIOENCODING=UTF-8 /path/to/the/python3
node
)
#!/usr/bin/env /path/to/the/node/executable
console.log("your string here")
process.stdout.write
doesn't output desired text.bitbar
module to simplify plugin creation.coffee
)
#!/usr/bin/env /path/to/the/coffee/executable
coffee
shebang also had to be modified.
#!/usr/bin/env /path/to/the/node/executable
console.log "your string here"
process.stdout.write
doesn't output desired text.print("your string here")
file.1s.cswift
)print("your string here")
xcrun -sdk macosx swiftc -o file.1s.cswift file.1s.swift
//usr/bin/env go run $0 $@; exit
go
must be in your PATH
Println("your string here")
file.1s.cgo
)Println("your string here")
go build file.1s.go
lisp
/clisp
must be in your PATH
(format t "your string here")
print "your string here"
-l
to shebang to automatic add newline to print function: #!/usr/bin/perl -l
echo 'your string here'
#!/usr/bin/php
It is possible to control xbar using special xbar://
URLs:
xbar://app.xbarapp.com/openPlugin?path=path/to/plugin
- openPlugin
opens a plugin in the appxbar://app.xbarapp.com/refreshPlugin?path=path/to/plugin
- refreshPlugin
refreshes a specific pluginVariables are stored in JSON files alongside your plugin. The key is the name of the Variable and the name of the environment variable. The values are the user's preferences.
You can programmatically modify the JSON files to adjust the values. Use the refresh control API above to refresh plugins after changing variables.
For example, the variables file for the tail.5s.sh
plugin looks like this:
{
"VAR_FILE": "./001-tail.5s.sh",
"VAR_LINES": 15
}