diff options
Diffstat (limited to 'commands.h')
-rw-r--r-- | commands.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -5,9 +5,9 @@ typedef struct { } command_t; static command_t commands[] = { - /* key reload? command, '#' is replaced by filename */ - { XK_a, True, "jpegtran -rotate 270 -copy all -outfile # #" }, - { XK_s, True, "jpegtran -rotate 90 -copy all -outfile # #" }, - { XK_A, True, "mogrify -rotate -90 #" }, - { XK_S, True, "mogrify -rotate +90 #" } + /* 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 #" } }; |