newbieguy
newbieguy

Reputation: 697

How to increase/decrease height of Sublime status bar?

I was successful at modifying the sidebar_container and tabset_control of Material Theme except the status bar. It is a bit too big for me and I want to adjust the height of it like Piatto's (also the width/height of button if possible).

Material Theme: (modified, except status bar) enter image description here

Piatto Dark Theme: enter image description here

How do I set height/width of the status bar? (and also buttons on it, if possible)

Upvotes: 3

Views: 2005

Answers (1)

eriee
eriee

Reputation: 396

You can try add the following code to your .sublime-theme file. Modify the values in the "content_margin" to adjust the height.

{
    "class": "status_bar",
    "content_margin": [0, 0, 0, 0]
},
{
    "class": "status_button",
    "content_margin": [0, 0, 0, 0],
    "min_size": [75, 0]
}

Or add the following in the user setting:

"material_theme_small_statusbar": true

Upvotes: 4

Related Questions