#-----------------------------------------------------------------------------
# PyPanel Configuration
#-----------------------------------------------------------------------------
BG_COLOR = "0x000000" # Panel background color (hex triplet)
TASK_COLOR = "0xcccccc" # Normal task name color SHADED_COLOR = "0x4d4d4d" # Shaded task name color MINIMIZED_COLOR = "0x000000" # Minimized task name color
WS_COLOR = "0xceac00" # Workspace name color LINE_COLOR = "0x4d4d4d" # Vertical task seperator line color APPICONS = 0 # Show application icons (1 yes / 0 no)
SHOWLINES = 1 # Show task seperator lines (1 yes / 0 no)
TRANSPARENCY = 1 # Use transparent background (1 yes / 0 no)
SHADE = 70 # Transparency shading (0 [black] - 100 [clear])
P_LOCATION = 1 # Top/Bottom
P_START = 0 # Starting X coordinate of the panel (pixel)
P_SPACER = 6 # Spacing between panel objects (pixels)
P_HEIGHT = 12 # Panel height (pixels)
#P_WIDTH = 600 # Panel width (pixels) Default is screen width
I_HEIGHT = 16 # Icon height (pixels)
I_WIDTH = 16 # Icon Width (pixels)
CLOCK_COLOR = "0xceac00" # Clock text color
CLOCK_FORMAT = "%d/%M/%Y %H:%M" # 'man strftime' for formatting options
LEFT_OBJ = "workspace" # Left side object (workspace/clock/"" )
RIGHT_OBJ = "clock" # Setting to "" will open the space for tasks
HIDE_LIST = ["gkrellm"] # Apps in this list won't be displayed on the
# panel. Add apps by their WM_CLASS name
# found using 'xprop'.
# ex. ["xmms", "xine", "gDesklets"]
# Workspace/task font
#FONT = "-schumacher-clean-medium-r-normal-*-12-*-*-*-*-*-*-*"
FONT = "bitstream vera sans-8"
|