A Simple X Image Viewer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
436 B

  1. typedef struct {
  2. KeySym ksym;
  3. Bool reload;
  4. const char *cmdline;
  5. } command_t;
  6. static command_t commands[] = {
  7. /* ctrl-... reload? command, '#' is replaced by filename */
  8. { XK_comma, True, "jpegtran -rotate 270 -copy all -outfile # #" },
  9. { XK_period, True, "jpegtran -rotate 90 -copy all -outfile # #" },
  10. { XK_less, True, "mogrify -rotate -90 #" },
  11. { XK_greater, True, "mogrify -rotate +90 #" }
  12. };