aboutsummaryrefslogtreecommitdiffstats
path: root/commands.h
diff options
context:
space:
mode:
Diffstat (limited to 'commands.h')
-rw-r--r--commands.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/commands.h b/commands.h
index cb14fe6..ce00858 100644
--- a/commands.h
+++ b/commands.h
@@ -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 #" }
};