Compare commits

..

No commits in common. "1a6754067279bea6f3ef7950f8f7c82660787b67" and "71a8a1f2f1ee4ad9fa36920a018c8cc5a3620750" have entirely different histories.

2 changed files with 3 additions and 8 deletions

@ -1 +1 @@
Subproject commit 8439ca7930e73e17746a1d6f0610417e8a42865f
Subproject commit ac49ade9951b591e859a470803e166acfa2b7bf2

View File

@ -197,8 +197,6 @@ end
-- Re-set wallpaper when a screen's geometry changes (e.g. different resolution)
screen.connect_signal("property::geometry", set_wallpaper)
local mywibox = awful.wibar({ position = "top", screen = s })
awful.screen.connect_for_each_screen(function(s)
-- Wallpaper
set_wallpaper(s)
@ -231,7 +229,7 @@ awful.screen.connect_for_each_screen(function(s)
}
-- Create the wibox
s.mywibox = mywibox
s.mywibox = awful.wibar({ position = "top", screen = s })
-- Add widgets to the wibox
s.mywibox:setup {
@ -425,10 +423,7 @@ globalkeys = gears.table.join(
-- Lock Screen
awful.key({ }, "XF86Display", function() awful.spawn(scrlocker) end,
{description = "lock the screen", group = "custom"}),
awful.key({ modkey }, "b", function() mywibox.visible = not mywibox.visible end,
{description = "toggle wibox", group = "layout"})
{description = "lock the screen", group = "custom"})
)
clientkeys = gears.table.join(