summaryrefslogtreecommitdiffstats
path: root/.config/awesome/functions
diff options
context:
space:
mode:
Diffstat (limited to '.config/awesome/functions')
-rw-r--r--.config/awesome/functions/error.lua26
-rw-r--r--.config/awesome/functions/helper.lua17
2 files changed, 0 insertions, 43 deletions
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
--- }}}