Hi guys, I'm new to awesome and would like to know if you can help with the following tag-program-matching issue. The problem is that I don't get a matching for the banshee program - so when I start banshee in the terminal it will always be placed in the same tag where the calling tag of the terminal window is. Other programs like Skype or Firefox are working fine. Here is the relevant code of my rc.lua file with the part that doesn't work:

-- Tags/workspaces
tags = {
  names  = { 1, 2, 3, 4 }
}

...

-- Rules
awful.rules.rules = {
  -- All clients will match this rule.
  { rule        = { },
     properties = {
       border_width     = beautiful.border_width,
       border_color     = beautiful.border_normal,
       -- remove gaps between windows
       size_hints_honor = false,
       focus            = true,
       keys             = clientkeys,
       buttons          = clientbuttons
     }
  },

  -- Set Chrome maps always on tags number 2.
  {
    rule = { class = "Chromium" },
    properties = { tag = tags[1][2], switchtotag = true }
  },
  -- Set Firefox maps always on tags number 2.
  {
    rule = { class = "Firefox" },
    properties = { tag = tags[1][2], switchtotag = true }
  },
  -- Set Thunderbird maps always on tags number 3.
  {
    rule = { class = "Thunderbird" },
    properties = { tag = tags[1][3], switchtotag = true }
  },
   -- Set Banshee maps always on tags number 4 => DOESN'T WORK and I don't know 
what I'm doing wrong
  {
    rule = { class = "Banshee" },
    properties = { tag = tags[1][4] }
  }
}


If you need additional information you can find my whole rc.lua file under https://github.com/matthias-guenther/dotfiles/blob/e24199f156b2eacbfc2cf93cbab42966a2f4a29c/awesome/rc.lua. <https://github.com/matthias-guenther/dotfiles/blob/e24199f156b2eacbfc2cf93cbab42966a2f4a29c/awesome/rc.lua>

Would be great if you can help me with this issue.

Best regards from Berlin,

Matthias
<https://github.com/matthias-guenther/dotfiles/blob/e24199f156b2eacbfc2cf93cbab42966a2f4a29c/awesome/rc.lua>

Reply via email to