|
|
@ -1,14 +1,14 @@
|
|
1
|
1
|
-- Standard awesome library
|
|
2
|
|
require("awful")
|
|
3
|
|
require("awful.autofocus")
|
|
4
|
|
require("awful.rules")
|
|
|
2
|
local awful = require("awful")
|
|
|
3
|
awful.autofocus = require("awful.autofocus")
|
|
|
4
|
awful.rules = require("awful.rules")
|
|
5
|
5
|
-- Widget and layout library
|
|
6
|
|
require("wibox")
|
|
7
|
|
require("vicious")
|
|
|
6
|
local wibox = require("wibox")
|
|
|
7
|
local vicious = require("vicious")
|
|
8
|
8
|
-- Theme handling library
|
|
9
|
|
require("beautiful")
|
|
|
9
|
local beautiful = require("beautiful")
|
|
10
|
10
|
-- Notification library
|
|
11
|
|
require("naughty")
|
|
|
11
|
local naughty = require("naughty")
|
|
12
|
12
|
|
|
13
|
13
|
-- {{{ Error handling
|
|
14
|
14
|
-- Check if awesome encountered an error during startup and fell back to
|