Powerarrow generator
|
@ -122,7 +122,7 @@ lain.widgets.calendar:attach(mytextclock, { font_size = 10 })
|
|||
mailicon = wibox.widget.imagebox(beautiful.widget_mail)
|
||||
mailicon:buttons(awful.util.table.join(awful.button({ }, 1, function () awful.util.spawn(mail) end)))
|
||||
--[[ commented because it needs to be set before use
|
||||
mailwidget = wibox.widget.background(lain.widgets.imap({
|
||||
mailwidget = lain.widgets.imap({
|
||||
timeout = 180,
|
||||
server = "server",
|
||||
mail = "mail",
|
||||
|
@ -136,7 +136,7 @@ mailwidget = wibox.widget.background(lain.widgets.imap({
|
|||
mailicon:set_image(beautiful.widget_mail)
|
||||
end
|
||||
end
|
||||
}), "#313131")
|
||||
})
|
||||
]]
|
||||
|
||||
-- MPD
|
||||
|
@ -160,7 +160,6 @@ mpdwidget = lain.widgets.mpd({
|
|||
widget:set_markup(markup("#EA6F81", artist) .. title)
|
||||
end
|
||||
})
|
||||
mpdwidgetbg = wibox.widget.background(mpdwidget, "#313131")
|
||||
|
||||
-- MEM
|
||||
memicon = wibox.widget.imagebox(beautiful.widget_mem)
|
||||
|
@ -172,11 +171,11 @@ memwidget = lain.widgets.mem({
|
|||
|
||||
-- CPU
|
||||
cpuicon = wibox.widget.imagebox(beautiful.widget_cpu)
|
||||
cpuwidget = wibox.widget.background(lain.widgets.cpu({
|
||||
cpuwidget = lain.widgets.cpu({
|
||||
settings = function()
|
||||
widget:set_text(" " .. cpu_now.usage .. "% ")
|
||||
end
|
||||
}), "#313131")
|
||||
})
|
||||
|
||||
-- Coretemp
|
||||
tempicon = wibox.widget.imagebox(beautiful.widget_temp)
|
||||
|
@ -193,7 +192,6 @@ fswidget = lain.widgets.fs({
|
|||
widget:set_text(" " .. fs_now.used .. "% ")
|
||||
end
|
||||
})
|
||||
fswidgetbg = wibox.widget.background(fswidget, "#313131")
|
||||
|
||||
-- Battery
|
||||
baticon = wibox.widget.imagebox(beautiful.widget_battery)
|
||||
|
@ -235,13 +233,13 @@ volumewidget = lain.widgets.alsa({
|
|||
-- Net
|
||||
neticon = wibox.widget.imagebox(beautiful.widget_net)
|
||||
neticon:buttons(awful.util.table.join(awful.button({ }, 1, function () awful.util.spawn_with_shell(iptraf) end)))
|
||||
netwidget = wibox.widget.background(lain.widgets.net({
|
||||
netwidget = lain.widgets.net({
|
||||
settings = function()
|
||||
widget:set_markup(markup("#7AC82E", " " .. net_now.received)
|
||||
.. " " ..
|
||||
markup("#46A8C3", " " .. net_now.sent .. " "))
|
||||
end
|
||||
}), "#313131")
|
||||
})
|
||||
|
||||
-- Separators
|
||||
spr = wibox.widget.textbox(' ')
|
||||
|
@ -332,42 +330,39 @@ for s = 1, screen.count() do
|
|||
-- Widgets that are aligned to the upper right
|
||||
-- If you are moving widgets from a section with light grey background to dark grey or vice versa,
|
||||
-- use a replacement icon as appropriate from themes/powerarrow-darker/alticons so your icons match the bg.
|
||||
|
||||
local right_layout_toggle = true
|
||||
local function right_layout_add (...)
|
||||
local arg = {...}
|
||||
if right_layout_toggle then
|
||||
right_layout:add(arrl_ld)
|
||||
for i, n in pairs(arg) do
|
||||
right_layout:add(wibox.widget.background(n ,'#313131'))
|
||||
end
|
||||
else
|
||||
right_layout:add(arrl_dl)
|
||||
for i, n in pairs(arg) do
|
||||
right_layout:add(n)
|
||||
end
|
||||
end
|
||||
right_layout_toggle = not right_layout_toggle
|
||||
end
|
||||
|
||||
local right_layout = wibox.layout.fixed.horizontal()
|
||||
if s == 1 then right_layout:add(wibox.widget.systray()) end
|
||||
right_layout:add(spr)
|
||||
right_layout:add(arrl)
|
||||
right_layout:add(arrl_ld)
|
||||
right_layout:add(mpdicon)
|
||||
right_layout:add(mpdwidgetbg)
|
||||
right_layout:add(arrl_dl)
|
||||
right_layout:add(volicon)
|
||||
right_layout:add(volumewidget)
|
||||
right_layout:add(arrl_ld)
|
||||
right_layout:add(mailicon)
|
||||
--right_layout:add(mailwidget)
|
||||
right_layout:add(arrl_dl)
|
||||
right_layout:add(memicon)
|
||||
right_layout:add(memwidget)
|
||||
right_layout:add(arrl_ld)
|
||||
right_layout:add(cpuicon)
|
||||
right_layout:add(cpuwidget)
|
||||
right_layout:add(arrl_dl)
|
||||
right_layout:add(tempicon)
|
||||
right_layout:add(tempwidget)
|
||||
right_layout:add(arrl_ld)
|
||||
right_layout:add(fsicon)
|
||||
right_layout:add(fswidgetbg)
|
||||
right_layout:add(arrl_dl)
|
||||
right_layout:add(baticon)
|
||||
right_layout:add(batwidget)
|
||||
right_layout:add(arrl_ld)
|
||||
right_layout:add(neticon)
|
||||
right_layout:add(netwidget)
|
||||
right_layout:add(arrl_dl)
|
||||
right_layout:add(mytextclock)
|
||||
right_layout:add(spr)
|
||||
right_layout:add(arrl_ld)
|
||||
right_layout:add(mylayoutbox[s])
|
||||
right_layout_add(mpdicon, mpdwidget)
|
||||
right_layout_add(voliconi, olumewidget)
|
||||
--right_layout_add(mailicon, mailwidget)
|
||||
right_layout_add(memicon, memwidget)
|
||||
right_layout_add(cpuicon, cpuwidget)
|
||||
right_layout_add(tempicon, tempwidget)
|
||||
right_layout_add(fsicon, fswidget)
|
||||
right_layout_add(baticon, batwidget)
|
||||
right_layout_add(neticon,netwidget)
|
||||
right_layout_add(mytextclock, spr)
|
||||
right_layout_add(mylayoutbox[s])
|
||||
|
||||
-- Now bring it all together (with the tasklist in the middle)
|
||||
local layout = wibox.layout.align.horizontal()
|
||||
|
|
Before Width: | Height: | Size: 128 B After Width: | Height: | Size: 185 B |
Before Width: | Height: | Size: 149 B After Width: | Height: | Size: 208 B |
Before Width: | Height: | Size: 144 B After Width: | Height: | Size: 203 B |
Before Width: | Height: | Size: 154 B After Width: | Height: | Size: 214 B |
Before Width: | Height: | Size: 135 B After Width: | Height: | Size: 198 B |
Before Width: | Height: | Size: 191 B After Width: | Height: | Size: 253 B |
Before Width: | Height: | Size: 169 B After Width: | Height: | Size: 228 B |
Before Width: | Height: | Size: 166 B After Width: | Height: | Size: 189 B |
Before Width: | Height: | Size: 210 B After Width: | Height: | Size: 213 B |
Before Width: | Height: | Size: 169 B After Width: | Height: | Size: 228 B |
Before Width: | Height: | Size: 133 B After Width: | Height: | Size: 193 B |
Before Width: | Height: | Size: 185 B After Width: | Height: | Size: 186 B |
Before Width: | Height: | Size: 142 B After Width: | Height: | Size: 196 B |
Before Width: | Height: | Size: 174 B After Width: | Height: | Size: 175 B |
Before Width: | Height: | Size: 147 B After Width: | Height: | Size: 206 B |
Before Width: | Height: | Size: 129 B After Width: | Height: | Size: 189 B |
Before Width: | Height: | Size: 136 B After Width: | Height: | Size: 195 B |
Before Width: | Height: | Size: 140 B After Width: | Height: | Size: 200 B |
Before Width: | Height: | Size: 134 B After Width: | Height: | Size: 193 B |
Before Width: | Height: | Size: 140 B After Width: | Height: | Size: 199 B |