Skip to content
#

bitbar

Here are 146 public repositories matching this topic...

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.