]> git.rmz.io Git - dotfiles.git/blobdiff - awesome/rc.lua
aweome: open new clients as slaves
[dotfiles.git] / awesome / rc.lua
index 9da4d247a1dd81ef5204ec1b418f1a242fcf10e9..9cd44814f3b77e36a0984d616e02b9582f413577 100644 (file)
@@ -8,8 +8,6 @@ beautiful = require("beautiful")
 -- Notification library
 naughty = require("naughty")
 menubar = require("menubar")
--- Pulseaudio widget
---local APW = require("apw/widget")
 
 -- {{{ Error handling
 -- Check if awesome encountered an error during startup and fell back to
@@ -86,7 +84,7 @@ client.connect_signal("manage", function (c, startup)
     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)
+        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
@@ -103,6 +101,5 @@ client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_n
 -- Set keys
 root.keys(globalkeys)
 
--- {{{ Autostart applications
+-- Autostart applications
 require("autostart")
--- }}}