transparency and proper height

This commit is contained in:
Barak Michener 2014-06-04 13:34:51 -04:00
parent 1334851ba2
commit 5baa9515af
2 changed files with 5 additions and 5 deletions

View file

@ -9,8 +9,8 @@ theme = {}
theme.font = "Ubuntu 10"
theme.bg_normal = "#222222"
theme.bg_focus = "#535d6c"
theme.bg_normal = "#222222c0"
theme.bg_focus = "#535d6ca0"
theme.bg_urgent = "#ff0000"
theme.bg_minimize = "#444444"

View file

@ -142,7 +142,7 @@ mysystray = widget({ type = "systray" })
-- CPU usage widget
cpuwidget = awful.widget.graph()
cpuwidget:set_width(50)
cpuwidget:set_height(30)
cpuwidget:set_height(24)
cpuwidget:set_background_color("#494B4F")
cpuwidget:set_color("#FF5656")
cpuwidget:set_gradient_colors({ "#FF5656", "#88A175", "#AECF96" })
@ -153,7 +153,7 @@ cpuwidget_t = awful.tooltip({ objects = { cpuwidget.widget },})
-- Initialize widget
batwidget = awful.widget.progressbar()
batwidget:set_width(8)
batwidget:set_height(30)
batwidget:set_height(24)
batwidget:set_vertical(true)
batwidget:set_background_color("#494B4F")
batwidget:set_border_color(nil)
@ -186,7 +186,7 @@ vicious.register(cpuwidget, vicious.widgets.cpu,
-- RAM usage widget
memwidget = awful.widget.progressbar()
memwidget:set_width(15)
memwidget:set_height(30)
memwidget:set_height(24)
memwidget:set_vertical(true)
memwidget:set_background_color('#494B4F')
memwidget:set_color('#AECF96')