X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=scrotwm.c;h=1880c6a13fffc387480cc489d850e78d447101de;hb=4fbc11b6144a69756ff198dd539232c59f48603c;hp=b86d93e8c33ea1858d87eb1b3695fe9c6e118bc9;hpb=744ee6bdfd19dcedc59647b05a0ce6caf7d8c04c;p=spectrwm.git diff --git a/scrotwm.c b/scrotwm.c index b86d93e..1880c6a 100644 --- a/scrotwm.c +++ b/scrotwm.c @@ -117,20 +117,20 @@ TAILQ_HEAD(ws_win_list, ws_win); /* define work spaces */ #define SWM_WS_MAX (10) struct workspace { - int visible; /* workspace visible */ + int visible; /* workspace visible */ struct ws_win *focus; /* which win has focus */ - int winno; /* total nr of windows */ - struct ws_win_list winlist; + int winno; /* total nr of windows */ + struct ws_win_list winlist; } ws[SWM_WS_MAX]; int current_ws = 0; /* args to functions */ union arg { - int id; + int id; #define SWM_ARG_ID_FOCUSNEXT (0) #define SWM_ARG_ID_FOCUSPREV (1) #define SWM_ARG_ID_FOCUSMAIN (2) - char **argv; + char **argv; }; void