From fccd63f4def2dd18b304fbca381be001f659b93b Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Wed, 29 Apr 2020 17:53:02 +0200 Subject: [PATCH] Reorganized layouts, moving or resizing a client will make it float --- org/config/awesome.org | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/org/config/awesome.org b/org/config/awesome.org index 988c3f0..926ea1f 100644 --- a/org/config/awesome.org +++ b/org/config/awesome.org @@ -451,14 +451,14 @@ #+RESULTS[cda51a1db4af80af635cc4205a4077055b7b157f]: list-layouts #+begin_example awful.layout.suit.magnifier, - awful.layout.suit.fair, - awful.layout.suit.fair.horizontal, - awful.layout.suit.floating, awful.layout.suit.tile, awful.layout.suit.tile.left, + awful.layout.suit.fair, + awful.layout.suit.fair.horizontal, awful.layout.suit.tile.bottom, awful.layout.suit.tile.top, awful.layout.suit.spiral, + awful.layout.suit.floating, awful.layout.suit.max, #+end_example @@ -874,10 +874,12 @@ end), awful.button({ modkey }, 1, function (c) c:emit_signal("request::activate", "mouse_click", {raise = true}) + awful.client.floating.toggle(c) awful.mouse.client.move(c) end), awful.button({ modkey }, 3, function (c) c:emit_signal("request::activate", "mouse_click", {raise = true}) + awful.client.floating.toggle(c) awful.mouse.client.resize(c) end) )