aboutsummaryrefslogtreecommitdiff
path: root/config.dot/awesome.link/signals.lua
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2015-07-23 10:54:38 -0300
committerSilvio Rhatto <rhatto@riseup.net>2015-07-23 10:54:38 -0300
commit3f0050c6152c5877a1fde347aa3e52565e615215 (patch)
treed65b016c592d3987d32450dcb7ca5193b7ecd8eb /config.dot/awesome.link/signals.lua
parent86a473aef87cb545bd2581b22c97cd274a88cad3 (diff)
downloadawesome-3f0050c6152c5877a1fde347aa3e52565e615215.tar.gz
awesome-3f0050c6152c5877a1fde347aa3e52565e615215.tar.bz2
Signals and rules in separate files
Diffstat (limited to 'config.dot/awesome.link/signals.lua')
-rw-r--r--config.dot/awesome.link/signals.lua30
1 files changed, 30 insertions, 0 deletions
diff --git a/config.dot/awesome.link/signals.lua b/config.dot/awesome.link/signals.lua
new file mode 100644
index 0000000..c65409f
--- /dev/null
+++ b/config.dot/awesome.link/signals.lua
@@ -0,0 +1,30 @@
+-- {{{ Signals
+-- Signal function to execute when a new client appears.
+client.add_signal("manage", function (c, startup)
+ -- Add a titlebar
+ -- awful.titlebar.add(c, { modkey = modkey })
+
+ -- Enable sloppy focus (focus on mouse over)
+ --c:add_signal("mouse::enter", function(c)
+ -- if awful.layout.get(c.screen) ~= awful.layout.suit.magnifier
+ -- and awful.client.focus.filter(c) then
+ -- client.focus = c
+ -- end
+ --end)
+
+ if not startup then
+ -- Set the windows at the slave,
+ -- i.e. put it at the end of others instead of setting it master.
+ -- awful.client.setslave(c)
+
+ -- Put windows in a smart way, only if they does not set an initial position.
+ if not c.size_hints.user_position and not c.size_hints.program_position then
+ awful.placement.no_overlap(c)
+ awful.placement.no_offscreen(c)
+ end
+ end
+end)
+
+client.add_signal("focus", function(c) c.border_color = beautiful.border_focus end)
+client.add_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
+-- }}}