dwm

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

shifttag.c (122B)


      1 /* Sends a window to the next/prev tag */
      2 void
      3 shifttag(const Arg *arg)
      4 {
      5 	Arg shifted = shift(arg, 0);
      6 	tag(&shifted);
      7 }