summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2023-03-20 00:09:07 -0500
committerzachir <zachir@librem.one>2023-03-20 00:09:07 -0500
commit64cfa664cd58676bedca6ad0ad1e6267cfaa1b4f (patch)
tree1929424f510f8a3927cbaf2d519176073aad6f65
parent6567f98e09fb811276ff05538fe5aeaee3059c7d (diff)
comment out floating windows always on top
-rw-r--r--awesome/rc.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua
index ab8348b..7c5b061 100644
--- a/awesome/rc.lua
+++ b/awesome/rc.lua
@@ -920,6 +920,7 @@ awful.spawn.with_shell(string.format("sh %s/autostart.sh &", config_dir))
-- }}}
-- {{{ Floating windows always on top
+--[[
client.connect_signal("property::floating", function(c)
if not c.fullscreen then
if c.floating then
@@ -929,6 +930,7 @@ client.connect_signal("property::floating", function(c)
end
end
end)
+--]]
-- }}}
-- spawn windows as slaves {{{