Make awful.rules mandatory
There was many unfixable race conditions that could only be solved by better integrating the request:: system and awful.rules. This has the side effect to make rules mandatory.
This commit is contained in:
parent
30a527fcfd
commit
fcd320c7f6
|
@ -1,7 +1,6 @@
|
||||||
-- Standard awesome library
|
-- Standard awesome library
|
||||||
local gears = require("gears")
|
local gears = require("gears")
|
||||||
local awful = require("awful")
|
local awful = require("awful")
|
||||||
awful.rules = require("awful.rules")
|
|
||||||
require("awful.autofocus")
|
require("awful.autofocus")
|
||||||
-- Widget and layout library
|
-- Widget and layout library
|
||||||
local wibox = require("wibox")
|
local wibox = require("wibox")
|
||||||
|
|
|
@ -56,6 +56,7 @@ return
|
||||||
tooltip = require("awful.tooltip");
|
tooltip = require("awful.tooltip");
|
||||||
ewmh = require("awful.ewmh");
|
ewmh = require("awful.ewmh");
|
||||||
titlebar = require("awful.titlebar");
|
titlebar = require("awful.titlebar");
|
||||||
|
rules = require("awful.rules");
|
||||||
spawn = spawn;
|
spawn = spawn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue