aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2016-06-05 20:55:56 -0400
committerJesse Luehrs <doy@tozt.net>2016-06-05 20:55:56 -0400
commitcc62b06b42de16a7f8decc57383cdc3abac89ee3 (patch)
treedce15a263bbca6b7fdd56c28b302df7f3835a715
parentaca4e1694eb769fa886a816ebf483e62924943d5 (diff)
downloadrunes-cc62b06b42de16a7f8decc57383cdc3abac89ee3.tar.gz
runes-cc62b06b42de16a7f8decc57383cdc3abac89ee3.zip
clean up the sample config file
-rw-r--r--runes.conf.default89
1 files changed, 51 insertions, 38 deletions
diff --git a/runes.conf.default b/runes.conf.default
index 8b608ea..3c29e34 100644
--- a/runes.conf.default
+++ b/runes.conf.default
@@ -1,58 +1,71 @@
# runes looks for a configuration file in the following places:
-# - $XDG_CONFIG_HOME/runes/runes.conf (if $XDG_CONFIG is set) or $HOME/.config/runes/runes.conf
+# - $XDG_CONFIG_HOME/runes/runes.conf (if $XDG_CONFIG_HOME is set)
+# - $HOME/.config/runes/runes.conf (if $XDG_CONFIG_HOME is not set)
# - $HOME/.runesrc
# - /etc/runesrc
-# Geometry configuration
+# All values in this file are the defaults. Any of these values can also be
+# overriden on the command line by passing them as long options - for instance,
+# `./runes --scrollback_length 0`.
+
+
+### Geometry
# cols = 80
# rows = 24
-# Font configuration
+### Fonts
-# font = monospace 10
-# bold_is_bold = true
+# font = monospace 10
+# bold_is_bold = true
# bold_is_bright = true
-# Miscellaneous configuration
+### Bells
-# audible_bell = true
+# audible_bell = true
# bell_is_urgent = true
-# scroll_lines = 3
+
+
+### Scrolling
+
+# scroll_lines = 3
# scrollback_length = 4096
-# while "command" is not set by default, it will default to $SHELL if possible and to /bin/sh
-# if $SHELL is not set.
-# command = /bin/sh
+### Timeouts
+
+# redraw_rate = 20
+# double_click_rate = 500
-# Color configuration
-# fgcolor = #d2d2d2
-# bgcolor = #000000
-# cursorcolor = #00ff00
+
+### Colors
+
+# fgcolor = #d2d2d2
+# bgcolor = #000000
+# cursorcolor = #00ff00
# mousecursorcolor = #ffffff
-# color0 = #000000
-# color1 = #cd0000
-# color2 = #00cd00
-# color3 = #cdcd00
-# color4 = #0000cd
-# color5 = #cd00cd
-# color6 = #00cdcd
-# color7 = #e4e4e4
-# color8 = #4d4d4d
-# color9 = #ff0000
-# color10 = #00ff00
-# color11 = #ffff00
-# color12 = #0000ff
-# color13 = #ff00ff
-# color14 = #00ffff
-# color15 = #ffffff
-# color16 = #000000
-# color17 = #00005f
-# color18 = #000086
-# color19 = #0000ae
-# color20 = #0000d6
-# color21 = #0000ff
-# (and so on through color255)
+# color0 = #000000
+# color1 = #cd0000
+# color2 = #00cd00
+# color3 = #cdcd00
+# color4 = #0000cd
+# color5 = #cd00cd
+# color6 = #00cdcd
+# color7 = #e4e4e4
+# color8 = #4d4d4d
+# color9 = #ff0000
+# color10 = #00ff00
+# color11 = #ffff00
+# color12 = #0000ff
+# color13 = #ff00ff
+# color14 = #00ffff
+# color15 = #ffffff
+# (color16-color255 are similarly supported, for 256-color applications)
+
+
+### Execution
+
+# (defaults to /bin/sh if $SHELL is not set)
+# command = $SHELL