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 971
  • Linux 727
Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 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 0 0 0 0 0 0
Mac 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 0 0 0 0 0 0 0 0 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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 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