Merge pull request #426 from polyzen/config-cleanup
config, capitalise letters, sort options alphabetically, comment out default options and add missing fullscreen option
This commit is contained in:
commit
7738c766f5
53
config
53
config
|
@ -1,53 +1,54 @@
|
||||||
[options]
|
[options]
|
||||||
scroll_on_output = false
|
#allow_bold = true
|
||||||
scroll_on_keystroke = true
|
#audible_bell = false
|
||||||
audible_bell = false
|
#clickable_url = true
|
||||||
mouse_autohide = false
|
#dynamic_title = true
|
||||||
allow_bold = true
|
|
||||||
dynamic_title = true
|
|
||||||
urgent_on_bell = true
|
|
||||||
clickable_url = true
|
|
||||||
font = Monospace 9
|
font = Monospace 9
|
||||||
scrollback_lines = 10000
|
#fullscreen = true
|
||||||
search_wrap = true
|
|
||||||
#icon_name = terminal
|
|
||||||
#geometry = 640x480
|
#geometry = 640x480
|
||||||
|
#icon_name = terminal
|
||||||
# "system", "on" or "off"
|
#mouse_autohide = false
|
||||||
cursor_blink = system
|
#scroll_on_output = false
|
||||||
|
#scroll_on_keystroke = true
|
||||||
# "block", "underline" or "ibeam"
|
scrollback_lines = 10000
|
||||||
cursor_shape = block
|
#search_wrap = true
|
||||||
|
#urgent_on_bell = true
|
||||||
|
|
||||||
# $BROWSER is used by default if set, with xdg-open as a fallback
|
# $BROWSER is used by default if set, with xdg-open as a fallback
|
||||||
#browser = xdg-open
|
#browser = xdg-open
|
||||||
|
|
||||||
# set size hints for the window
|
# "system", "on" or "off"
|
||||||
#size_hints = false
|
#cursor_blink = system
|
||||||
|
|
||||||
|
# "block", "underline" or "ibeam"
|
||||||
|
#cursor_shape = block
|
||||||
|
|
||||||
# Hide links that are no longer valid in url select overlay mode
|
# Hide links that are no longer valid in url select overlay mode
|
||||||
filter_unmatched_urls = true
|
#filter_unmatched_urls = true
|
||||||
|
|
||||||
# emit escape sequences for extra modified keys
|
# Emit escape sequences for extra modified keys
|
||||||
#modify_other_keys = false
|
#modify_other_keys = false
|
||||||
|
|
||||||
|
# set size hints for the window
|
||||||
|
#size_hints = false
|
||||||
|
|
||||||
[colors]
|
[colors]
|
||||||
# If both of these are unset, cursor falls back to the foreground color,
|
# If both of these are unset, cursor falls back to the foreground color,
|
||||||
# and cursor_foreground falls back to the background color.
|
# and cursor_foreground falls back to the background color.
|
||||||
#cursor = #dcdccc
|
#cursor = #dcdccc
|
||||||
#cursor_foreground = #dcdccc
|
#cursor_foreground = #dcdccc
|
||||||
|
|
||||||
foreground = #dcdccc
|
#foreground = #dcdccc
|
||||||
foreground_bold = #ffffff
|
#foreground_bold = #ffffff
|
||||||
background = #3f3f3f
|
#background = #3f3f3f
|
||||||
|
|
||||||
# 20% background transparency (requires a compositor)
|
# 20% background transparency (requires a compositor)
|
||||||
#background = rgba(63, 63, 63, 0.8)
|
#background = rgba(63, 63, 63, 0.8)
|
||||||
|
|
||||||
# if unset, will reverse foreground and background
|
# If unset, will reverse foreground and background
|
||||||
highlight = #2f2f2f
|
highlight = #2f2f2f
|
||||||
|
|
||||||
# colors from color0 to color254 can be set
|
# Colors from color0 to color254 can be set
|
||||||
color0 = #3f3f3f
|
color0 = #3f3f3f
|
||||||
color1 = #705050
|
color1 = #705050
|
||||||
color2 = #60b48a
|
color2 = #60b48a
|
||||||
|
|
Loading…
Reference in New Issue