From 8d135a4f08667c7359380b9e54ef79d8e2ba1afd Mon Sep 17 00:00:00 2001 From: Jonathan McCrohan Date: Tue, 11 Jul 2017 21:50:54 +0100 Subject: Remove redundant files (already merged into rc.lua) --- .config/awesome/functions/error.lua | 26 -------------------------- .config/awesome/functions/helper.lua | 17 ----------------- 2 files changed, 43 deletions(-) delete mode 100644 .config/awesome/functions/error.lua delete mode 100644 .config/awesome/functions/helper.lua (limited to '.config/awesome/functions') diff --git a/.config/awesome/functions/error.lua b/.config/awesome/functions/error.lua deleted file mode 100644 index 74d5af4..0000000 --- a/.config/awesome/functions/error.lua +++ /dev/null @@ -1,26 +0,0 @@ -local naughty = require("naughty") - --- {{{ Error handling --- Check if awesome encountered an error during startup and fell back to --- another config (This code will only ever execute for the fallback config) -if awesome.startup_errors then - naughty.notify({ preset = naughty.config.presets.critical, - title = "Oops, there were errors during startup!", - text = awesome.startup_errors }) -end - --- Handle runtime errors after startup -do - local in_error = false - awesome.connect_signal("debug::error", function (err) - -- Make sure we don't go into an endless error loop - if in_error then return end - in_error = true - - naughty.notify({ preset = naughty.config.presets.critical, - title = "Oops, an error happened!", - text = tostring(err) }) - in_error = false - end) -end --- }}} diff --git a/.config/awesome/functions/helper.lua b/.config/awesome/functions/helper.lua deleted file mode 100644 index a16080e..0000000 --- a/.config/awesome/functions/helper.lua +++ /dev/null @@ -1,17 +0,0 @@ -awful = require("awful") -beautiful = require("beautiful") - --- {{{ Helper functions -local function client_menu_toggle_fn() - local instance = nil - - return function () - if instance and instance.wibox.visible then - instance:hide() - instance = nil - else - instance = awful.menu.clients({ theme = { width = 250 } }) - end - end -end --- }}} -- cgit v1.2.3