Search code examples
fontsubuntu-12.04statusbarsublimetext3

Is there a way to change the font in the status bar Sublime Text 3?


I am searching for a method to change the font of status bar of Sublime Text 3.. Is there a way to do it? I tried changing system fonts (I am on Ubuntu 12.04), searching through Google gave me no hints..

Thanks


Solution

  • It's only possible to do in the .sublime-theme file:

    // Status bar label
    {
        "class": "label_control",
        "parents": [{"class": "status_bar"}],
        "color": [140,140,140],
        "font.size": 11,
        "font.face": "Droid Sans Mono"
    },