1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
# Optional configuration file for dfc
# Colors used for the default text output
# Possible values are:
# - black
# - red
# - green
# - yellow
# - blue
# - magenta
# - cyan
# - white
# Note: it only concerns foreground colors
# Display bold font or extra light colors
# Note: This might work differently on some terminals
# Use either "yes" or "no"
bold_font = no
# Header color
color_header = blue
# Color when usage is low
color_low = green
# Color when usage is medium
color_medium = yellow
# Color when usage is high
color_high = red
# Values in percent when color changes in the graph
# starting value from which usage is considered medium
graph_medium = 50
# starting value from which usage is considered high
graph_high = 75
# Symbol used for the graph (can be any ASCII symbol)
graph_symbol = =
# You can also choose the colors for the HTML export
# Color values can take any of html recognized value
# For instance, this is white: #FFFFFF
# This is red: #FF0000
# Etc.
# NOTE: you MUST ommit the # sign when setting it here
# (white becomes FFFFFF and so on)
# Header background color (also used in footer)
html_color_header_bg = 970000
# Header font color (also used in footer)
html_color_header_fg = FFFFFF
# Cell background color
html_color_cell_bg = E9E9E9
# Cell font color
html_color_cell_fg = 000000
# Background color on mouse hover
html_color_hover_bg = FFFFFF
# Font color on mouse hover
html_color_hover_fg = 000000
# Color when usage is low
html_color_low = 348017
# Color when usage is medium
html_color_medium = FDD017
# Color when usage is high
html_color_high = F62217
# separator for CSV export
csv_separator = ,
# vim: set noet syn=conf
|