A Simple X Image Viewer
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

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. };