# Configuration file for pydf
#
#
# colours can be: 
#  'none'
#  'black'
#  'red'
#  'green'
#  'yellow'
#  'blue'
#  'magenta'
#  'purple'
#  'cyan'
#  'white'
#  'darkgray'

# normal text colour - currently not used
normal_colour = 'green'

# colour of the header
header_colour = 'yellow'

# colour for local filesystems
local_fs_colour = 'green'

# colour for remote filesystems (such as nfs, samba, afs....)
remote_fs_colour = 'purple'

# colour for special filesystems (such as proc, pty)
special_fs_colour = 'blue'

# colour for filesystems with usage > FILL_THRESH
filled_fs_colour = 'red'

# colour for filesystems with usage > FULL_THRESH
full_fs_colour = 'magenta'

# default format for displaying sizes "-h" or "-H" or "-m" or "-k" or "--blocks"
sizeformat = "-h"

# filesystem filled up over this limit (in percents) is displayed
# with filled_fs_colour (to show it is dangerously filled up)
FILL_THRESH = 85.0

# filesystem filled up over this limit is displayed with 
# full_fs_colour (to show it is FULL)
FULL_THRESH = 99.0

# Format used to display information: (keyword, size, justify).
# keyword is one of 'fs' 'size' 'used' 'avail' 'perc' 'bar' 'on'.
# size is column width of the entry, a space is automatically added
# between columns.
# justify is either "l" for left justify, "r" for right justify or "c" for 
# center.
# You can use any order and any combination of keywords, but
# be carefull not to exceed the size of your screen

format = [	
			('fs', 18, "l"), ('size', 6, "r"), 
			('used', 6, "r"), ('avail', 6, "r"), ('perc', 5, "r"),
			('bar', 10, "l"), ('on', 20, "l")
		]

# character to display filesystem status bar
barchar = '*'
