some more awesome stuff...
This commit is contained in:
parent
79e517a7bf
commit
52591d7ddd
2 changed files with 7 additions and 7 deletions
|
|
@ -103,10 +103,10 @@ end
|
|||
|
||||
-- Initialize widgets
|
||||
local batwidget = wibox.widget.textbox()
|
||||
vicious.register(batwidget, vicious.widgets.bat, "$2%/$3H | ", 20, "BAT0" )
|
||||
vicious.register(batwidget, vicious.widgets.bat, " $2%/$3H | ", 20, "BAT0" )
|
||||
|
||||
local thermalwidget = wibox.widget.textbox()
|
||||
vicious.register(thermalwidget, vicious.widgets.thermal, "$1C | ", 20, "thermal_zone0" )
|
||||
vicious.register(thermalwidget, vicious.widgets.thermal, "$1C ", 20, "thermal_zone0" )
|
||||
|
||||
cpuwidget = awful.widget.graph()
|
||||
cpuwidget:set_width(50)
|
||||
|
|
@ -265,9 +265,9 @@ for s = 1, screen.count() do
|
|||
|
||||
-- Widgets that are aligned to the right
|
||||
local right_layout = wibox.layout.fixed.horizontal()
|
||||
right_layout:add(cpuwidget)
|
||||
right_layout:add(batwidget)
|
||||
right_layout:add(thermalwidget)
|
||||
right_layout:add(cpuwidget)
|
||||
if s == 1 then right_layout:add(wibox.widget.systray()) end
|
||||
right_layout:add(mytextclock)
|
||||
right_layout:add(mylayoutbox[s])
|
||||
|
|
|
|||
|
|
@ -11,19 +11,19 @@ theme = {}
|
|||
theme.font = "sans 8"
|
||||
|
||||
theme.bg_normal = "#222222"
|
||||
theme.bg_focus = "#535d6c"
|
||||
theme.bg_focus = "#222222"
|
||||
theme.bg_urgent = "#ff0000"
|
||||
theme.bg_minimize = "#444444"
|
||||
theme.bg_systray = theme.bg_normal
|
||||
|
||||
theme.fg_normal = "#aaaaaa"
|
||||
theme.fg_focus = "#ffffff"
|
||||
theme.fg_focus = "#ffa500"
|
||||
theme.fg_urgent = "#ffffff"
|
||||
theme.fg_minimize = "#ffffff"
|
||||
|
||||
theme.border_width = 1
|
||||
theme.border_width = 2
|
||||
theme.border_normal = "#000000"
|
||||
theme.border_focus = "#535d6c"
|
||||
theme.border_focus = "#ffa500"
|
||||
theme.border_marked = "#91231c"
|
||||
|
||||
-- There are other variable sets
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue