Skip to content
#

bitbar

Here are 159 public repositories matching this topic...

StephenGregory
StephenGregory commented Feb 19, 2019

Bitbar 1.9.2
macOS 10.14.3

Given this output, it is impossible to view the dropdown items. Clicking or context-clicking on "foo menu" will always open the URL and never reveal the dropdown.

echo "foo menu | href=http://somewhere.com/"
echo "---"
echo "You'll never see this"
gingerbeardman
gingerbeardman commented Jun 19, 2018
// Create BitBar formatter
$bb = new BitBar();

// Create the first line
$line = $bb->newLine();

// Set the text and formatting
$mainMenu = $line
    ->setText("Servers")
    ->setColour("yellow");

$mainMenu = $mainMenu->addSubMenu()
    ->newLine()
    ->setText("Server 1")
    ->setUrl('http://server1.com');

$mainMenu = $mainMenu->addSubMenu()
    ->newLine()
    ->setT

Improve this page

Add a description, image, and links to the bitbar topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the bitbar topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.