My build of nnn with minor changes
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

10 lines
226 B

  1. /* Configuration */
  2. struct assoc assocs[] = {
  3. { "\\.(avi|mp4|mkv|mp3|ogg)$", "mplayer" },
  4. { "\\.(png|jpg|gif)$", "feh" },
  5. { "\\.(html|svg)$", "firefox" },
  6. { "\\.pdf$", "mupdf" },
  7. { "\\.sh$", "sh" },
  8. { ".*", "less" },
  9. };