如何让AwesomeWM切换到标签?


2

我目前有一个规则,所以Iron在我的'www'标签上打开,但是如何让Awesome切换到该标签?

Answers:


1

您可以单击www标签列表中的标签(查看man awesome并搜索bindings),或者LUA如果您想要执行更多操作,可以查看这些功能(例如,为其设置快捷方式):

或者,如果要在应用规则后切换到标记,可以使用以下格式:

{ rule = { class = "Iron" } ,
  properties = { tag = tags[1][3] , switchtotag = true } }

对不起,我应该更具体一点,因为我想在命令中加入一个命令:“{rule = {class =”Iron“},properties = {tag = tags [1] [3]}}”
BeaverusIV

我通过在菜单中添加一个功能来固定它,以便将焦点集中在它们产生铁的标签上。我应该看看,因为我只会从菜单中打开它。
BeaverusIV 2010年

好的,现在我明白你想要什么(我编辑了我的答案)。
cYrus 2010年

2

在菜单之前将其添加到rc.lua:

function load_prog(cmd, tag)
   awful.tag.viewonly(tags[1][tag])
   awful.util.spawn(cmd)
end

然后在菜单中:

{ "Iron", function () load_prog("iron", 3) end }
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.