Made the lock screen a little bit prettier
This commit is contained in:
parent
dcfcc459a1
commit
768e6d49d3
|
@ -59,33 +59,69 @@ return function(args)
|
||||||
s.lockscreen = awful.popup({
|
s.lockscreen = awful.popup({
|
||||||
widget = {
|
widget = {
|
||||||
{
|
{
|
||||||
--Top bar
|
-- Bottom layer
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
|
--Top bar
|
||||||
{
|
{
|
||||||
markup = "AwesomewWM",
|
{
|
||||||
widget = wibox.widget.textbox
|
-- Top bar contents
|
||||||
|
{
|
||||||
|
markup = "AwesomewWM",
|
||||||
|
widget = wibox.widget.textbox
|
||||||
|
},
|
||||||
|
{
|
||||||
|
widget = wibox.container.background
|
||||||
|
},
|
||||||
|
{
|
||||||
|
require("widgets.battery")({
|
||||||
|
percentage = true
|
||||||
|
}),
|
||||||
|
wibox.widget.textclock(),
|
||||||
|
widget = wibox.container.background,
|
||||||
|
layout = wibox.layout.fixed.horizontal
|
||||||
|
},
|
||||||
|
layout = wibox.layout.align.horizontal,
|
||||||
|
},
|
||||||
|
widget = wibox.container.margin,
|
||||||
|
left = 5,
|
||||||
|
right = 5
|
||||||
},
|
},
|
||||||
{
|
widget = wibox.container.background,
|
||||||
widget = wibox.container.background
|
forced_width = s.geometry.width,
|
||||||
},
|
forced_height = style.lockscreen_bar_height or 25,
|
||||||
{
|
bg = style.lockscreen_bar_bg or
|
||||||
require("widgets.battery")({percentage = true}),
|
style.lockscreen_bg_normal
|
||||||
wibox.widget.textclock(),
|
|
||||||
widget = wibox.container.background,
|
|
||||||
layout = wibox.layout.fixed.horizontal
|
|
||||||
},
|
|
||||||
layout = wibox.layout.align.horizontal,
|
|
||||||
},
|
},
|
||||||
widget = wibox.container.background,
|
{
|
||||||
forced_width = s.geometry.width,
|
--Drop shadow
|
||||||
forced_height = style.lockscreen_bar_height or 25,
|
{
|
||||||
bg = style.lockscreen_bar_bg or style.lockscreen_bg_normal
|
markup = "",
|
||||||
|
widget = wibox.widget.textbox,
|
||||||
|
},
|
||||||
|
widget = wibox.container.background,
|
||||||
|
forced_height = style.lockscreen_bar_shadow or 5,
|
||||||
|
forced_width = s.geometry.width,
|
||||||
|
bg = {
|
||||||
|
-- Gradient
|
||||||
|
type = "linear",
|
||||||
|
from = { 0, 0 },
|
||||||
|
to = { 0, style.lockscreen_bar_shadow or 5},
|
||||||
|
stops = {
|
||||||
|
{ 0, style.lockscreen_bar_shadow_color_start or
|
||||||
|
"#00000055" },
|
||||||
|
{ 1, style.lockscreen_bar_shadow_color_end or
|
||||||
|
"#00000000" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
layout = wibox.layout.fixed.vertical
|
||||||
},
|
},
|
||||||
widget = wibox.container.place,
|
widget = wibox.container.place,
|
||||||
valign = "top",
|
valign = "top",
|
||||||
halign = "center"
|
halign = "center"
|
||||||
},{
|
},
|
||||||
|
{
|
||||||
--Combo box (face, nickname, password entry)
|
--Combo box (face, nickname, password entry)
|
||||||
style.container({
|
style.container({
|
||||||
(read("./.face") and style.container {
|
(read("./.face") and style.container {
|
||||||
|
|
Loading…
Reference in New Issue