문제

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

도움이 되었습니까?

해결책

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"
},

다른 팁

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
      }
  ]
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top