cleaned imports
This commit is contained in:
parent
e3eb30af2a
commit
24d85c5107
4
init.lua
4
init.lua
|
@ -5,7 +5,7 @@
|
|||
|
||||
|
||||
return {
|
||||
layout = require("bling.layout"),
|
||||
module = require("bling.module"),
|
||||
layout = require(... .. ".layout"),
|
||||
module = require(... .. ".module"),
|
||||
}
|
||||
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
local beautiful = require("beautiful")
|
||||
|
||||
local mstab = require("bling.layout.mstab")
|
||||
local mstab = require(... .. ".mstab")
|
||||
beautiful.layout_mstab = mstab.get_icon()
|
||||
|
||||
local vertical = require("bling.layout.vertical")
|
||||
local vertical = require(... .. ".vertical")
|
||||
beautiful.layout_vertical = vertical.get_icon()
|
||||
|
||||
local horizontal = require("bling.layout.horizontal")
|
||||
local horizontal = require(... .. ".horizontal")
|
||||
beautiful.layout_horizontal = horizontal.get_icon()
|
||||
|
||||
local centered = require("bling.layout.centered")
|
||||
local centered = require(... .. ".centered")
|
||||
beautiful.layout_centered = centered.get_icon()
|
||||
|
||||
local layout = {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
return {
|
||||
window_swallowing = require("bling.module.window_swallowing"),
|
||||
tiled_wallpaper = require("bling.module.tiled_wallpaper"),
|
||||
flash_focus = require("bling.module.flash_focus")
|
||||
window_swallowing = require(... .. ".window_swallowing"),
|
||||
tiled_wallpaper = require(... .. ".tiled_wallpaper"),
|
||||
flash_focus = require(... .. ".flash_focus")
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue