diff options
author | zachir <zachir@librem.one> | 2023-03-20 00:09:07 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2023-03-20 00:09:07 -0500 |
commit | 64cfa664cd58676bedca6ad0ad1e6267cfaa1b4f (patch) | |
tree | 1929424f510f8a3927cbaf2d519176073aad6f65 /awesome/rc.lua | |
parent | 6567f98e09fb811276ff05538fe5aeaee3059c7d (diff) |
comment out floating windows always on top
Diffstat (limited to 'awesome/rc.lua')
-rw-r--r-- | awesome/rc.lua | 2 |
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 {{{ |