dvtm

Fork of dvtm, a minimal terminal multiplexer
git clone git://git.laack.co/dvtm.git
Log | Files | Refs | README | LICENSE

fullscreen.c (135B)


      1 static void fullscreen(void)
      2 {
      3 	for (Client *c = nextvisible(clients); c; c = nextvisible(c->next))
      4 		resize(c, wax, way, waw, wah);
      5 }