sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

index.md (1060B)


      1 reorganizetags
      2 ==============
      3 
      4 Description
      5 -----------
      6 
      7 Shifts all clients per tag to leftmost unoccupied tags.
      8 
      9 For example, if clients A, B, C are tagged on tags 1, 5, 9 respectively, when
     10 this function is called, they will now be on 1, 2, and 3. The focused client
     11 will also remain focused.
     12 
     13 Clients on multiple tags will be treated as if they only were only on their
     14 leftmost tag, and will be reduced to one tag after the operation is complete.
     15 
     16 Distribute Tags
     17 ---------------
     18 
     19 This provides an additional feature to distribute the clients through
     20 the tags as evenly as possible.
     21 
     22 (The tags are filled left-to-right, looping back if necessary.)
     23 
     24 Eg, if there are 9 clients and 9 tags then each tag will have one
     25 client. If there are 19 clients, then 3 will be tagged onto tag 1, and
     26 2 will be tagged onto each of tags 2 to 9.
     27 
     28 Download
     29 --------
     30 * [dwm-reorganizetags-6.2.diff](dwm-reorganizetags-6.2.diff)
     31 * [dwm-distributetags.h](dwm-distributetags.h)
     32 
     33 Authors
     34 -------
     35 * Paul Baldaray - <paulbaldaray@gmail.com>
     36 * kleinbottle4 - <kleinbottle4@gmail.com>