Skip to content

Instantly share code, notes, and snippets.

@pyk
Last active August 29, 2015 14:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pyk/74c01e7b8da404085d6e to your computer and use it in GitHub Desktop.
Save pyk/74c01e7b8da404085d6e to your computer and use it in GitHub Desktop.
customize tab on ubuntu terminal
/*
create new file if doesn't exists
~/.config/gtk-3.0/gtk.css
*/
TerminalWindow .notebook {
border: 0;
padding: 0;
color: #4E6777;
font-size: 10px;
background-color: shade(#313131, 1);
}
TerminalWindow .notebook tab:active {
background-color: shade(#313131,1);
}
TerminalWindow .notebook tab {
border-radius: 0px;
padding: 3px;
background-color: shade(#222, 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment