tags: with guess_position, we don't need to move to specify position

This commit is contained in:
Vincent Bernat 2012-09-08 23:06:04 +02:00
parent a89fb71d6e
commit f07f7c9fc6

View file

@ -12,7 +12,6 @@ shifty.config.tags = {
mwfact = 0.7, mwfact = 0.7,
exclusive = true, exclusive = true,
max_clients = 1, max_clients = 1,
position = 3,
screen = math.max(screen.count(), 2), screen = math.max(screen.count(), 2),
spawn = browser, spawn = browser,
icon = tagicon("web") icon = tagicon("web")
@ -20,14 +19,13 @@ shifty.config.tags = {
["2↭emacs"] = { ["2↭emacs"] = {
mwfact = 0.6, mwfact = 0.6,
exclusive = true, exclusive = true,
position = 2, screen = 1,
spawn = "emacs", spawn = "emacs",
icon = tagicon("dev"), icon = tagicon("dev"),
}, },
["1↭xterm"] = { ["1↭xterm"] = {
layout = awful.layout.suit.fair, layout = awful.layout.suit.fair,
exclusive = true, exclusive = true,
position = 1,
slave = true, slave = true,
spawn = config.terminal, spawn = config.terminal,
icon = tagicon("main"), icon = tagicon("main"),
@ -35,7 +33,6 @@ shifty.config.tags = {
["4↭im"] = { ["4↭im"] = {
mwfact = 0.2, mwfact = 0.2,
exclusive = true, exclusive = true,
position = 4,
icon = tagicon("im"), icon = tagicon("im"),
nopopup = true nopopup = true
} }