Added audio device selector, new notification theme and much more. Rewritten some files and made a new README

This commit is contained in:
Kievits Rene
2022-05-16 16:06:02 +02:00
parent 07b2b9ad4e
commit cc00832342
64 changed files with 4720 additions and 3328 deletions

View File

@@ -12,37 +12,37 @@ local wibox = require("wibox")
require("src.core.signals")
return function(s)
local systray = wibox.widget {
{
{
wibox.widget.systray(),
widget = wibox.container.margin,
id = 'st'
},
strategy = "exact",
layout = wibox.container.constraint,
id = "container"
},
widget = wibox.container.background,
shape = function(cr, width, height)
gears.shape.rounded_rect(cr, width, height, 5)
end,
bg = color["BlueGrey800"]
}
-- Signals
Hover_signal(systray.container, color["Red200"])
local systray = wibox.widget {
{
{
wibox.widget.systray(),
widget = wibox.container.margin,
id = 'st'
},
strategy = "exact",
layout = wibox.container.constraint,
id = "container"
},
widget = wibox.container.background,
shape = function(cr, width, height)
gears.shape.rounded_rect(cr, width, height, 5)
end,
bg = color["BlueGrey800"]
}
-- Signals
Hover_signal(systray.container, color["Red200"])
awesome.connect_signal("systray::update", function()
local num_entries = awesome.systray()
awesome.connect_signal("systray::update", function()
local num_entries = awesome.systray()
if num_entries == 0 then
systray.container.st:set_margins(0)
else
systray.container.st:set_margins(dpi(6))
end
end)
if num_entries == 0 then
systray.container.st:set_margins(0)
else
systray.container.st:set_margins(dpi(6))
end
end)
systray.container.st.widget:set_base_size(dpi(20))
systray.container.st.widget:set_base_size(dpi(20))
return systray
return systray
end