aboutsummaryrefslogtreecommitdiff
path: root/.config/awesome
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2019-08-14 18:00:49 -0400
committertdro <tdro@users.noreply.github.com>2019-08-14 18:00:49 -0400
commit0669c325ffed98ccf137dcb0343fcd50e1d9692a (patch)
treebc785c18ae2cfe8e74de02fe17b05b2742fee50e /.config/awesome
parentc9538a55ada14622707fa277421b0c16eab58117 (diff)
downloaddotfiles-0669c325ffed98ccf137dcb0343fcd50e1d9692a.tar.gz
dotfiles-0669c325ffed98ccf137dcb0343fcd50e1d9692a.tar.bz2
dotfiles-0669c325ffed98ccf137dcb0343fcd50e1d9692a.zip
.config/awesome/rc: Define floating rules only
Diffstat (limited to '.config/awesome')
-rw-r--r--.config/awesome/rc.lua10
1 files changed, 3 insertions, 7 deletions
diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua
index 95963b9..db05516 100644
--- a/.config/awesome/rc.lua
+++ b/.config/awesome/rc.lua
@@ -468,17 +468,13 @@ awful.rules.rules = {
buttons = clientbuttons,
screen = awful.screen.preferred,
placement = awful.placement.no_overlap+awful.placement.no_offscreen
-}},
+ }
+ },
-- Floating clients.
{ rule_any = {
instance = { "copyq", },
- }, properties = { floating = true }},
-
- -- Honor size hints for specific clients.
- { rule_any = {
- instance = {},
- }, properties = { size_hints_honor = true }},
+ }, properties = { floating = true }}
}
-- }}}