From 5c4c3e0c2664bd1265077982f21651cf58d815e7 Mon Sep 17 00:00:00 2001 From: Nooo37 Date: Tue, 30 Mar 2021 18:57:04 +0200 Subject: [PATCH] still making the LuaRocks package work --- bling-scm-3.rockspec | 27 ----------------------- bling-scm-5.rockspec | 52 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+), 27 deletions(-) delete mode 100644 bling-scm-3.rockspec create mode 100644 bling-scm-5.rockspec diff --git a/bling-scm-3.rockspec b/bling-scm-3.rockspec deleted file mode 100644 index d3b52f4..0000000 --- a/bling-scm-3.rockspec +++ /dev/null @@ -1,27 +0,0 @@ -package = "bling" -version = "scm-3" - -source = { - url = "git://github.com/Nooo37/bling", - branch = "master", -} - -description = { - summary = "Utilities for the AwesomeWM", - detailed = [[ - This module extends the Awesome window manager with alternative layouts, - flash focus, tabbing, a simple tiling wallpaper generator, a declarative - wallpaper setter, window swallowing and a playerctl signal. - ]], - homepage = "https://github.com/Nooo37/bling", - license = "MIT", -} - -dependencies = { - "lua >= 5.1", -} - -build = { - type = "builtin", - modules = { bling = "init.lua" }, -} diff --git a/bling-scm-5.rockspec b/bling-scm-5.rockspec new file mode 100644 index 0000000..3156fce --- /dev/null +++ b/bling-scm-5.rockspec @@ -0,0 +1,52 @@ +package = "bling" +version = "scm-5" + +source = { + url = "git://github.com/Nooo37/bling", + branch = "master", +} + +description = { + summary = "Utilities for the AwesomeWM", + detailed = [[ + This module extends the Awesome window manager with alternative layouts, + flash focus, tabbing, a simple tiling wallpaper generator, a declarative + wallpaper setter, window swallowing and a playerctl signal. + ]], + homepage = "https://github.com/Nooo37/bling", + license = "MIT", +} + +dependencies = { + "lua >= 5.1", +} + +build = { + type = "builtin", + modules = { + ["bling"] = "init.lua", + ["bling.layout"] = "layout/init.lua", + ["bling.layout.centered"] = "layout/centered.lua", + ["bling.layout.equalarea"] = "layout/equalarea.lua", + ["bling.layout.horizontal"] = "layout/horizontal.lua", + ["bling.layout.mstab"] = "layout/mstab.lua", + ["bling.layout.vertical"] = "layout/vertical.lua", + ["bling.helpers"] = "helpers/init.lua", + ["bling.helpers.client"] = "helpers/client.lua", + ["bling.helpers.color"] = "helpers/color.lua", + ["bling.helpers.filesystem"] = "helpers/filesystem.lua", + ["bling.helpers.shape"] = "helpers/shape.lua", + ["bling.helpers.time"] = "helpers/time.lua", + ["bling.module"] = "module/init.lua", + ["bling.module.flash_focus"] = "module/flash_focus.lua", + ["bling.module.tabbed"] = "module/tabbed.lua", + ["bling.module.tiled_wallpaper"] = "module/tiled_wallpaper.lua", + ["bling.module.wallpaper"] = "module/wallpaper.lua", + ["bling.module.window_swallowing"] = "module/window_swallowing.lua", + ["bling.signal"] = "signal/init.lua", + ["bling.signal.playerctl"] = "signal/playerctl.lua", + ["bling.widget.tabbar.boxes"] = "widget/tabbar/boxes.lua", + ["bling.widget.tabbar.default"] = "widget/tabbar/default.lua", + ["bling.widget.tabbar.modern"] = "widget/tabbar/modern.lua", + }, +}