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