sites

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

index.md (929B)


      1 rotatetags
      2 ======
      3 
      4 Description
      5 -----------
      6 This patch provides the ability to rotate the tagset left / right.
      7 It implements a new function rotatetags which modifies the current tagset.
      8 It accepts the following values:
      9 
     10 * A positive int to rotate the tagset "up", i.e. +1 moves the selection
     11   from tag 1 to tag 2.
     12 
     13 * A negative int to rotate the tagset "down", i.e. -1 moves the selection
     14   from tag 2 to tag 1.
     15 
     16 If the tag would be shifted off the end, i.e. rotating tag 9 up, it
     17 will rotate back to tag 1.
     18 
     19 Default key bindings
     20 --------------------
     21 	 Key        Argument   Description
     22 	-----------------------------------
     23 	 Mod-Right  +1         Rotate tagset "up".
     24 	 Mod-Left   -1         Rotate tagset "down".
     25 
     26 Download
     27 --------
     28 * [dwm-rotatetags-6.2.diff](dwm-rotatetags-6.2.diff)
     29 * [dwm-rotatetags-20210723-cb3f58a.diff](dwm-rotatetags-20210723-cb3f58a.diff)
     30 
     31 Author
     32 ------
     33 * Sam Leonard (tritoke) <tritoke@protonmail.com>