From a5f5530c85f7de77c84dd89fb0d29afd2c8d5672 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Mon, 10 Aug 2015 09:05:55 +0200 Subject: [PATCH] tags: apps for second screen should go on second screen Not on the third screen. --- rc/tags.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rc/tags.lua b/rc/tags.lua index b409170..20e9ff7 100644 --- a/rc/tags.lua +++ b/rc/tags.lua @@ -16,7 +16,7 @@ shifty.config.tags = { mwfact = 0.7, exclusive = true, max_clients = 1, - screen = math.max(screen.count(), 2), + screen = math.min(screen.count(), 2), spawn = config.browser, icon = tagicon("web") }, @@ -40,7 +40,7 @@ shifty.config.tags = { position = 4, mwfact = 0.2, exclusive = true, - screen = math.max(screen.count(), 2), + screen = math.min(screen.count(), 2), icon = tagicon("im"), nopopup = true, -- don't give focus on creation },