cleaned imports

This commit is contained in:
Nooo37 2020-10-29 21:22:37 +01:00
parent e3eb30af2a
commit 24d85c5107
3 changed files with 9 additions and 9 deletions

View File

@ -5,7 +5,7 @@
return { return {
layout = require("bling.layout"), layout = require(... .. ".layout"),
module = require("bling.module"), module = require(... .. ".module"),
} }

View File

@ -1,15 +1,15 @@
local beautiful = require("beautiful") local beautiful = require("beautiful")
local mstab = require("bling.layout.mstab") local mstab = require(... .. ".mstab")
beautiful.layout_mstab = mstab.get_icon() beautiful.layout_mstab = mstab.get_icon()
local vertical = require("bling.layout.vertical") local vertical = require(... .. ".vertical")
beautiful.layout_vertical = vertical.get_icon() beautiful.layout_vertical = vertical.get_icon()
local horizontal = require("bling.layout.horizontal") local horizontal = require(... .. ".horizontal")
beautiful.layout_horizontal = horizontal.get_icon() beautiful.layout_horizontal = horizontal.get_icon()
local centered = require("bling.layout.centered") local centered = require(... .. ".centered")
beautiful.layout_centered = centered.get_icon() beautiful.layout_centered = centered.get_icon()
local layout = { local layout = {

View File

@ -1,5 +1,5 @@
return { return {
window_swallowing = require("bling.module.window_swallowing"), window_swallowing = require(... .. ".window_swallowing"),
tiled_wallpaper = require("bling.module.tiled_wallpaper"), tiled_wallpaper = require(... .. ".tiled_wallpaper"),
flash_focus = require("bling.module.flash_focus") flash_focus = require(... .. ".flash_focus")
} }