dwm

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

nomodbuttons.c (125B)


      1 void
      2 togglenomodbuttons(const Arg *arg)
      3 {
      4 	nomodbuttons = !nomodbuttons;
      5 	if (selmon->sel)
      6 		grabbuttons(selmon->sel, 1);
      7 }
      8