My build of nnn with minor changes
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.
 
 
 
 
 
 

13 line
272 B

  1. #define CWD "cwd: "
  2. #define CURSR " > "
  3. #define EMPTY " "
  4. struct assoc assocs[] = {
  5. { "\\.(avi|mp4|mkv|mp3|ogg|flac)$", "mplayer" },
  6. { "\\.(png|jpg|gif)$", "feh" },
  7. { "\\.(html|svg)$", "firefox" },
  8. { "\\.pdf$", "mupdf" },
  9. { "\\.sh$", "sh" },
  10. { ".*", "less" },
  11. };