From c428e4ad4476e60941a4c0b2e77b141ceb4e6548 Mon Sep 17 00:00:00 2001 From: Sören Tempel Date: Mon, 31 May 2021 19:18:07 +0200 Subject: README.md: Fix font configuration in example CSS configuration file --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 351da99..615320f 100644 --- a/README.md +++ b/README.md @@ -81,13 +81,17 @@ For example, to change the color scheme and employed font. Add the following to your `gtk.css` configuration file located at `$XDG_CONFIG_HOME/gtk-3.0/gtk.css`: - #saneterm textview text { - font-size: 15px; - font-family: "Terminus"; + #saneterm textview { + font-family: Terminus; + font-size: 16px; + } + #saneterm textview text { background-color: #181818; color: #d8d8d8; - caret-color: #d8d8d8; /* cursor color */ + + /* change cursor color too */ + caret-color: #d8d8d8; } Keybindings can be configured using the same mechanism, see `keys.py` -- cgit 1.4.1