Hi there,
Can anyone help me with a small change I want to do on my rc.lua ?
I have configured awesome so that it only lists my active tags,
[1][2][3].....[9] <--- skype usually runs on tag9
162 -- Create a taglist widget
163 mytaglist[s] = awful.widget.taglist(s,
awful.widget.taglist.label.*noempty*,
mytaglist.buttons)
164
And now I'd like to be able to 'scroll' through my 'active' tags using
my left-right keys,
198 -- {{{ Key bindings
199 globalkeys = awful.util.table.join(
200 awful.key({ modkey, }, *"Left",
awful.tag.viewprev * ),
201 awful.key({ modkey, }, "Right",
awful.tag.viewnext ),
202 awful.key({ modkey, }, "Escape",
awful.tag.history.restore),
Now, imagine that I have tags 1,2,3,9 active. If I jump to tag9 and
press 'left' awesome will jump to tag8, then 7,6,5,4 until it gets to tag3.
How can I change that bit of awful.tag.viewprev code so that it will
jump to my previous 'active' tag 3 instead ?
I've looked here but couldn't find what I was looking for,
http://awesome.naquadah.org/doc/api/modules/awful.tag.html#viewnext
thankz a lot
jorge