theme
{	
	background = "bg.jpg"
	font = "DejaVuSans.ttf"

# opacity values, from 0 (transparent) to 255 (opaque)
	button_opacity          =  80
	window_opacity          = 200
	selected_window_opacity = 255

# Colors can be given in a hex quadruplet (values from 00 to ff)
# or via comma-separated decimals (0 to 255). Format is RGBA
#	mask_text_color   = [ 28b428ff ]
#	cursor_text_color = [ 145a14dd ]
#	other_text_color  = [ 404040ff ]
	default_text_color   = [ ffffffff ] 
	default_cursor_color = [ cccccccc ]
	other_text_color     = [ ffffffff ]

# wether we should clear background image during dialogs
# (default is no, unless you set it differently in qingy config file)...
	clear_background = yes

# this is the native resolution of the theme, i.e. the resolution the theme
# was designed for. If qingy detects a running resolution different than this
# one, it will (try to) scale things so that they will look the same across
# all resolutions. If this is omitted, qingy will default to 800x600 to
# maintain compatibility with older themes...
	native_resolution = 1024x576

	mouse_cursor = yes
}

window
{
	# window geometry
	x      = 0
	y      = 25
	width  = 1024
	height = 64

	# text size: chose between 'small', 'medium' and 'large'
	# default is 'large'
	text_size        = large
	
	# text alignment: 'left', 'center', 'right'. Default is 'left'
	text_orientation = center

	#colors: if not defined, theme defaults will be used
	#text_color   = 180, 40, 40, 255
	cursor_color =  90, 0, 0, 200

	# update time, 0 means do not update, which is default
	# this setting has meaning only if window type is "label"
	time = 0

	# window type, allowed values are:
	# "label", "button", "login", "password", "combo"
	type    = "label"
	content = "Welcome to <INS_CMD_HERE>"
	# The <INS_CMD_HERE> above is substituted with the output of 'command'
	command = "hostname"
}

window
{
	x                = 50
	y                = 300
	width            = 150
	height           = 42
	text_size        = medium
	text_orientation = right
	type             = "label"
	content          = "username:"
	linkto           = "login"
}

window
{
	x            = 220
	y            = 298
	width        = 700
	height       = 50
	text_size    = medium
	text_color   = 200, 200, 40, 255
	cursor_color =  90,  90, 20, 221
	type         = "login"
}

window
{
	x                = 50
	y                = 350
	width            = 150
	height           = 50
	text_size        = medium
	text_orientation = right
	type             = "label"
	content          = "password:"
	linkto           = "password"
}

window
{
	x            = 220
	y            = 348
	width        = 700
	height       = 50
	text_size    = medium
	text_color   = 180, 40, 40, 255
	cursor_color =  90, 20, 20, 221
	type         = "password"
}

window
{
	x                = 50
	y                = 400
	width            = 150
	height           = 50
	text_size        = medium
	text_orientation = right
	type             = "label"
	content          = "session:"
	linkto           = "session"
}

window
{
	x          = 220
	y          = 400
	width      = 716
	height     = 50
	text_size  = medium
	type       = "combo"

	# So far, the only combobox allowed is "sessions"
	command = "sessions"
}

window
{
	# window geometry
	x    = 966
	y    = 350
	type = "button"

	# Allowed commands:
	# "halt", "reboot", "sleep", "screensaver"
	command = "halt"

	# Image prefix: will be converted to
	# "<name>_normal.png" and "<name>_mouseover.png"
	content = "power"
}

window
{
	x       = 966
	y       = 400
	type    = "button"
	command = "reboot"
	content = "reset"
}

window
{
	x       = 966
	y       = 450
	type    = "button"
	command = "screensaver"
	content = "screensaver"
}

window
{
	x       = 966
	y       = 500
	type    = "button"
	command = "sleep"
	content = "sleep"
}
