From 9c4844b15ca9e32f6b320ba240d963150bef5edc Mon Sep 17 00:00:00 2001 From: Marcel Schneider Date: Thu, 3 Dec 2020 13:46:23 +0100 Subject: [PATCH] add hack for android studio --- awesome/rc.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/awesome/rc.lua b/awesome/rc.lua index 9ea0e05..06e3ef0 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -523,6 +523,17 @@ awful.rules.rules = { -- Set Firefox to always map on the tag named "2" on screen 1. -- { rule = { class = "Firefox" }, -- properties = { screen = 1, tag = "2" } }, + { + rule = { + class = "jetbrains-studio", + name="^win[0-9]+$" + }, + properties = { + placement = awful.placement.no_offscreen, + titlebars_enabled = false + } + }, + } -- }}}