Skip to content

Instantly share code, notes, and snippets.

@viktorsmari
Created September 6, 2017 09:26
Show Gist options
  • Save viktorsmari/a8483aa0a5633c7e8a6788609f61c9e5 to your computer and use it in GitHub Desktop.
Save viktorsmari/a8483aa0a5633c7e8a6788609f61c9e5 to your computer and use it in GitHub Desktop.
Smaller tabs in Gnome terminal. Makes the tabs take less space vertically.
# Put this file in ~/.config/gtk.css
TerminalWindow .notebook {
padding: 0;
}
TerminalWindow .notebook tab:active {
border: 1px solid #999;
}
TerminalWindow .notebook tab {
}
TerminalWindow .notebook .button {
padding: 2 2 2 10;
border: 0;
}
TerminalWindow .notebook .button:active {
padding: 2 2 2 10;
background-image: none;
border: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment