Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1.  
  2. static void focusminimized(const char *args[]);
  3. {
  4. Client *c;
  5.  
  6. if (!sel)
  7. return;
  8.  
  9. for (c = c->minimized; c && !isvisible(c); c = c->next);
  10.  
  11. if (!c)
  12. for (c = clients; c && (!isvisible(c); c = c->next);
  13.  
  14. if (c)
  15. focues(c);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement