Merge branch 'tag_swap_V2' of git://github.com/Elv13/awesome-1
This commit is contained in:
commit
dd2f805e09
|
@ -61,6 +61,18 @@ function tag.move(new_index, target_tag)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
--- Swap 2 tags
|
||||||
|
-- @param tag1 The first tag
|
||||||
|
-- @param tag2 The second tag
|
||||||
|
function tag.swap(tag1,tag2)
|
||||||
|
local idx1, idx2 = tag.getidx(tag1),tag.getidx(tag2)
|
||||||
|
local src2, src1 = tag.getscreen(tag2),tag.getscreen(tag1)
|
||||||
|
tag.setscreen(tag2,src1)
|
||||||
|
tag.move(idx1,tag2)
|
||||||
|
tag.setscreen(tag1,scr2)
|
||||||
|
tag.move(idx2,tag1)
|
||||||
|
end
|
||||||
|
|
||||||
--- Add a tag.
|
--- Add a tag.
|
||||||
-- @param name The tag name, a string
|
-- @param name The tag name, a string
|
||||||
-- @param props The tags properties, a table
|
-- @param props The tags properties, a table
|
||||||
|
|
Loading…
Reference in New Issue