summaryrefslogtreecommitdiffstats
path: root/commands.h
diff options
context:
space:
mode:
authorBert <ber.t@gmx.com>2011-03-09 10:08:43 +0100
committerBert <ber.t@gmx.com>2011-03-09 10:08:43 +0100
commita82c45431bd31bfedaad00d77cc2ab4c772774d0 (patch)
treec3428f470a085182123862bfb9f3d1d495dc8d1d /commands.h
parent00d4b0f7cf6742a66f2bac262d5a3b3a9d0cc275 (diff)
downloadnsxiv-a82c45431bd31bfedaad00d77cc2ab4c772774d0.tar.zst
Use ctrl for ext cmds, disable them in config.h
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 #" }
};