Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 710
gc5 Avatar asked Feb 13 '14 09:02

gc5


People also ask

What font does sublime 3 use?

Monokai is the default font on Sublime Text and was everywhere back in 2011, when it seemed like the whole world moved to Sublime.

How do I change the font size in Sublime Text?

Instead, you specify custom preferences in the user settings file. User settings override default settings. For example, the default editor font size is 10pt. If you want 14pt text, copy the font-size attribute into the user prefernces file and change 10 to 14 .


2 Answers

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"
},
like image 189
Sergey Telshevsky Avatar answered Sep 22 '22 16:09

Sergey Telshevsky


If you can't find any .sublime-theme, mentioned in accepted answer:

(To make it explicitly clear:)

  • Override any current theme by creating a Default.sublime-theme file under \Data\Packages\User\:

    [Sublime Text 3 Install dir] \Data\Packages\User\Default.sublime-theme
    
  • In that file, include something like the mentioned settings, but

    must surround with square brackets '[', ']':

  [
      // Status bar label
      {
          "class": "label_control",
          "parents": [{"class": "status_bar"}],
          "color": [130, 130, 130],
          "font.size" : 22
      }
  ]
like image 25
TT-- Avatar answered Sep 18 '22 16:09

TT--