Просмотр исходного кода

~/.config/awesome: Fix for newer lua (5.2, i think).

Lucas Stadler лет назад: 13
Родитель
Сommit
e7f2e24a13
1 измененных файлов с 7 добавлено и 7 удалено
  1. 7 7
      .config/awesome/rc.lua

+ 7 - 7
.config/awesome/rc.lua

1
-- Standard awesome library
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
-- Widget and layout library
5
-- Widget and layout library
6
require("wibox")
7
require("vicious")
6
local wibox = require("wibox")
7
local vicious = require("vicious")
8
-- Theme handling library
8
-- Theme handling library
9
require("beautiful")
9
local beautiful = require("beautiful")
10
-- Notification library
10
-- Notification library
11
require("naughty")
11
local naughty = require("naughty")
12
12
13
-- {{{ Error handling
13
-- {{{ Error handling
14
-- Check if awesome encountered an error during startup and fell back to
14
-- Check if awesome encountered an error during startup and fell back to