sites

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

index.md (1090B)


      1 nametag
      2 =======
      3 
      4 Description
      5 -----------
      6 This patch allows you to change the names of dwm's tags while it's running. By
      7 default there is a 16 byte limit on tag names, and it uses dmenu to prompt for
      8 tag names. The 6.1 patch is for the current tip
      9 (cdec9782a1789bd5c3a84772fd59abb9da288597). It works with 6.0 but you should
     10 add -D\_POSIX\_C\_SOURCE=2 to CPPFLAGS or you will get implicit delcaration
     11 warnings for popen and pclose.
     12 
     13 The `prepend` version prepends the tag name with a short string which is used
     14 as a format string for `sprintf` which gets the tag number as the argument. By
     15 default a tag name "foo" given to tag 5 will become tag "5:foo".
     16 
     17 Download
     18 --------
     19 * [dwm-nametag-prepend-6.2.diff](dwm-nametag-prepend-6.2.diff)
     20 * [dwm-nametag-6.1.diff](dwm-nametag-6.1.diff)
     21 * [dwm-nametag-prepend-6.1.diff](dwm-nametag-prepend-6.1.diff)
     22 * [dwm-nametag-5.7.2.diff](dwm-nametag-5.7.2.diff)
     23 
     24 Author
     25 ------
     26 * Evan Gates (emg) <evan.gates@gmail.com>
     27 * prepend version by [Ondřej Grover](mailto:ondrej.grover@gmail.com)
     28 * Cédric Macquat <cedric@vouivre.org> (nametag-prepend 6.2 port)