mirror of
https://github.com/mintycube/dwm.git
synced 2024-10-22 14:05:45 +02:00
sed source files to end with 1 new line
This commit is contained in:
parent
c968fd9aae
commit
0733c39e0c
@ -1607,3 +1607,4 @@ static IPCCommand ipccommands[] = {
|
||||
#endif // XRDB_PATCH
|
||||
};
|
||||
#endif // IPC_PATCH
|
||||
|
||||
|
1
drw.c
1
drw.c
@ -687,3 +687,4 @@ drw_cur_free(Drw *drw, Cur *cursor)
|
||||
XFreeCursor(drw->dpy, cursor->cursor);
|
||||
free(cursor);
|
||||
}
|
||||
|
||||
|
1
drw.h
1
drw.h
@ -100,3 +100,4 @@ void drw_arrow(Drw *drw, int x, int y, unsigned int w, unsigned int h, int direc
|
||||
|
||||
/* Map functions */
|
||||
void drw_map(Drw *drw, Window win, int x, int y, unsigned int w, unsigned int h);
|
||||
|
||||
|
1
dwm.c
1
dwm.c
@ -4892,3 +4892,4 @@ main(int argc, char *argv[])
|
||||
XCloseDisplay(dpy);
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
|
@ -22,3 +22,4 @@ aspectresize(const Arg *arg)
|
||||
XRaiseWindow(dpy, c->win);
|
||||
resize(c, c->x, c->y, nw, nh, True);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void aspectresize(const Arg *arg);
|
||||
|
||||
|
@ -40,3 +40,4 @@ attachx(Client *c)
|
||||
#endif
|
||||
attach(c); // master (default)
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void attachx(Client *c);
|
||||
|
||||
|
@ -81,3 +81,4 @@ runautostart(void)
|
||||
free(path);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void runautostart(void);
|
||||
|
||||
|
@ -40,3 +40,4 @@ xinitvisual()
|
||||
cmap = DefaultColormap(dpy, screen);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
#define OPAQUE 0xffU
|
||||
|
||||
static void xinitvisual();
|
||||
|
||||
|
@ -4,3 +4,4 @@ togglealttag()
|
||||
selmon->alttag = !selmon->alttag;
|
||||
drawbar(selmon);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void togglealttag();
|
||||
|
||||
|
@ -91,3 +91,4 @@ wmclasscontains(Window win, const char *class, const char *name)
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
|
@ -2,3 +2,4 @@ static void managealtbar(Window win, XWindowAttributes *wa);
|
||||
static void spawnbar();
|
||||
static void unmanagealtbar(Window w);
|
||||
static int wmclasscontains(Window win, const char *class, const char *name);
|
||||
|
||||
|
@ -79,3 +79,4 @@ click_awesomebar(Bar *bar, Arg *arg, BarArg *a)
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
static int width_awesomebar(Bar *bar, BarArg *a);
|
||||
static int draw_awesomebar(Bar *bar, BarArg *a);
|
||||
static int click_awesomebar(Bar *bar, Arg *arg, BarArg *a);
|
||||
|
||||
|
@ -48,3 +48,4 @@ sigstatusbar(const Arg *arg)
|
||||
sigqueue(statuspid, SIGRTMIN+statussig, sv);
|
||||
#endif // BAR_DWMBLOCKS_SIGUSR1_PATCH
|
||||
}
|
||||
|
||||
|
@ -1,2 +1,3 @@
|
||||
static int getstatusbarpid();
|
||||
static void sigstatusbar(const Arg *arg);
|
||||
|
||||
|
@ -50,3 +50,4 @@ updatecurrentdesktop(void)
|
||||
long data[] = { i };
|
||||
XChangeProperty(dpy, root, netatom[NetCurrentDesktop], XA_CARDINAL, 32, PropModeReplace, (unsigned char *)data, 1);
|
||||
}
|
||||
|
||||
|
@ -4,3 +4,4 @@ static void setfloatinghint(Client *c);
|
||||
static void setnumdesktops(void);
|
||||
static void setviewport(void);
|
||||
static void updatecurrentdesktop(void);
|
||||
|
||||
|
@ -67,4 +67,3 @@ click_fancybar(Bar *bar, Arg *arg, BarArg *a)
|
||||
return ClkWinTitle;
|
||||
}
|
||||
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
static int width_fancybar(Bar *bar, BarArg *a);
|
||||
static int draw_fancybar(Bar *bar, BarArg *a);
|
||||
static int click_fancybar(Bar *bar, Arg *arg, BarArg *a);
|
||||
|
||||
|
@ -436,3 +436,4 @@ flextitlecalculate(
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
@ -8,3 +8,4 @@ static int flextitlecalculate(Monitor *m, int offx, int w, int passx, void(*tabf
|
||||
static int getschemefor(Monitor *m, int group, int activegroup);
|
||||
static int getselschemefor(int scheme);
|
||||
static Client *flextitledrawarea(Monitor *m, Client *c, int x, int r, int w, int max_clients, int tabscheme, int draw_tiled, int draw_hidden, int draw_floating, int passx, void(*tabfn)(Monitor *, Client *, int, int, int, int, Arg *arg, BarArg *barg), Arg *arg, BarArg *barg);
|
||||
|
||||
|
@ -35,3 +35,4 @@ keyrelease(XEvent *e)
|
||||
combo = 0;
|
||||
#endif // COMBO_PATCH
|
||||
}
|
||||
|
||||
|
@ -1,2 +1,3 @@
|
||||
static void keyrelease(XEvent *e);
|
||||
static void holdbar(const Arg *arg);
|
||||
|
||||
|
@ -108,3 +108,4 @@ drawstateindicator(Monitor *m, Client *c, unsigned int occ, int x, int y, int w,
|
||||
else
|
||||
drawindicator(m, c, occ, x, y, w, h, tag, filled, invert, tiledindicatortype);
|
||||
}
|
||||
|
||||
|
@ -18,3 +18,4 @@ enum {
|
||||
|
||||
static void drawindicator(Monitor *m, Client *c, unsigned int occ, int x, int y, int w, int h, unsigned int tag, int filled, int invert, int type);
|
||||
static void drawstateindicator(Monitor *m, Client *c, unsigned int occ, int x, int y, int w, int h, unsigned int tag, int filled, int invert);
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void layoutmenu(const Arg *arg);
|
||||
|
||||
|
@ -15,3 +15,4 @@ click_ltsymbol(Bar *bar, Arg *arg, BarArg *a)
|
||||
{
|
||||
return ClkLtSymbol;
|
||||
}
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
static int width_ltsymbol(Bar *bar, BarArg *a);
|
||||
static int draw_ltsymbol(Bar *bar, BarArg *a);
|
||||
static int click_ltsymbol(Bar *bar, Arg *arg, BarArg *a);
|
||||
|
||||
|
@ -119,3 +119,4 @@ drawpowerlinestatus(int xpos, char *stext, BarArg *barg)
|
||||
|
||||
return xpos - x;
|
||||
}
|
||||
|
||||
|
@ -9,3 +9,4 @@ static int draw_pwrl_status_es(Bar *bar, BarArg *a);
|
||||
static int click_pwrl_status(Bar *bar, Arg *arg, BarArg *a);
|
||||
static int drawpowerlinestatus(int x, char *stext, BarArg *a);
|
||||
static int widthpowerlinestatus(char *stext);
|
||||
|
||||
|
@ -104,3 +104,4 @@ click_pwrl_tags(Bar *bar, Arg *arg, BarArg *a)
|
||||
}
|
||||
return ClkTagBar;
|
||||
}
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
static int width_pwrl_tags(Bar *bar, BarArg *a);
|
||||
static int draw_pwrl_tags(Bar *bar, BarArg *a);
|
||||
static int click_pwrl_tags(Bar *bar, Arg *arg, BarArg *a);
|
||||
|
||||
|
@ -31,3 +31,4 @@ click_status(Bar *bar, Arg *arg, BarArg *a)
|
||||
{
|
||||
return ClkStatusText;
|
||||
}
|
||||
|
||||
|
@ -7,3 +7,4 @@ static int draw_status(Bar *bar, BarArg *a);
|
||||
static int draw_status_es(Bar *bar, BarArg *a);
|
||||
#endif // BAR_EXTRASTATUS_PATCH
|
||||
static int click_status(Bar *bar, Arg *arg, BarArg *a);
|
||||
|
||||
|
@ -265,3 +265,4 @@ status2dtextlength(char* stext)
|
||||
free(p);
|
||||
return w;
|
||||
}
|
||||
|
||||
|
@ -11,3 +11,4 @@ static int click_status2d(Bar *bar, Arg *arg, BarArg *a);
|
||||
#endif // BAR_STATUSCMD_PATCH
|
||||
static int drawstatusbar(BarArg *a, char *text);
|
||||
static int status2dtextlength(char *stext);
|
||||
|
||||
|
@ -15,3 +15,4 @@ click_stbutton(Bar *bar, Arg *arg, BarArg *a)
|
||||
{
|
||||
return ClkButton;
|
||||
}
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
static int width_stbutton(Bar *bar, BarArg *a);
|
||||
static int draw_stbutton(Bar *bar, BarArg *a);
|
||||
static int click_stbutton(Bar *bar, Arg *arg, BarArg *a);
|
||||
|
||||
|
@ -72,3 +72,4 @@ copyvalidchars(char *text, char *rawtext)
|
||||
}
|
||||
text[j] = '\0';
|
||||
}
|
||||
|
||||
|
@ -9,3 +9,4 @@ typedef struct {
|
||||
const char *cmd;
|
||||
int id;
|
||||
} StatusCmd;
|
||||
|
||||
|
@ -21,3 +21,4 @@ textw_wosc(char *s)
|
||||
|
||||
return sw;
|
||||
}
|
||||
|
||||
|
@ -195,3 +195,4 @@ wintosystrayicon(Window w)
|
||||
for (i = systray->icons; i && i->win != w; i = i->next);
|
||||
return i;
|
||||
}
|
||||
|
||||
|
@ -39,3 +39,4 @@ static void updatesystrayicongeom(Client *i, int w, int h);
|
||||
static void updatesystrayiconstate(Client *i, XPropertyEvent *ev);
|
||||
static Client *wintosystrayicon(Window w);
|
||||
|
||||
|
||||
|
@ -221,3 +221,4 @@ bartabcalculate(
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
@ -5,3 +5,4 @@ static int click_bartabgroups(Bar *bar, Arg *arg, BarArg *a);
|
||||
static void bartabdraw(Monitor *m, Client *c, int unused, int x, int w, int groupactive, Arg *arg, BarArg *barg);
|
||||
static void bartabclick(Monitor *m, Client *c, int passx, int x, int w, int unused, Arg *arg, BarArg *barg);
|
||||
static int bartabcalculate(Monitor *m, int offx, int w, int passx, void(*tabfn)(Monitor *, Client *, int, int, int, int, Arg *arg, BarArg *barg), Arg *arg, BarArg *barg);
|
||||
|
||||
|
@ -147,3 +147,4 @@ switchtag(const Arg *arg)
|
||||
toggleview (&new_arg);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2,3 +2,4 @@ static int width_taggrid(Bar *bar, BarArg *a);
|
||||
static int draw_taggrid(Bar *bar, BarArg *a);
|
||||
static int click_taggrid(Bar *bar, Arg *arg, BarArg *a);
|
||||
static void switchtag(const Arg *arg);
|
||||
|
||||
|
@ -18,3 +18,4 @@ tagicon(Monitor *m, int tag)
|
||||
#endif // BAR_ALTERNATIVE_TAGS_PATCH
|
||||
return tagicons[DEFAULT_TAGS][tagindex];
|
||||
}
|
||||
|
||||
|
@ -5,3 +5,4 @@ enum {
|
||||
};
|
||||
|
||||
static char * tagicon(Monitor *m, int tag);
|
||||
|
||||
|
@ -86,3 +86,4 @@ click_tags(Bar *bar, Arg *arg, BarArg *a)
|
||||
}
|
||||
return ClkTagBar;
|
||||
}
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
static int width_tags(Bar *bar, BarArg *a);
|
||||
static int draw_tags(Bar *bar, BarArg *a);
|
||||
static int click_tags(Bar *bar, Arg *arg, BarArg *a);
|
||||
|
||||
|
@ -66,3 +66,4 @@ int get_luminance(char *r)
|
||||
|
||||
return (0.299 * n[0] + 0.587 * n[1] + 0.114 * n[2]) / 2.55;
|
||||
}
|
||||
|
||||
|
@ -1,2 +1,3 @@
|
||||
static void get_vt_colors(void);
|
||||
static int get_luminance(char *rgb);
|
||||
|
||||
|
@ -48,4 +48,3 @@ click_wintitle(Bar *bar, Arg *arg, BarArg *a)
|
||||
return ClkWinTitle;
|
||||
}
|
||||
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
static int width_wintitle(Bar *bar, BarArg *a);
|
||||
static int draw_wintitle(Bar *bar, BarArg *a);
|
||||
static int click_wintitle(Bar *bar, Arg *arg, BarArg *a);
|
||||
|
||||
|
@ -43,3 +43,4 @@ calc_wintitle_floating(
|
||||
c = flextitledrawarea(m, m->clients, offx, r, w, clientsnfloating, SCHEMEFOR(GRP_FLOAT), 0, 0, 1, passx, tabfn, arg, barg);
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
@ -6,3 +6,4 @@ static int calc_wintitle_floating(
|
||||
void(*tabfn)(Monitor *, Client *, int, int, int, int, Arg *arg, BarArg *barg),
|
||||
Arg *arg, BarArg *barg
|
||||
);
|
||||
|
||||
|
@ -43,3 +43,4 @@ calc_wintitle_hidden(
|
||||
c = flextitledrawarea(m, m->clients, offx, r, w, clientsnhidden, SCHEMEFOR(GRP_HIDDEN), 0, 1, 0, passx, tabfn, arg, barg);
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
@ -6,3 +6,4 @@ static int calc_wintitle_hidden(
|
||||
void(*tabfn)(Monitor *, Client *, int, int, int, int, Arg *arg, BarArg *barg),
|
||||
Arg *arg, BarArg *barg
|
||||
);
|
||||
|
||||
|
@ -91,3 +91,4 @@ showhideclient(const Arg *arg)
|
||||
hide(c);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -3,3 +3,4 @@ static void show(Client *c);
|
||||
static void togglewin(const Arg *arg);
|
||||
static Client * prevtiled(Client *c);
|
||||
static void showhideclient(const Arg *arg);
|
||||
|
||||
|
@ -21,3 +21,4 @@ setcfact(const Arg *arg)
|
||||
c->cfact = f;
|
||||
arrange(selmon);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void setcfact(const Arg *arg);
|
||||
|
||||
|
@ -3,3 +3,4 @@ help(void)
|
||||
{
|
||||
return "usage: dwm [-hv] [-fn font] [-nb color] [-nf color] [-sb color] [-sf color]\n[-df font] [-dnf color] [-dnb color] [-dsf color] [-dsb color]\n";
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static char* help();
|
||||
|
||||
|
@ -47,3 +47,4 @@ comboview(const Arg *arg)
|
||||
focus(NULL);
|
||||
arrange(selmon);
|
||||
}
|
||||
|
||||
|
@ -3,3 +3,4 @@ static void keyrelease(XEvent *e);
|
||||
#endif // !BAR_HOLDBAR_PATCH
|
||||
static void combotag(const Arg *arg);
|
||||
static void comboview(const Arg *arg);
|
||||
|
||||
|
@ -26,3 +26,4 @@ autostart_exec()
|
||||
while (*++p);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void autostart_exec(void);
|
||||
|
||||
|
@ -15,3 +15,4 @@ cyclelayout(const Arg *arg)
|
||||
setlayout(&((Arg) { .v = &layouts[LENGTH(layouts) - 2] }));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void cyclelayout(const Arg *arg);
|
||||
|
||||
|
@ -36,3 +36,4 @@ updatemotifhints(Client *c)
|
||||
XFree(p);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -6,3 +6,4 @@
|
||||
#define MWM_DECOR_TITLE (1 << 3)
|
||||
|
||||
static void updatemotifhints(Client *c);
|
||||
|
||||
|
@ -14,3 +14,4 @@ distributetags(const Arg *arg)
|
||||
focus(NULL);
|
||||
arrange(selmon);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void distributetags(const Arg *arg);
|
||||
|
||||
|
@ -80,3 +80,4 @@ dragcfact(const Arg *arg)
|
||||
XUngrabPointer(dpy, CurrentTime);
|
||||
while (XCheckMaskEvent(dpy, EnterWindowMask, &ev));
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void dragcfact(const Arg *arg);
|
||||
|
||||
|
@ -229,3 +229,4 @@ dragmfact(const Arg *arg)
|
||||
XUngrabPointer(dpy, CurrentTime);
|
||||
while (XCheckMaskEvent(dpy, EnterWindowMask, &ev));
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void dragmfact(const Arg *arg);
|
||||
|
||||
|
@ -127,3 +127,4 @@ case $# in
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
|
@ -98,3 +98,4 @@ fake_signal(void)
|
||||
// No fake signal was sent, so proceed with update
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -11,3 +11,4 @@ static void tagex(const Arg *arg);
|
||||
static void toggletagex(const Arg *arg);
|
||||
static void tagallex(const Arg *arg);
|
||||
static int fake_signal(void);
|
||||
|
||||
|
@ -193,3 +193,4 @@ togglehorizontalexpand(const Arg *arg)
|
||||
else if (arg->i > 0) expand(EXPAND_RIGHT);
|
||||
else expand(EXPAND_LEFT | EXPAND_RIGHT);
|
||||
}
|
||||
|
||||
|
@ -6,3 +6,4 @@ void toggleverticalexpand(const Arg *arg);
|
||||
void togglehorizontalexpand(const Arg *arg);
|
||||
void exresize(const Arg *arg);
|
||||
void explace(const Arg *arg);
|
||||
|
||||
|
@ -16,3 +16,4 @@ togglefakefullscreen(const Arg *arg)
|
||||
setfullscreen(c, 1);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void togglefakefullscreen(const Arg *arg);
|
||||
|
||||
|
@ -192,3 +192,4 @@ getfloatpos(int pos, char pCh, int size, char sCh, int min_p, int max_s, int cp,
|
||||
*out_p = cp;
|
||||
*out_s = MAX(cs - 2*cbw, 1);
|
||||
}
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
static void floatpos(const Arg *arg);
|
||||
static void setfloatpos(Client *c, const char *floatpos);
|
||||
static void getfloatpos(int pos, char pCh, int size, char sCh, int min_p, int max_s, int cp, int cs, int cbw, int defgrid, int *out_p, int *out_s);
|
||||
|
||||
|
@ -99,3 +99,4 @@ tagandviewtoright(const Arg *arg)
|
||||
#endif // BAR_EWMHTAGS_PATCH
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -4,3 +4,4 @@ static void viewtoleft(const Arg *arg);
|
||||
static void viewtoright(const Arg *arg);
|
||||
static void tagandviewtoleft(const Arg *arg);
|
||||
static void tagandviewtoright(const Arg *arg);
|
||||
|
||||
|
@ -63,3 +63,4 @@ focusdir(const Arg *arg)
|
||||
restack(f->mon);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void focusdir(const Arg *arg);
|
||||
|
||||
|
@ -11,3 +11,4 @@ focusmaster(const Arg *arg)
|
||||
if (c)
|
||||
focus(c);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void focusmaster(const Arg *arg);
|
||||
|
||||
|
@ -13,3 +13,4 @@ focusurgent(const Arg *arg)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void focusurgent(const Arg *arg);
|
||||
|
||||
|
@ -38,3 +38,4 @@ fake_signal(void)
|
||||
// No fake signal was sent, so proceed with update
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -5,3 +5,4 @@ typedef struct {
|
||||
} Signal;
|
||||
|
||||
static int fake_signal(void);
|
||||
|
||||
|
@ -15,3 +15,4 @@ fullscreen(const Arg *arg)
|
||||
}
|
||||
togglebar(arg);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void fullscreen(const Arg *arg);
|
||||
|
||||
|
@ -353,3 +353,4 @@
|
||||
#if TILE_LAYOUT
|
||||
#include "layout_tile.c"
|
||||
#endif
|
||||
|
||||
|
@ -343,3 +343,4 @@
|
||||
#if TILE_LAYOUT
|
||||
#include "layout_tile.h"
|
||||
#endif
|
||||
|
||||
|
@ -81,3 +81,4 @@ inplacerotate(const Arg *arg)
|
||||
arrange(selmon);
|
||||
focus(c);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void inplacerotate(const Arg *arg);
|
||||
|
||||
|
@ -16,3 +16,4 @@ updateinset(const Arg *arg)
|
||||
for (Monitor *m = mons; m; m = m->next)
|
||||
setinset(m, *inset);
|
||||
}
|
||||
|
||||
|
@ -1,2 +1,3 @@
|
||||
static void setinset(Monitor *m, Inset inset);
|
||||
static void updateinset(const Arg *arg);
|
||||
|
||||
|
@ -108,3 +108,4 @@ setstatus(const Arg *arg)
|
||||
for (m = mons; m; m = m->next)
|
||||
drawbar(m);
|
||||
}
|
||||
|
||||
|
@ -4,3 +4,4 @@ static int handlexevent(struct epoll_event *ev);
|
||||
static void setlayoutsafe(const Arg *arg);
|
||||
static void setupepoll(void);
|
||||
static void setstatus(const Arg *arg);
|
||||
|
||||
|
@ -64,3 +64,4 @@ ipc_list_get_client(IPCClientList list, int fd)
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
@ -59,3 +59,4 @@ void ipc_list_remove_client(IPCClientList *list, IPCClient *c);
|
||||
IPCClient *ipc_list_get_client(IPCClientList list, int fd);
|
||||
|
||||
#endif // IPC_CLIENT_H_
|
||||
|
||||
|
@ -546,3 +546,4 @@ main(int argc, char *argv[])
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -1199,3 +1199,4 @@ ipc_handle_socket_epoll_event(struct epoll_event *ev)
|
||||
|
||||
return new_fd;
|
||||
}
|
||||
|
||||
|
@ -317,3 +317,4 @@ int ipc_handle_client_epoll_event(struct epoll_event *ev, Monitor *mons,
|
||||
int ipc_handle_socket_epoll_event(struct epoll_event *ev);
|
||||
|
||||
#endif /* IPC_H_ */
|
||||
|
||||
|
@ -133,3 +133,4 @@ nullterminate(char **str, size_t *len)
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -2,3 +2,4 @@ int normalizepath(const char *path, char **normal);
|
||||
int mkdirp(const char *path);
|
||||
int parentdir(const char *path, char **parent);
|
||||
int nullterminate(char **str, size_t *len);
|
||||
|
||||
|
@ -353,3 +353,4 @@ dump_error_message(yajl_gen gen, const char *reason)
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -63,3 +63,4 @@ int dump_focused_state_change_event(yajl_gen gen, const int mon_num,
|
||||
int dump_error_message(yajl_gen gen, const char *reason);
|
||||
|
||||
#endif // YAJL_DUMPS_H_
|
||||
|
||||
|
@ -141,3 +141,4 @@ setkeymode(const Arg *arg)
|
||||
clearcmd(&a);
|
||||
grabkeys();
|
||||
}
|
||||
|
||||
|
@ -19,3 +19,4 @@ static void setkeymode(const Arg *arg);
|
||||
static unsigned int cmdmod[4];
|
||||
static unsigned int keymode = INSERTMODE;
|
||||
static KeySym cmdkeysym[4];
|
||||
|
||||
|
@ -25,3 +25,4 @@ killunsel(const Arg *arg)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void killunsel(const Arg *arg);
|
||||
|
||||
|
@ -72,3 +72,4 @@ bstack(Monitor *m)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void bstack(Monitor *m);
|
||||
|
||||
|
@ -74,3 +74,4 @@ bstackhoriz(Monitor *m)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void bstackhoriz(Monitor *m);
|
||||
|
||||
|
@ -92,3 +92,4 @@ centeredfloatingmaster(Monitor *m)
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void centeredfloatingmaster(Monitor *m);
|
||||
|
||||
|
@ -157,3 +157,4 @@ centeredmaster(Monitor *m)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void centeredmaster(Monitor *m);
|
||||
|
||||
|
@ -71,3 +71,4 @@ col(Monitor *m)
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void col(Monitor *);
|
||||
|
||||
|
@ -64,3 +64,4 @@ deck(Monitor *m)
|
||||
resize(c, sx, sy, sw - (2*c->bw), sh - (2*c->bw), 0);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void deck(Monitor *m);
|
||||
|
||||
|
@ -49,3 +49,4 @@ getfacts(Monitor *m, int msize, int ssize, float *mf, float *sf, int *mr, int *s
|
||||
*sr = ssize - stotal; // the remainder (rest) of pixels after an even stack split
|
||||
}
|
||||
#endif // CFACTS_PATCH
|
||||
|
||||
|
@ -188,3 +188,4 @@ spiral(Monitor *m)
|
||||
fibonacci(m, 0);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -5,3 +5,4 @@ static void fibonacci(Monitor *m, int s);
|
||||
#if FIBONACCI_SPIRAL_LAYOUT
|
||||
static void spiral(Monitor *m);
|
||||
#endif // FIBONACCI_SPIRAL_LAYOUT
|
||||
|
||||
|
@ -888,3 +888,4 @@ incnstack(const Arg *arg)
|
||||
#endif // PERTAG_PATCH
|
||||
arrange(selmon);
|
||||
}
|
||||
|
||||
|
@ -118,3 +118,4 @@ static char tilesymb[] = {
|
||||
64, // "@",
|
||||
84, // "T",
|
||||
};
|
||||
|
||||
|
@ -96,3 +96,4 @@ gaplessgrid(Monitor *m)
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void gaplessgrid(Monitor *m);
|
||||
|
||||
|
@ -58,3 +58,4 @@ grid(Monitor *m)
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void grid(Monitor *m);
|
||||
|
||||
|
@ -101,3 +101,4 @@ horizgrid(Monitor *m) {
|
||||
#endif // VANITYGAPS_PATCH
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void horizgrid(Monitor *m);
|
||||
|
||||
|
@ -35,3 +35,4 @@ monocle(Monitor *m)
|
||||
resize(c, m->wx, m->wy, m->ww - 2 * c->bw, m->wh - 2 * c->bw, 0);
|
||||
}
|
||||
#endif // VANITYGAPS_PATCH
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void monocle(Monitor *m);
|
||||
|
||||
|
@ -101,3 +101,4 @@ nrowgrid(Monitor *m)
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void nrowgrid(Monitor *m);
|
||||
|
||||
|
@ -71,3 +71,4 @@ tile(Monitor *m)
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void tile(Monitor *);
|
||||
|
||||
|
@ -67,3 +67,4 @@ togglehorizontalmax(const Arg *arg)
|
||||
maximize(selmon->wx, selmon->sel->y, selmon->ww - 2 * borderpx, selmon->sel->h);
|
||||
}
|
||||
#endif // SETBORDERPX_PATCH
|
||||
|
||||
|
@ -2,3 +2,4 @@ static void maximize(int x, int y, int w, int h);
|
||||
static void togglemax(const Arg *arg);
|
||||
static void toggleverticalmax(const Arg *arg);
|
||||
static void togglehorizontalmax(const Arg *arg);
|
||||
|
||||
|
@ -27,3 +27,4 @@ moveplace(const Arg *arg)
|
||||
resize(c, nx, ny, nw, nh, True);
|
||||
XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, nw/2, nh/2);
|
||||
}
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
enum { WIN_NW, WIN_N, WIN_NE, WIN_W, WIN_C, WIN_E, WIN_SW, WIN_S, WIN_SE };
|
||||
|
||||
static void moveplace(const Arg *arg);
|
||||
|
||||
|
@ -62,3 +62,4 @@ moveresize(const Arg *arg) {
|
||||
XWarpPointer(dpy, None, None, 0, 0, 0, 0, nmx, nmy);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void moveresize(const Arg *arg);
|
||||
|
||||
|
@ -48,3 +48,4 @@ movestack(const Arg *arg)
|
||||
arrange(selmon);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void movestack(const Arg *arg);
|
||||
|
||||
|
@ -142,3 +142,4 @@ void mpdcontrol()
|
||||
mpd_connection_free(conn);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,2 +1,3 @@
|
||||
static void mpdchange(const Arg *direction);
|
||||
static void mpdcontrol();
|
||||
|
||||
|
@ -5,3 +5,4 @@ togglenomodbuttons(const Arg *arg)
|
||||
if (selmon->sel)
|
||||
grabbuttons(selmon->sel, 1);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void togglenomodbuttons(const Arg *arg);
|
||||
|
||||
|
@ -75,3 +75,4 @@ pertagview(const Arg *arg)
|
||||
togglebar(NULL);
|
||||
#endif // PERTAGBAR_PATCH
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void pertagview(const Arg *arg);
|
||||
|
||||
|
@ -150,3 +150,4 @@ recttoclient(int x, int y, int w, int h)
|
||||
}
|
||||
return r;
|
||||
}
|
||||
|
||||
|
@ -4,3 +4,4 @@
|
||||
static void moveorplace(const Arg *arg);
|
||||
static void placemouse(const Arg *arg);
|
||||
static Client *recttoclient(int x, int y, int w, int h);
|
||||
|
||||
|
@ -69,3 +69,4 @@ pushdown(const Arg *arg)
|
||||
focus(sel);
|
||||
arrange(selmon);
|
||||
}
|
||||
|
||||
|
@ -2,3 +2,4 @@ static Client * nextc(Client *c, float f);
|
||||
static Client * prevc(Client *c, float f);
|
||||
static void pushup(const Arg *arg);
|
||||
static void pushdown(const Arg *arg);
|
||||
|
||||
|
@ -41,3 +41,4 @@ pushdown(const Arg *arg)
|
||||
focus(sel);
|
||||
arrange(selmon);
|
||||
}
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
Client * prevt(Client *c);
|
||||
static void pushup(const Arg *arg);
|
||||
static void pushdown(const Arg *arg);
|
||||
|
||||
|
@ -25,3 +25,4 @@ reorganizetags(const Arg *arg)
|
||||
selmon->tagset[selmon->seltags] = selmon->sel->tags;
|
||||
arrange(selmon);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void reorganizetags(const Arg *arg);
|
||||
|
||||
|
@ -13,3 +13,4 @@ sigterm(int unused)
|
||||
Arg a = {.i = 0};
|
||||
quit(&a);
|
||||
}
|
||||
|
||||
|
@ -1,2 +1,3 @@
|
||||
static void sighup(int unused);
|
||||
static void sigterm(int unused);
|
||||
|
||||
|
@ -101,3 +101,4 @@ riospawnsync(const Arg *arg)
|
||||
if (riodraw(NULL, slopspawnstyle))
|
||||
riopid = spawncmd(arg);
|
||||
}
|
||||
|
||||
|
@ -3,3 +3,4 @@ static void rioposition(Client *c, int x, int y, int w, int h);
|
||||
static void rioresize(const Arg *arg);
|
||||
static void riospawn(const Arg *arg);
|
||||
static void riospawnsync(const Arg *arg);
|
||||
|
||||
|
@ -50,3 +50,4 @@ rotatestack(const Arg *arg)
|
||||
restack(selmon);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
static void enqueue(Client *c);
|
||||
static void enqueuestack(Client *c);
|
||||
static void rotatestack(const Arg *arg);
|
||||
|
||||
|
@ -48,3 +48,4 @@ void drawroundedcorners(Client *c)
|
||||
XFreePixmap(dpy, mask);
|
||||
XFreeGC(dpy, shape_gc);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void drawroundedcorners(Client *c);
|
||||
|
||||
|
@ -74,3 +74,4 @@ togglescratch(const Arg *arg)
|
||||
spawn(&sparg);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -6,3 +6,4 @@ typedef struct {
|
||||
static void removescratch(const Arg *arg);
|
||||
static void setscratch(const Arg *arg);
|
||||
static void togglescratch(const Arg *arg);
|
||||
|
||||
|
@ -69,3 +69,4 @@ scratchpad_show_first(void)
|
||||
if (c)
|
||||
scratchpad_show_client(c);
|
||||
}
|
||||
|
||||
|
@ -6,3 +6,4 @@ static void scratchpad_remove();
|
||||
static void scratchpad_show();
|
||||
static void scratchpad_show_client(Client *c);
|
||||
static void scratchpad_show_first(void);
|
||||
|
||||
|
@ -66,3 +66,4 @@ void self_restart(const Arg *arg)
|
||||
|
||||
execv(argv[0], argv);
|
||||
}
|
||||
|
||||
|
@ -1,2 +1,3 @@
|
||||
char *get_dwm_path();
|
||||
void self_restart(const Arg *arg);
|
||||
|
||||
|
@ -42,3 +42,4 @@ setborderpx(const Arg *arg)
|
||||
}
|
||||
arrange(selmon);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void setborderpx(const Arg *arg);
|
||||
|
||||
|
@ -16,3 +16,4 @@ shiftview(const Arg *arg)
|
||||
|
||||
view(&shifted);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void shiftview(const Arg *arg);
|
||||
|
||||
|
@ -40,3 +40,4 @@ shiftviewclients(const Arg *arg)
|
||||
|
||||
view(&shifted);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void shiftviewclients(const Arg *arg);
|
||||
|
||||
|
@ -22,3 +22,4 @@ checkfloatingrules(Client *c)
|
||||
if (ch.res_name)
|
||||
XFree(ch.res_name);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void checkfloatingrules(Client *c);
|
||||
|
||||
|
@ -13,3 +13,4 @@ sortscreens(XineramaScreenInfo *screens, int n)
|
||||
}
|
||||
XFree(screen);
|
||||
}
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
#define RIGHTOF(a,b) (a.y_org > b.y_org) || ((a.y_org == b.y_org) && (a.x_org > b.x_org))
|
||||
|
||||
static void sortscreens(XineramaScreenInfo *screens, int n);
|
||||
|
||||
|
@ -110,3 +110,4 @@ stackpos(const Arg *arg)
|
||||
return arg->i;
|
||||
#endif // BAR_WINTITLEACTIONS_PATCH
|
||||
}
|
||||
|
||||
|
@ -8,3 +8,4 @@
|
||||
static void focusstack(const Arg *arg);
|
||||
static void pushstack(const Arg *arg);
|
||||
static int stackpos(const Arg *arg);
|
||||
|
||||
|
@ -6,3 +6,4 @@ togglesticky(const Arg *arg)
|
||||
selmon->sel->issticky = !selmon->sel->issticky;
|
||||
arrange(selmon);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void togglesticky(const Arg *arg);
|
||||
|
||||
|
@ -203,3 +203,4 @@ swallowingclient(Window w)
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
@ -5,3 +5,4 @@ static Client *swallowingclient(Window w);
|
||||
static Client *termforwin(const Client *c);
|
||||
static void unswallow(Client *c);
|
||||
static pid_t winpid(Window w);
|
||||
|
||||
|
@ -19,3 +19,4 @@ swapfocus(const Arg *arg)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void swapfocus(const Arg *arg);
|
||||
|
||||
|
@ -20,3 +20,4 @@ swaptags(const Arg *arg)
|
||||
focus(NULL);
|
||||
arrange(selmon);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void swaptags(const Arg *arg);
|
||||
|
||||
|
@ -26,3 +26,4 @@ switchcol(const Arg *arg)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void switchcol(const Arg *arg);
|
||||
|
||||
|
@ -130,3 +130,4 @@ tabmode(const Arg *arg)
|
||||
selmon->showtab = (selmon->showtab + 1 ) % showtab_nmodes;
|
||||
arrange(selmon);
|
||||
}
|
||||
|
||||
|
@ -2,3 +2,4 @@ static void drawtab(Monitor *m);
|
||||
static void drawtabs(void);
|
||||
static void focuswin(const Arg* arg);
|
||||
static void tabmode(const Arg *arg);
|
||||
|
||||
|
@ -23,3 +23,4 @@ tagall(const Arg *arg)
|
||||
}
|
||||
arrange(selmon);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void tagall(const Arg *arg);
|
||||
|
||||
|
@ -46,3 +46,4 @@ tagallmon(const Arg *arg)
|
||||
focus(NULL);
|
||||
arrange(NULL);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void tagallmon(const Arg *arg);
|
||||
|
||||
|
@ -41,3 +41,4 @@ tagothermon(const Arg *arg, int dir)
|
||||
arrange(newmon);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -6,3 +6,4 @@ static void tagprevmonex(const Arg *arg);
|
||||
static void tagnextmon(const Arg *arg);
|
||||
static void tagprevmon(const Arg *arg);
|
||||
static void tagothermon(const Arg *arg, int dir);
|
||||
|
||||
|
@ -72,3 +72,4 @@ tagswapmon(const Arg *arg)
|
||||
focus(NULL);
|
||||
arrange(NULL);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void tagswapmon(const Arg *arg);
|
||||
|
||||
|
@ -36,3 +36,4 @@ resizemousescroll(const Arg *arg)
|
||||
focus(NULL);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void resizemousescroll(const Arg *arg);
|
||||
|
||||
|
@ -15,3 +15,4 @@ togglefullscreen(const Arg *arg)
|
||||
setfullscreen(c, !c->isfullscreen);
|
||||
#endif // FAKEFULLSCREEN_CLIENT_PATCH
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void togglefullscreen(const Arg *arg);
|
||||
|
||||
|
@ -31,3 +31,4 @@ transfer(const Arg *arg)
|
||||
}
|
||||
arrange(selmon);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void transfer(const Arg *arg);
|
||||
|
||||
|
@ -23,3 +23,4 @@ transferall(const Arg *arg)
|
||||
selmon->nmaster = nstackclients;
|
||||
arrange(selmon);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void transferall(const Arg *arg);
|
||||
|
||||
|
@ -12,3 +12,4 @@ unfloatvisible(const Arg *arg)
|
||||
else
|
||||
arrange(selmon);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void unfloatvisible(const Arg *arg);
|
||||
|
||||
|
@ -196,3 +196,4 @@ getgaps(Monitor *m, int *oh, int *ov, int *ih, int *iv, unsigned int *nc)
|
||||
*nc = n; // number of clients
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -17,3 +17,4 @@ static void setgaps(int oh, int ov, int ih, int iv);
|
||||
#if IPC_PATCH || DWMC_PATCH
|
||||
static void setgapsex(const Arg *arg);
|
||||
#endif // IPC_PATCH | DWMC_PATCH
|
||||
|
||||
|
@ -35,3 +35,4 @@ warp(const Client *c)
|
||||
|
||||
XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w / 2, c->h / 2);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void warp(const Client *c);
|
||||
|
||||
|
@ -18,3 +18,4 @@ winview(const Arg* arg)
|
||||
a.ui = c->tags;
|
||||
view(&a);
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static void winview(const Arg* arg);
|
||||
|
||||
|
@ -65,3 +65,4 @@ click_xkb(Bar *bar, Arg *arg, BarArg *a)
|
||||
{
|
||||
return ClkXKB;
|
||||
}
|
||||
|
||||
|
@ -5,3 +5,4 @@ static void xkbeventnotify(XEvent *e);
|
||||
static int width_xkb(Bar *bar, BarArg *a);
|
||||
static int draw_xkb(Bar *bar, BarArg *a);
|
||||
static int click_xkb(Bar *bar, Arg *arg, BarArg *a);
|
||||
|
||||
|
@ -125,3 +125,4 @@ xrdb(const Arg *arg)
|
||||
focus(NULL);
|
||||
arrange(NULL);
|
||||
}
|
||||
|
||||
|
@ -19,3 +19,4 @@
|
||||
static void loadxrdb(void);
|
||||
static void xrdb(const Arg *arg);
|
||||
|
||||
|
||||
|
@ -11,3 +11,4 @@ findbefore(Client *c) {
|
||||
for (p = c->mon->clients; p && p->next != c; p = p->next);
|
||||
return p;
|
||||
}
|
||||
|
||||
|
@ -1 +1,2 @@
|
||||
static Client *findbefore(Client *c);
|
||||
|
||||
|
@ -1257,3 +1257,4 @@
|
||||
* This can be optionally disabled in favour of other layouts.
|
||||
*/
|
||||
#define MONOCLE_LAYOUT 1
|
||||
|
||||
|
@ -40,3 +40,4 @@ int main(void) {
|
||||
XCloseDisplay(d);
|
||||
exit(0);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user