dwm

Kris's build of dwm
git clone git clone https://git.krisyotam.com/krisyotam/dwm.git
Log | Files | Refs | README | LICENSE

shifttagclients.c (187B)


      1 /* Sends a window to the next/prev tag that has a client, else it moves it to the next/prev one. */
      2 void
      3 shifttagclients(const Arg *arg)
      4 {
      5 	Arg shifted = shift(arg, 1);
      6 	tag(&shifted);
      7 }