custom-window-title

Set your own template for Atom's title bar.

pixilz

1,404

4

1.0.4

MIT

GitHub

This package consumes the following services:

custom-window-title package

This was forked from the custom-title package as the owner has stopped updating for quite some time while there are stale bugs.

Set your own template for Atom's title bar. Uses underscore.js templates.

The following variables are available:

In addition the following variables from os is available:

Plus the atom global, as usual.

Project and git variables always refer to the first path in your project.

Examples

These examples can all be tested by going to the package settings and setting the template field.

Default

The default template matches the regular Atom titlebar:

<%= fileName %><% if (projectPath) { %> - <%= projectPath %><% } %>

With Atom version

<%= fileName %><% if (projectPath) { %> - <%= projectPath %><% } %> - Atom <%= atom.getVersion() %>

With the current git branch

<%= fileName %><% if (projectPath) { %> - <%= projectPath %><% if (gitHead) { %> [<%= gitHead %>]<% } %><% } %>

With hostname and username

<%= username %> @ <%= hostname %> : <%= fileName %><% if (projectPath) { %> - <%= projectPath %><% if (gitHead) { %> [<%= gitHead %>]<% } %><% } %>

Project name display

<% if (projectName) { %> <%= projectName %> <% } %><% if (gitHead) { %> [ ⛕<%= gitHead %> ] <% } %> <%= fileName %><% if (filePath) { %> - <%= filePath %> <% } %>