ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Shell​Status

by shagabutdinov ALL

Run shell command and output its result to status bar.

Details

Installs

  • Total 3K
  • Win 1K
  • Mac 975
  • Linux 733
Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Sublime ShellStatus plugin

Run shell command and output its result to status bar.

Demo

Notebook screenshot Notebook screenshot without battery

Installation

This plugin is part of sublime-enhanced plugin set. You can install sublime-enhanced and this plugin will be installed automatically.

If you would like to install this package separately check “Installing packages separately” section of sublime-enhanced package.

There is “sublime-status” file in this package. Put it in your “bin” folder or specify full path to it in package settings to start using the plugin with default settings.

Features

Run shell command and add its output to status bar to sublime. By default (with corrent installation) adds following information:

  • branch (git or mercurial if any);

  • time;

  • battery charge if it lower that 50 percent;

  • path of currently edited file (I'm keeping everything in “server” directory so everything before it (incling server/[folder]/) will be removed from path; probably you'll want to change this behavior).

Time and battery charge are displayed because I work on i3 with disabled status bar: that allows to focus hardly on current task. It also allows sublime to employ as much space as possible when I work on laptop.

There is an issue with displaying some icons (when battery icon is displayed all text go to bottom out of viewable region and underscores becomes invisible). If you know how to fix this so please please tell me it ASAP; I got really annoyed of this bug.

Battery charge will be displayed usign “acpi” command. So you'll need to install it in order to see battery charge. If you are not using Linux you need to fix sublime-status command (written with ruby) or write your own to display battery charge.

Usage

You can use any language to create sublime-status command. First argument to command will currently opened file name. Status will be updated on focus. Command will be executed in directory where file is located.

Note that you should use “\t\t” (two tabs) as separator to format status bar information nicely.

Example comand (php):

#!/usr/bin/env php
  <?php

  // don't forget to chmod u+x this file
  echo "Currently editing: " . $argv[1] . "\t\t";
  echo "Time is: " . date("H:i:s") . "\t\t";

Settings

Shell command could be specified globally in “command” in “ShellStatus.sublime-settings” or per-project using “status_command” setting.

Examples:

# globally, ShellStatus.sublime-settings in your User-folder
  {
    "command": "my-status-command"
  }

  # per project, "ctrl+u, p" hotkey to open project settings.
  {
    ...,
    "settings": {
      "status_command": "my-status-command",
      ...
    }
  }

Dependencies