Merged commands.h into config.h

This commit is contained in:
Bert
2011-04-14 12:00:35 +02:00
parent 75c79bef6f
commit c58307ba38
3 changed files with 33 additions and 29 deletions

View File

@ -1,13 +0,0 @@
typedef struct {
KeySym ksym;
Bool reload;
const char *cmdline;
} command_t;
static command_t commands[] = {
/* ctrl-... reload? command, '#' is replaced by filename */
{ XK_comma, True, "jpegtran -rotate 270 -copy all -outfile # #" },
{ XK_period, True, "jpegtran -rotate 90 -copy all -outfile # #" },
{ XK_less, True, "mogrify -rotate -90 #" },
{ XK_greater, True, "mogrify -rotate +90 #" }
};