about summary refs log tree commit diff
path: root/README.md
diff options
context:
space:
mode:
authorSören Tempel <soeren+git@soeren-tempel.net>2021-05-20 09:57:15 +0200
committerSören Tempel <soeren+git@soeren-tempel.net>2021-05-20 09:57:15 +0200
commitc0069dec0cc8792e61192feff350b5d32fa50e03 (patch)
tree24097c0f03e32796136f92f36e5f1056a93b58a0 /README.md
parentedbdbff3e57742c290a95eea4f77bbd8eeba5ae7 (diff)
README.md: Add configuration section
Diffstat (limited to 'README.md')
-rw-r--r--README.md20
1 files changed, 18 insertions, 2 deletions
diff --git a/README.md b/README.md
index 970a4bf..09992b2 100644
--- a/README.md
+++ b/README.md
@@ -62,9 +62,24 @@ If these are installed run the following command to install `saneterm`:
 
 For development setups just run `python3 saneterm/__main__.py`.
 
-## Usage
+## Configuration
+
+The terminal appearance can be configured using [Gtk's CSS][gtk css]
+feature. The saneterm window widget can be selected using the CSS
+selector `#saneterm`.
+
+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 * {
+		font-size: 15px;
+		font-family: "Terminus";
+
+		background-color: #181818;
+		color: #d8d8d8;
+	}
 
-To-Do.
 
 ## FAQ
 
@@ -131,3 +146,4 @@ with this program. If not, see <http://www.gnu.org/licenses/>.
 [rio man page]: https://9p.io/magic/man2html/1/rio
 [9term man page]: https://9fans.github.io/plan9port/man/man1/9term.html
 [plan9port web]: https://9fans.github.io/plan9port/
+[gtk css]: https://developer.gnome.org/gtk3/stable/chap-css-overview.html