dwm

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

shiftswaptags.c (151B)


      1 /* swaps "tags" (all the clients) with the next/prev tag. */
      2 void
      3 shiftswaptags(const Arg *arg)
      4 {
      5 	Arg shifted = shift(arg, 0);
      6 	swaptags(&shifted);
      7 }