]> git.phdru.name Git - dotfiles.git/blob - .mc/mc.ext
Feat(recode-filenames-recursive): Allow to omit parameters
[dotfiles.git] / .mc / mc.ext
1 # Midnight Commander 3.0 extension file
2 # Warning: Structure of this file has changed completely with version 3.0
3 #
4 # All lines starting with # or empty lines are thrown away.
5 # Lines starting in the first column should have following format:
6 #
7 # keyword/descNL, i.e. everything after keyword/ until new line is desc
8 #
9 # keyword can be:
10 #
11 #    shell (desc is, when starting with a dot, any extension (no wildcars),
12 #          i.e. matches all the files *desc . Example: .tar matches *.tar;
13 #          if it doesn't start with a dot, it matches only a file of that name)
14 #
15 #    regex (desc is an extended regular expression)
16 #          Please note that we are using the GNU regex library and thus
17 #          \| matches the literal | and | has special meaning (or) and
18 #          () have special meaning and \( \) stand for literal ( ).
19 #
20 #    type  (file matches this if `file %f` matches regular expression desc
21 #          (the filename: part from `file %f` is removed))
22 #
23 #    directory (matches any directory matching regular expression desc)
24 #
25 #    include (matches an include directive)
26 #
27 #    default (matches any file no matter what desc is)
28 #
29 # Other lines should start with a space or tab and should be in the format:
30 #
31 # keyword=commandNL (with no spaces around =), where keyword should be:
32 #
33 #    Open (if the user presses Enter or doubleclicks it),
34 #
35 #    View (F3), Edit (F4)
36 #
37 #    Include is the keyword used to add any further entries from an include/
38 #    section
39 #
40 # command is any one-line shell command, with the following substitutions:
41 #
42 # %% -> % character
43 # %p -> name of the current file (without path, but pwd is its path)
44 # %f -> name of the current file. Unlike %p, if file is located on a
45 #       non-local virtual filesystem, i.e. either tarfs or ftpfs,
46 #       then the file will be temporarily copied into a local directory
47 #       and %f will be the full path to this local temporal file.
48 #       If you don't want to get a local copy and want to get the
49 #       virtual fs path (like /#ftp:ftp.cvut.cz/pub/hungry/xword), then
50 #       use %d/%p instead of %f.
51 # %d -> name of the current directory (pwd, without trailing slash)
52 # %s -> "selected files", i.e. space separated list of tagged files if any
53 #       or name of the current file
54 # %t -> list of tagged files
55 # %u -> list of tagged files (they'll be untaged after the command)
56 #
57 # (If these 6 letters are in uppercase, they refer to the other panel.
58 # But you shouldn't have to use it in this file.)
59 #
60 #
61 # %cd -> the rest is a path mc should change into (cd won't work, since it's
62 #       a child process).  %cd handles even vfs names.
63 #
64 # %view -> the command you type will be piped into mc's internal file viewer
65 #       if you type only the %view and no command, viewer will load %f file
66 #       instead (i.e. no piping, so it is different to %view cat %f)
67 #       %view may be directly followed by {} with a list of any of
68 #       ascii (Ascii mode), hex (Hex mode), nroff (color highlighting for
69 #       text using backspace for bold and underscore) and unform
70 #       (no highlighting for nroff sequences) separated by commas.
71 #
72 # %var -> You use it like this: %var{VAR:default}.  This macro will expand
73 #       to the value of the VAR variable in the environment if it's set
74 #       otherwise the value in default will be used.  This is similar to
75 #       the Bourne shell ${VAR-default} construct.
76 #
77 # Rules are applied from top to bottom, thus the order is important.
78 # If some actions are missing, search continues as if this target didn't
79 # match (i.e. if a file matches the first and second entry and View action
80 # is missing in the first one, then on pressing F3 the View action from
81 # the second entry will be used. default should catch all the actions.
82 #
83 # Any new entries you develop for you are always welcome if they are
84 # useful on more than one system.  You can post your modifications
85 # as tickets at www.midnight-commander.org
86
87
88 ### Changes ###
89 #
90 # Reorganization: 2000-05-01 Michal Svec <rebel@penguin.cz>
91
92
93 ### TODO ###
94 #
95 # Postscript    Open: ps2svga [gs -DEVICE=jpeg|zgv or something]
96 # Images                asciiview
97 #
98 # All X Apps    [Nothing/Warning] if no DISPLAY
99 # Not found     [Default/Warning]
100 # Empty Output  [Default/Warning]
101 # Edit:         CopyOut+EDIT+CopyIn
102 # Security      Check gzip/bzip EDIT (mktemp)
103 #
104 # Maybe:        Open/XOpen/GOpen/KOpen/... for Console/X/GNOME/KDE/etc.
105
106
107 ### GIT Repo ###
108 # gitfs changeset
109 regex/^\[git\]
110         Open=%cd %p/changesetfs://
111         View=%cd %p/patchsetfs://
112
113 ### Archives ###
114
115 # .tgz, .tpz, .tar.gz, .tar.z, .tar.Z, .ipk
116 regex/\.t([gp]?z|ar\.g?[zZ])$|\.ipk|\.gem$
117         Open=%cd %p/utar://
118         View=%view{ascii} gzip -dc %f 2>/dev/null | tar tvvf -
119
120 regex/\.tar\.bz$
121         # Open=%cd %p/utar://
122         View=%view{ascii} bzip -dc %f 2>/dev/null | tar tvvf -
123
124 regex/\.t(ar\.bz2|bz2?|b2)$
125         Open=%cd %p/utar://
126         View=%view{ascii} bzip2 -dc %f 2>/dev/null | tar tvvf -
127
128 # .tar.lzma, .tlz
129 regex/\.t(ar\.lzma|lz)$
130         Open=%cd %p/utar://
131         View=%view{ascii} lzma -dc %f 2>/dev/null | tar tvvf -
132
133 # .tar.xz, .txz
134 regex/\.t(ar\.xz|xz)$
135         Open=%cd %p/utar://
136         View=%view{ascii} xz -dc %f 2>/dev/null | tar tvvf -
137
138 # .tar.F - used in QNX
139 regex/\.tar\.F$
140         # Open=%cd %p/utar://
141         View=%view{ascii} freeze -dc %f 2>/dev/null | tar tvvf -
142
143 # .qpr/.qpk - QNX Neutrino package installer files
144 regex/\.(qp[rk])$
145         Open=%cd %p/utar://
146         View=%view{ascii} gzip -dc %f 2>/dev/null | tar tvvf -
147
148 # tar
149 regex/\.(tar|TAR)$
150         Open=%cd %p/utar://
151         View=%view{ascii} tar tvvf - < %f
152
153 # lha
154 type/^LHa\ .*archive
155         Open=%cd %p/ulha://
156         View=%view{ascii} lha l %f
157
158 # arj
159 regex/\.[aA]([rR][jJ]|[0-9][0-9])$
160         Open=%cd %p/uarj://
161         View=%view{ascii} unarj l %f
162
163 # cab
164 regex/\.([cC][aA][bB])$
165         Open=%cd %p/ucab://
166         View=%view{ascii} cabextract -l %f
167
168 # ha
169 regex/\.([Hh][Aa])$
170         Open=%cd %p/uha://
171         View=%view{ascii} ha lf %f
172
173 # rar
174 regex/\.[rR]([aA][rR]|[0-9][0-9])$
175         Open=%cd %p/urar://
176         View=%view{ascii} unrar v -c- %f
177
178 # ALZip
179 regex/\.(alz|ALZ)$
180         Open=%cd %p/ualz://
181         View=%view{ascii} unalz -l %f
182
183 # cpio
184 shell/.cpio.Z
185         Open=%cd %p/ucpio://
186         View=%view{ascii} gzip -dc %f | cpio -itv 2>/dev/null
187
188 shell/.cpio.xz
189         Open=%cd %p/ucpio://
190         View=%view{ascii} xz -dc %f | cpio -itv 2>/dev/null
191
192 shell/.cpio.gz
193         Open=%cd %p/ucpio://
194         View=%view{ascii} gzip -dc %f | cpio -itv 2>/dev/null
195
196 shell/.cpio
197         Open=%cd %p/ucpio://
198         View=%view{ascii} cpio -itv < %f 2>/dev/null
199
200 # ls-lR
201 regex/(^|\.)ls-?lR(\.gz|Z|bz2)$
202         Open=%cd %p/lslR://
203
204 # patch
205 regex/\.(diff|patch)(\.bz2)$
206         Open=%cd %p/patchfs://
207         View=%view{ascii} bzip2 -dc %f 2>/dev/null
208
209 regex/\.(diff|patch)(\.(gz|Z))$
210         Open=%cd %p/patchfs://
211         View=%view{ascii} gzip -dc %f 2>/dev/null
212
213 regex/\.(diff|patch)$
214         Open=%cd %p/patchfs://
215         View=%view{ascii} /bin/cat %f 2>/dev/null
216
217 # ar library
218 regex/\.s?a$
219         Open=%cd %p/uar://
220         #Open=%view{ascii} ar tv %f
221         View=%view{ascii} file %f && nm -C %f
222
223 # trpm
224 regex/\.trpm$
225         Open=%cd %p/trpm://
226         View=%view{ascii} rpm -qivl --scripts `basename %p .trpm`
227
228 # RPM packages (SuSE uses *.spm for source packages)
229 regex/\.(src\.rpm|spm)$
230         Open=%cd %p/rpm://
231         View=%view{ascii} if rpm --nosignature --version >/dev/null 2>&1; then RPM="rpm --nosignature" ; else RPM="rpm" ; fi ; $RPM -qivlp --scripts %f
232
233 regex/\.rpm$
234         Open=%cd %p/rpm://
235         View=%view{ascii} if rpm --nosignature --version >/dev/null 2>&1; then RPM="rpm --nosignature" ; else RPM="rpm" ; fi ; $RPM -qivlp --scripts %f
236
237 # deb
238 regex/\.u?deb$
239         Open=%cd %p/deb://
240         View=%view{ascii} dpkg-deb -I %f && echo && dpkg-deb -c %f
241
242 # dpkg
243 shell/.debd
244         Open=%cd %p/debd://
245         View=%view{ascii} dpkg -s `echo %p | sed 's/\([0-9a-z.-]*\).*/\1/'`
246 # apt
247 shell/.deba
248         Open=%cd %p/deba://
249         View=%view{ascii} apt-cache show `echo %p | sed 's/\([0-9a-z.-]*\).*/\1/'`
250
251 # ISO9660
252 regex/\.([iI][sS][oO](\.wv)?)$
253         Open=%cd %p/iso9660://
254         View=%view{ascii} isoinfo -l -i %f
255
256 # 7zip archives (they are not man pages)
257 regex/\.(7z|7Z)$
258         Open=%cd %p/u7z://
259         View=%view{ascii} 7za l %f 2>/dev/null
260
261 # Mailboxes
262 type/^ASCII\ mail\ text
263         Open=%cd %p/mailfs://
264
265
266 ### Sources ###
267
268 # C
269 shell/.c
270         Include=editor
271
272 # Fortran
273 shell/.f
274         Include=editor
275
276 # Header
277 regex/\.(h|hpp)$
278         Include=editor
279
280 # Asm
281 shell/.s
282         Include=editor
283
284 # C++
285 regex/\.(C|cc|cpp)$
286         Include=editor
287
288 include/editor
289         Open=%var{EDITOR:vi} %f
290
291 # .so libraries
292 regex/\.(so|so\.[0-9\.]*)$
293         View=%view{ascii} file %f && nm -C -D %f
294
295 # Object
296 type/^ELF
297         #Open=%var{PAGER:more} %f
298         View=%view{ascii} file %f && nm -C %f
299
300 ### Documentation ###
301
302 # Texinfo
303 #regex/\.(te?xi|texinfo)$
304
305 # GNU Info page
306 type/^Info\ text
307         Open=info -f %f
308
309 shell/.info
310         Open=info -f %f
311
312 # Exception: .3gp are video files not manual pages
313 regex/\.(3[gG][pP])$
314         Include=video
315
316 # Manual page
317 regex/(([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])|\.man)$
318         Open=case %d/%f in */log/*|*/logs/*) cat %f ;; *) { zsoelim %f 2>/dev/null || cat %f; } | nroff -c -Tlatin1 -mandoc ;; esac | %var{PAGER:more}
319         View=%view{ascii,nroff} case %d/%f in */log/*|*/logs/*) cat %f ;; *) { zsoelim %f 2>/dev/null || cat %f; } | nroff -c -Tlatin1 -mandoc ;; esac
320
321 # Perl pod page
322 shell/.pod
323         Open=pod2man %f | nroff -c -Tlatin1 -mandoc | %var{PAGER:more}
324         View=%view{ascii,nroff} pod2man %f | nroff -c -Tlatin1 -mandoc
325
326 # Troff with me macros.
327 # Exception - "read.me" is not a nroff file.
328 shell/read.me
329         Open=
330         View=
331
332 shell/.me
333         Open=nroff -c -Tlatin1 -me %f | %var{PAGER:more}
334         View=%view{ascii,nroff} nroff -c -Tlatin1 -me %f
335
336 # Troff with ms macros.
337 shell/.ms
338         Open=nroff -c -Tlatin1 -ms %f | %var{PAGER:more}
339         View=%view{ascii,nroff} nroff -c -Tlatin1 -ms %f
340
341 # Manual page - compressed
342 regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.g?[Zz]$
343         Open=case %d/%f in */log/*|*/logs/*) gzip -dc %f ;; *) gzip -dc %f | nroff -c -Tlatin1 -mandoc ;; esac | %var{PAGER:more}
344         View=%view{ascii,nroff} case %d/%f in */log/*|*/logs/*) gzip -dc %f ;; *) gzip -dc %f | nroff -c -Tlatin1 -mandoc ;; esac
345
346 regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.bz$
347         Open=case %d/%f in */log/*|*/logs/*) bzip -dc %f ;; *) bzip -dc %f | nroff -c -Tlatin1 -mandoc ;; esac | %var{PAGER:more}
348         View=%view{ascii,nroff} case %d/%f in */log/*|*/logs/*) bzip -dc %f ;; *) bzip -dc %f | nroff -c -Tlatin1 -mandoc ;; esac
349
350 regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.bz2$
351         Open=case %d/%f in */log/*|*/logs/*) bzip2 -dc %f ;; *) bzip2 -dc %f | nroff -c -Tlatin1 -mandoc ;; esac | %var{PAGER:more}
352         View=%view{ascii,nroff} case %d/%f in */log/*|*/logs/*) bzip2 -dc %f ;; *) bzip2 -dc %f | nroff -c -Tlatin1 -mandoc ;; esac
353
354 regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.lzma$
355         Open=case %d/%f in */log/*|*/logs/*) lzma -dc %f ;; *) lzma -dc %f | nroff -c -Tlatin1 -mandoc ;; esac | %var{PAGER:more}
356         View=%view{ascii,nroff} case %d/%f in */log/*|*/logs/*) lzma -dc %f ;; *) lzma -dc %f | nroff -c -Tlatin1 -mandoc ;; esac
357
358 regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.xz$
359         Open=case %d/%f in */log/*|*/logs/*) xz -dc %f ;; *) xz -dc %f | nroff -c -Tlatin1 -mandoc ;; esac | %var{PAGER:more}
360         View=%view{ascii,nroff} case %d/%f in */log/*|*/logs/*) xz -dc %f ;; *) xz -dc %f | nroff -c -Tlatin1 -mandoc ;; esac
361
362 # CHM
363 regex/\.(chm|CHM)$
364         Open=which kchmviewer > /dev/null 2>&1 && (kchmviewer %f &) || (xchm %f &)
365
366 ### Images ###
367
368 type/^GIF
369         Include=image
370
371 type/^JPEG
372         View=%view{ascii} identify %f; test -x /usr/bin/exif && echo && exif %f 2>/dev/null
373         Include=image
374
375 type/^PC\ bitmap
376         Include=image
377
378 type/^PNG
379         Include=image
380
381 type/^TIFF
382         Include=image
383
384 type/^PBM
385         Include=image
386
387 type/^PGM
388         Include=image
389
390 type/^PPM
391         Include=image
392
393 type/^Netpbm
394         Include=image
395
396 shell/.xcf
397         Open=(gimp %f &)
398
399 shell/.xbm
400         Open=bitmap %f
401
402 shell/.xpm
403         Include=image
404         View=sxpm %f
405
406 shell/.ico
407         Include=image
408
409 include/image
410         Open=(see %f &)
411         View=%view{ascii} identify %f
412         #View=%view{ascii} asciiview %f
413
414
415 ### Sound files ###
416
417 #regex/\.([wW][aA][vV]|[sS][nN][dD]|[vV][oO][cC]|[aA][uU]|[sS][mM][pP]|[aA][iI][fF][fF]|[sS][nN][dD])$
418 #       Open=if [ "$DISPLAY" = "" ]; then play %f; else (xmms %f >/dev/null 2>&1 &); fi
419 #
420 #regex/\.([mM][oO][dD]|[sS]3[mM]|[xX][mM]|[iI][tT]|[mM][tT][mM]|669|[sS][tT][mM]|[uU][lL][tT]|[fF][aA][rR])$
421 #       Open=mikmod %f
422 #       #Open=tracker %f
423 #
424 #regex/\.([wW][aA][wW]22)$
425 #       Open=vplay -s 22 %f
426 #
427 #regex/\.([mM][pP]3)$
428 #       Open=if [ "$DISPLAY" = "" ]; then mpg123 %f; else (xmms %f >/dev/null 2>&1 &); fi
429 #       View=%view{ascii} mpg123 -vtn1 %f 2>&1 | sed -n '/^Title/,/^Comment/p;/^MPEG/,/^Audio/p'
430 #
431 #regex/\.([oO][gG][gG|aA|vV|xX])$
432 #       Open=if [ "$DISPLAY" = "" ]; then ogg123 %f; else (xmms %f >/dev/null 2>&1 &); fi
433 #       View=%view{ascii} ogginfo %s
434 #
435 #regex/\.([sS][pP][xX]|[fF][lL][aA][cC])$
436 #       Open=if [ "$DISPLAY" = "" ]; then play %f; else (xmms %f >/dev/null 2>&1 &); fi
437 #
438 #regex/\.([mM][iI][dD][iI]?|[rR][mM][iI][dD]?)$
439 #       Open=timidity %f
440 #
441 #regex/\.([wW][mM][aA])$
442 #       Open=mplayer -vo null %f
443 #       View=%view{ascii} mplayer -quiet -slave -frames 0 -vo null -ao null -identify %f 2>/dev/null | tail +13 || file %f
444 #
445 #
446 #### Play lists ###
447 #
448 #regex/\.([mM]3[uU]|[pP][lL][sS])$
449 #       Open=if [ -z "$DISPLAY" ]; then mplayer -vo null -playlist %f; else (xmms -p %f >/dev/null 2>&1 &); fi
450
451
452 ### Video ###
453
454 regex/\.([aA][vV][iI])$
455         Include=video
456
457 regex/\.([aA][sS][fFxX])$
458         Include=video
459
460 regex/\.([dD][iI][vV][xX])$
461         Include=video
462
463 regex/\.([mM][kK][vV])$
464         Include=video
465
466 regex/\.([mM][oO][vV]|[qQ][tT])$
467         Include=video
468
469 regex/\.([mM][pP]4|[mM]4[vV]|[mM][pP][eE]?[gG])$
470         Include=video
471
472 # MPEG-2 TS container + H.264 codec
473 regex/\.([mM][tT][sS])$
474         Include=video
475
476 regex/\.([tT][sS])$
477         Include=video
478
479 regex/\.([vV][oO][bB])$
480         Include=video
481
482 regex/\.([wW][mM][vV])$
483         Include=video
484
485 regex/\.([fF][lL][iIcCvV])$
486         Include=video
487
488 regex/\.([oO][gG][mM])$
489         Include=video
490
491 regex/\.([rR][aA]?[mM])$
492         Open=(realplay %f >/dev/null 2>&1 &)
493
494 include/oldvideo
495         Open=(mplayer %f >/dev/null 2>&1 &)
496         #Open=(gtv %f >/dev/null 2>&1 &)
497         #Open=(xanim %f >/dev/null 2>&1 &)
498
499
500 ### Documents ###
501
502 # Postscript
503 type/^PostScript
504 #       Open=(gv %f &)
505         View=%view{ascii} ps2ascii %f
506
507 # PDF
508 type/^PDF
509         Open=(see %f &)
510         #Open=(acroread %f &)
511         #Open=(ghostview %f &)
512         View=%view{ascii} pdftotext %f -
513
514 # The following code very ugly and should not be taken as example.
515 # It should be cleaned up when the new format of mc.ext is developed.
516
517 # html
518 regex/\.([hH][tT][mM][lL]?)$
519         Open=(if test -n "" && test -n "$DISPLAY"; then ( file://%d/%p &) 1>&2; else links %f || lynx -force_html %f || ${PAGER:-more} %f; fi) 2>/dev/null
520         View=%view{ascii} links -dump %f 2>/dev/null || w3m -dump %f 2>/dev/null || lynx -dump -force_html %f
521
522 # StarOffice 5.2
523 shell/.sdw
524         Open=(libreoffice %f &)
525
526 # StarOffice 6 and OpenOffice.org formats
527 regex/\.(odt|ott|sxw|stw|ods|ots|sxc|stc|odp|otp|sxi|sti|odg|otg|sxd|std|odb|odf|sxm|odm|sxg)$
528         Edit=(libreoffice %f &)
529         Open=(libreoffice %f &)
530         View=%view{ascii} odt2txt %f
531
532 # AbiWord
533 shell/.abw
534         Open=(abiword %f &)
535
536 # Microsoft Word Document
537 #regex/\.([Dd][oO][cCtT]|[Ww][rR][iI])$
538 #       Open=(abiword %f >/dev/null 2>&1 &)
539 #       View=%view{ascii} antiword -t %f || catdoc -w %f || word2x -f text %f - || strings %f
540 #type/^Microsoft\ Word
541 #       Open=(abiword %f >/dev/null 2>&1 &)
542 #       View=%view{ascii} antiword -t %f || catdoc -w %f || word2x -f text %f - || strings %f
543 #
544 ## RTF document
545 #regex/\.([rR][tT][fF])$
546 #       Open=(abiword %f >/dev/null 2>&1 &)
547
548 # Microsoft Excel Worksheet
549 regex/\.([xX][lL][sSwW])$
550         Open=(gnumeric %f >/dev/null 2>&1 &)
551         View=%view{ascii} xls2csv %f || strings %f
552 type/^Microsoft\ Excel
553         Open=(gnumeric %f >/dev/null 2>&1 &)
554         View=%view{ascii} xls2csv %f || strings %f
555
556 # Use OpenOffice.org to open any MS Office documents
557 #type/^Microsoft\ Office\ Document
558 #       Open=(libreoffice %f &)
559
560 # Framemaker
561 type/^FrameMaker
562         Open=fmclient -f %f
563
564 # DVI
565 regex/\.([dD][vV][iI])$
566         Open=run-mailcap %f 2>&1 &
567         View=%view{ascii} catdvi %f
568
569 # TeX
570 regex/\.([Tt][Ee][Xx])$
571         Include=editor
572
573 # DjVu
574 regex/\.(djvu?|DJVU?)$
575         Open=djview %f &
576         View=%view{ascii} djvused -e print-pure-txt %f
577
578 ### Miscellaneous ###
579
580 # Makefile
581 regex/[Mm]akefile$
582         Open=make -f %f %{Enter parameters}
583
584 # Imakefile
585 shell/Imakefile
586         Open=xmkmf -a
587
588 # Makefile.PL (MakeMaker)
589 regex/^Makefile.(PL|pl)$
590         Open=%var{PERL:perl} %f
591
592 # dbf
593 regex/\.([dD][bB][fF])$
594        Open=%view{ascii} dbview %f
595        View=%view{ascii} dbview -b %f
596
597 # REXX script
598 regex/\.(rexx?|cmd)$
599        Open=rexx %f %{Enter parameters};echo "Press ENTER";read y
600
601 # Disk images for Commodore computers (VIC20, C64, C128)
602 regex/\.(d64|D64)$
603         Open=%cd %p/uc1541://
604         View=%view{ascii} c1541 %f -list
605         Extract=c1541 %f -extract
606
607 # Glade, a user interface designer for GTK+ and GNOME
608 regex/\.([Gg][Ll][Aa][Dd][Ee])$
609         Open=if glade-3 --version >/dev/null 2>&1; then (glade-3 %f >/dev/null 2>&1 &); else (glade-2 %f >/dev/null 2>&1 &); fi
610
611 # Gettext Catalogs
612 shell/.mo
613         View=%view{ascii} msgunfmt %f || cat %f
614
615 # lyx
616 regex/\.(lyx|LYX)$
617         Open=lyx %f
618         View=%view{ascii} lyxcat %f
619
620 # torrent
621 #regex/\.([tT][oO][rR][rR][eE][nN][tT])$
622 #       View=%view{ascii} ctorrent -x %f 2>/dev/null
623
624 ### Plain compressed files ###
625
626 # ace
627 regex/\.(ace|ACE)$
628         Open=%cd %p/uace://
629         View=%view{ascii} unace l %f
630         Extract=unace x %f
631
632 # arc
633 regex/\.(arc|ARC)$
634         Open=%cd %p/uarc://
635         View=%view{ascii} arc l %f
636         Extract=arc x %f '*'
637         Extract (with flags)=I=%{Enter any Arc flags:}; if test -n "$I"; then arc x $I %f; fi
638
639 # zip
640 type/^([Zz][Ii][Pp])\ archive
641         Open=%cd %p/uzip://
642         View=%view{ascii} unzip -v %f
643
644 # zoo
645 regex/\.([Zz][Oo][Oo])$
646         Open=%cd %p/uzoo://
647         View=%view{ascii} zoo l %f
648
649 # gzip
650 type/^gzip
651         Open=gzip -dc %f | %var{PAGER:more}
652         View=%view{ascii} gzip -dc %f 2>/dev/null
653
654 regex/\.(gz|Z)$
655         View=%view{ascii} gzip -dc %f 2>/dev/null
656
657 # bzip2
658 type/^bzip2
659         Open=bzip2 -dc %f | %var{PAGER:more}
660         View=%view{ascii} bzip2 -dc %f 2>/dev/null
661
662 regex/\.bz2?$
663         View=%view{ascii} bzip2 -dc %f 2>/dev/null
664
665 # bzip
666 type/^bzip
667         Open=bzip -dc %f | %var{PAGER:more}
668         View=%view{ascii} bzip -dc %f 2>/dev/null
669
670 # compress
671 type/^compress
672         Open=gzip -dc %f | %var{PAGER:more}
673         View=%view{ascii} gzip -dc %f 2>/dev/null
674
675 # lzma
676 regex/\.lzma$
677         Open=lzma -dc %f | %var{PAGER:more}
678         View=%view{ascii} lzma -dc %f 2>/dev/null
679
680 # xz
681 regex/\.xz$
682         Open=xz -dc %f | %var{PAGER:more}
683         View=%view{ascii} xz -dc %f 2>/dev/null
684
685 ### phd
686
687 type/^Berkeley\ DB\ 1.85
688    View=%view{ascii} db_dump185 -p %f
689
690 # Compiled HTML
691 shell/.chm
692    Open=fbreader %f &
693
694 # DejaVu
695 shell/.djvu
696    Open=djview %f &
697    #Open=evince %f &
698    #Open=qpdfview %f &
699
700 # EPUB
701 shell/.epub
702    Open=fbreader %f &
703
704 # FB2
705 shell/.fb2
706    Open=fbreader %f &
707    View=%view{ascii} xsltproc /usr/local/src/FictionBook/FB2_2_txt_ru.xsl %f
708
709 type/^PostScript
710    #Open=evince %f &
711    Open=qpdfview %f &
712    View=%view{ascii} ps2ascii %f
713
714 # RTF
715 regex/\.([rR][tT][fF])$
716    Open=fbreader %f &
717    View=%view{ascii} catdoc %f
718
719 regex/\.([Dd][oO][cCtT]|[Ww][rR][iI])$
720    Include=msoffice
721
722 regex/\.([Dd][oO][cC][Xx])$
723    Edit=libreoffice %f &
724    Open=libreoffice %f &
725    View=%view{ascii} docx2txt %f - | iconv.py -f utf-8
726
727 type/^Microsoft\ Word
728    Include=msoffice
729
730 type/^Microsoft\ Office\ Document
731    Include=msoffice
732
733 type/^Composite\ Document\ File
734    Include=msoffice
735
736 # ftplist
737 regex/\.ftplist$
738    Open=%cd %p#ftplist
739
740 # Play list
741 regex/\.([mM]3[uU]|[pP][lL][sS])$
742    Include=audio
743
744 # Lossless audio
745 regex/\.(cue|aac|ac3|ape|flac|wv|mka)$
746    Include=audio
747
748 # Object
749 shell/.o
750    View=%view{ascii} nm %f
751    Disassemble=%view{ascii} objdump -d -r %f
752
753 # Python
754 shell/.py
755    Open=python %f
756    View=%view{ascii}
757    Compile=compyle %s
758    Icon=snake.xpm
759
760 regex/\.(tif|TIF|tiff|TIFF)$
761    Open=xview %f
762
763 shell/.torrent
764    Open=%cd %p/torrent://
765
766 regex/\.([xX][mM][lL])$
767    Include=xml
768
769 type/^XML *(1\.0 *)?document
770    Include=xml
771
772 regex/\.([Zz][Ii][Pp])$
773    Open=%cd %p/uzip://
774    View=%view{ascii} unzip -v %f
775
776 include/audio
777    #Open=[ "`audtool --get-volume`" -eq 0 ] && (audacious & sleep 3); audtool --playlist-clear --playlist-addurl %f --playback-play
778    #Open=mplayer %f &
779    Open=deadbeef %f &
780    #Open=mediaplayer_open %f
781    View=%view{ascii} %f
782
783 include/msoffice
784    Edit=libreoffice %f &
785    Open=libreoffice %f &
786    View=%view{ascii} catdoc %f
787
788 include/video
789    Open=mplayer %f &
790    #Open=mediaplayer_open %f
791    View=%view{ascii} %f
792
793 include/xml
794    Open=%cd %p/xml://
795
796 ### Default ###
797
798 # Default target for anything not described above
799 default/*
800         Open=
801         View=
802
803
804 ### EOF ###