Skip to content

Instantly share code, notes, and snippets.

@appel
Forked from sketchbuch/ubuntu-terminal-padding.txt
Last active February 24, 2025 14:35
Show Gist options
  • Save appel/12b45b7434817eb2c3f4e38bbe750564 to your computer and use it in GitHub Desktop.
Save appel/12b45b7434817eb2c3f4e38bbe750564 to your computer and use it in GitHub Desktop.
Opiniated tweaks for GTK via ~/.config/gtk-4.0/gtk.css
/* Add padding to Gnome Terminal */
VteTerminal,
TerminalScreen,
vte-terminal {
padding: 2rem;
-VteTerminal-inner-border: 2rem;
}
/* Square corners for windows */
window, decoration, decoration-overlay, headerbar, .titlebar {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment