fix license, ipc indentation change

This commit is contained in:
speedie 2022-10-06 08:24:51 +02:00
parent 1f9641927e
commit ba7887172f
2 changed files with 12 additions and 12 deletions

View file

@ -17,7 +17,7 @@ MIT/X Consortium License
© 2015-2016 Eric Pruitt <eric.pruitt@gmail.com> © 2015-2016 Eric Pruitt <eric.pruitt@gmail.com>
© 2016-2017 Markus Teich <markus.teich@stusta.mhn.de> © 2016-2017 Markus Teich <markus.teich@stusta.mhn.de>
© 2020-2022 Chris Down <chris@chrisdown.name> © 2020-2022 Chris Down <chris@chrisdown.name>
© 2010-2022speedie <speedie@duck.com> © 2010-2022 speedie <speedie@duck.com>
Permission is hereby granted, free of charge, to any person obtaining a Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"), copy of this software and associated documentation files (the "Software"),

22
ipc.h
View file

@ -10,17 +10,17 @@
static char *ipcsockpath = "/tmp/speedwm.sock"; static char *ipcsockpath = "/tmp/speedwm.sock";
static IPCCommand ipccommands[] = { static IPCCommand ipccommands[] = {
IPCCOMMAND( view, 1, { ARG_TYPE_UINT } ), IPCCOMMAND(view, 1, { ARG_TYPE_UINT } ),
IPCCOMMAND( tagmon, 1, { ARG_TYPE_UINT } ), IPCCOMMAND(tagmon, 1, { ARG_TYPE_UINT } ),
IPCCOMMAND( focusmon, 1, { ARG_TYPE_SINT } ), IPCCOMMAND(focusmon, 1, { ARG_TYPE_SINT } ),
IPCCOMMAND( focusstackvis, 1, { ARG_TYPE_SINT } ), IPCCOMMAND(focusstackvis, 1, { ARG_TYPE_SINT } ),
IPCCOMMAND( zoom, 1, { ARG_TYPE_NONE } ), IPCCOMMAND(zoom, 1, { ARG_TYPE_NONE } ),
IPCCOMMAND( incnmaster, 1, { ARG_TYPE_SINT } ), IPCCOMMAND(incnmaster, 1, { ARG_TYPE_SINT } ),
IPCCOMMAND( killclient, 1, { ARG_TYPE_SINT } ), IPCCOMMAND(killclient, 1, { ARG_TYPE_SINT } ),
IPCCOMMAND( togglefloating, 1, { ARG_TYPE_NONE } ), IPCCOMMAND(togglefloating, 1, { ARG_TYPE_NONE } ),
IPCCOMMAND( setmfact, 1, { ARG_TYPE_FLOAT } ), IPCCOMMAND(setmfact, 1, { ARG_TYPE_FLOAT } ),
IPCCOMMAND( setlayoutsafe, 1, { ARG_TYPE_PTR } ), IPCCOMMAND(setlayoutsafe, 1, { ARG_TYPE_PTR } ),
IPCCOMMAND( quit, 1, { ARG_TYPE_NONE } ) IPCCOMMAND(quit, 1, { ARG_TYPE_NONE } )
}; };