rifle.conf 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. # vim: ft=cfg
  2. #
  3. # This is the configuration file of "rifle", ranger's file executor/opener.
  4. # Each line consists of conditions and a command. For each line the conditions
  5. # are checked and if they are met, the respective command is run.
  6. #
  7. # Syntax:
  8. # <condition1> , <condition2> , ... = command
  9. #
  10. # The command can contain these environment variables:
  11. # $1-$9 | The n-th selected file
  12. # $@ | All selected files
  13. #
  14. # If you use the special command "ask", rifle will ask you what program to run.
  15. #
  16. # Prefixing a condition with "!" will negate its result.
  17. # These conditions are currently supported:
  18. # match <regexp> | The regexp matches $1
  19. # ext <regexp> | The regexp matches the extension of $1
  20. # mime <regexp> | The regexp matches the mime type of $1
  21. # name <regexp> | The regexp matches the basename of $1
  22. # path <regexp> | The regexp matches the absolute path of $1
  23. # has <program> | The program is installed (i.e. located in $PATH)
  24. # env <variable> | The environment variable "variable" is non-empty
  25. # file | $1 is a file
  26. # directory | $1 is a directory
  27. # number <n> | change the number of this command to n
  28. # terminal | stdin, stderr and stdout are connected to a terminal
  29. # X | $DISPLAY is not empty (i.e. Xorg runs)
  30. #
  31. # There are also pseudo-conditions which have a "side effect":
  32. # flag <flags> | Change how the program is run. See below.
  33. # label <label> | Assign a label or name to the command so it can
  34. # | be started with :open_with <label> in ranger
  35. # | or `rifle -p <label>` in the standalone executable.
  36. # else | Always true.
  37. #
  38. # Flags are single characters which slightly transform the command:
  39. # f | Fork the program, make it run in the background.
  40. # | New command = setsid $command >& /dev/null &
  41. # r | Execute the command with root permissions
  42. # | New command = sudo $command
  43. # t | Run the program in a new terminal. If $TERMCMD is not defined,
  44. # | rifle will attempt to extract it from $TERM.
  45. # | New command = $TERMCMD -e $command
  46. # Note: The "New command" serves only as an illustration, the exact
  47. # implementation may differ.
  48. # Note: When using rifle in ranger, there is an additional flag "c" for
  49. # only running the current file even if you have marked multiple files.
  50. #-------------------------------------------
  51. # Websites
  52. #-------------------------------------------
  53. # Rarely installed browsers get higher priority; It is assumed that if you
  54. # install a rare browser, you probably use it. Firefox/konqueror/w3m on the
  55. # other hand are often only installed as fallback browsers.
  56. ext x?html?, has surf, X, flag f = surf -- file://"$1"
  57. ext x?html?, has vimprobable, X, flag f = vimprobable -- "$@"
  58. ext x?html?, has vimprobable2, X, flag f = vimprobable2 -- "$@"
  59. ext x?html?, has qutebrowser, X, flag f = qutebrowser -- "$@"
  60. ext x?html?, has dwb, X, flag f = dwb -- "$@"
  61. ext x?html?, has jumanji, X, flag f = jumanji -- "$@"
  62. ext x?html?, has luakit, X, flag f = luakit -- "$@"
  63. ext x?html?, has uzbl, X, flag f = uzbl -- "$@"
  64. ext x?html?, has uzbl-tabbed, X, flag f = uzbl-tabbed -- "$@"
  65. ext x?html?, has uzbl-browser, X, flag f = uzbl-browser -- "$@"
  66. ext x?html?, has uzbl-core, X, flag f = uzbl-core -- "$@"
  67. ext x?html?, has midori, X, flag f = midori -- "$@"
  68. ext x?html?, has chromium-browser, X, flag f = chromium-browser -- "$@"
  69. ext x?html?, has chromium, X, flag f = chromium -- "$@"
  70. ext x?html?, has google-chrome, X, flag f = google-chrome -- "$@"
  71. ext x?html?, has opera, X, flag f = opera -- "$@"
  72. ext x?html?, has firefox, X, flag f = firefox -- "$@"
  73. ext x?html?, has seamonkey, X, flag f = seamonkey -- "$@"
  74. ext x?html?, has iceweasel, X, flag f = iceweasel -- "$@"
  75. ext x?html?, has epiphany, X, flag f = epiphany -- "$@"
  76. ext x?html?, has konqueror, X, flag f = konqueror -- "$@"
  77. ext x?html?, has elinks, terminal = elinks "$@"
  78. ext x?html?, has links2, terminal = links2 "$@"
  79. ext x?html?, has links, terminal = links "$@"
  80. ext x?html?, has lynx, terminal = lynx -- "$@"
  81. ext x?html?, has w3m, terminal = w3m "$@"
  82. #-------------------------------------------
  83. # Misc
  84. #-------------------------------------------
  85. # Define the "editor" for text files as first action
  86. mime ^text, label editor = ${VISUAL:-$EDITOR} -- "$@"
  87. mime ^text, label pager = "$PAGER" -- "$@"
  88. !mime ^text, label editor, ext xml|json|csv|tex|py|pl|rb|js|sh|php = ${VISUAL:-$EDITOR} -- "$@"
  89. !mime ^text, label pager, ext xml|json|csv|tex|py|pl|rb|js|sh|php = "$PAGER" -- "$@"
  90. ext 1 = man "$1"
  91. ext s[wmf]c, has zsnes, X = zsnes "$1"
  92. ext s[wmf]c, has snes9x-gtk,X = snes9x-gtk "$1"
  93. ext nes, has fceux, X = fceux "$1"
  94. ext exe = wine "$1"
  95. name ^[mM]akefile$ = make
  96. #--------------------------------------------
  97. # Code
  98. #-------------------------------------------
  99. ext py = python3 -- "$1"
  100. ext pl = perl -- "$1"
  101. ext rb = ruby -- "$1"
  102. ext js = node -- "$1"
  103. ext sh = sh -- "$1"
  104. ext php = php -- "$1"
  105. #--------------------------------------------
  106. # Audio without X
  107. #-------------------------------------------
  108. mime ^audio|ogg$, terminal, has mpv = mpv -- "$@"
  109. mime ^audio|ogg$, terminal, has mplayer2 = mplayer2 -- "$@"
  110. mime ^audio|ogg$, terminal, has mplayer = mplayer -- "$@"
  111. ext midi?, terminal, has wildmidi = wildmidi -- "$@"
  112. #--------------------------------------------
  113. # Video/Audio with a GUI
  114. #-------------------------------------------
  115. #mime ^video|audio, has gmplayer, X, flag f = gmplayer -- "$@"
  116. #mime ^video|audio, has smplayer, X, flag f = smplayer "$@"
  117. mime ^video, has mpv, X, flag f = mpv -- "$@"
  118. mime ^video, has mpv, X, flag f = mpv --fs -- "$@"
  119. mime ^video, has mplayer2, X, flag f = mplayer2 -- "$@"
  120. mime ^video, has mplayer2, X, flag f = mplayer2 -fs -- "$@"
  121. mime ^video, has mplayer, X, flag f = mplayer -- "$@"
  122. mime ^video, has mplayer, X, flag f = mplayer -fs -- "$@"
  123. mime ^video|audio, has vlc, X, flag f = vlc -- "$@"
  124. mime ^video|audio, has totem, X, flag f = totem -- "$@"
  125. mime ^video|audio, has totem, X, flag f = totem --fullscreen -- "$@"
  126. ext gif, has mpv, X, flag f = mpv -- "$@"
  127. #--------------------------------------------
  128. # Video without X:
  129. #-------------------------------------------
  130. mime ^video, terminal, !X, has mpv = mpv -- "$@"
  131. mime ^video, terminal, !X, has mplayer2 = mplayer2 -- "$@"
  132. mime ^video, terminal, !X, has mplayer = mplayer -- "$@"
  133. #-------------------------------------------
  134. # Documents
  135. #-------------------------------------------
  136. ext pdf, has llpp, X, flag f = llpp "$@"
  137. ext pdf, has zathura, X, flag f = zathura -- "$@"
  138. ext pdf, has mupdf, X, flag f = mupdf "$@"
  139. ext pdf, has mupdf-x11,X, flag f = mupdf-x11 "$@"
  140. ext pdf, has apvlv, X, flag f = apvlv -- "$@"
  141. ext pdf, has xpdf, X, flag f = xpdf -- "$@"
  142. ext pdf, has evince, X, flag f = evince -- "$@"
  143. ext pdf, has atril, X, flag f = atril -- "$@"
  144. ext pdf, has okular, X, flag f = okular -- "$@"
  145. ext pdf, has epdfview, X, flag f = epdfview -- "$@"
  146. ext pdf, has qpdfview, X, flag f = qpdfview "$@"
  147. ext pdf, has open, X, flag f = open "$@"
  148. ext docx?, has catdoc, terminal = catdoc -- "$@" | "$PAGER"
  149. ext sxc|xlsx?|xlt|xlw|gnm|gnumeric, has gnumeric, X, flag f = gnumeric -- "$@"
  150. ext sxc|xlsx?|xlt|xlw|gnm|gnumeric, has kspread, X, flag f = kspread -- "$@"
  151. ext pptx?|od[dfgpst]|docx?|sxc|xlsx?|xlt|xlw|gnm|gnumeric, has libreoffice, X, flag f = libreoffice "$@"
  152. ext pptx?|od[dfgpst]|docx?|sxc|xlsx?|xlt|xlw|gnm|gnumeric, has soffice, X, flag f = soffice "$@"
  153. ext pptx?|od[dfgpst]|docx?|sxc|xlsx?|xlt|xlw|gnm|gnumeric, has ooffice, X, flag f = ooffice "$@"
  154. ext djvu, has zathura,X, flag f = zathura -- "$@"
  155. ext djvu, has evince, X, flag f = evince -- "$@"
  156. ext djvu, has atril, X, flag f = atril -- "$@"
  157. ext djvu, has djview, X, flag f = djview -- "$@"
  158. ext epub, has ebook-viewer, X, flag f = ebook-viewer -- "$@"
  159. ext mobi, has ebook-viewer, X, flag f = ebook-viewer -- "$@"
  160. #-------------------------------------------
  161. # Image Viewing:
  162. #-------------------------------------------
  163. mime ^image/svg, has inkscape, X, flag f = inkscape -- "$@"
  164. mime ^image/svg, has display, X, flag f = display -- "$@"
  165. mime ^image, has pqiv, X, flag f = pqiv -- "$@"
  166. mime ^image, has sxiv, X, flag f = sxiv -- "$@"
  167. mime ^image, has feh, X, flag f = feh -- "$@"
  168. mime ^image, has mirage, X, flag f = mirage -- "$@"
  169. mime ^image, has ristretto, X, flag f = ristretto "$@"
  170. mime ^image, has eog, X, flag f = eog -- "$@"
  171. mime ^image, has eom, X, flag f = eom -- "$@"
  172. mime ^image, has nomacs, X, flag f = nomacs -- "$@"
  173. mime ^image, has geeqie, X, flag f = geeqie -- "$@"
  174. mime ^image, has gwenview, X, flag f = gwenview -- "$@"
  175. mime ^image, has gimp, X, flag f = gimp -- "$@"
  176. ext xcf, X, flag f = gimp -- "$@"
  177. #-------------------------------------------
  178. # Archives
  179. #-------------------------------------------
  180. # avoid password prompt by providing empty password
  181. ext 7z, has 7z = 7z -p l "$@" | "$PAGER"
  182. # This requires atool
  183. ext ace|ar|arc|bz2?|cab|cpio|cpt|deb|dgc|dmg|gz, has atool = atool --list --each -- "$@" | "$PAGER"
  184. ext iso|jar|msi|pkg|rar|shar|tar|tgz|xar|xpi|xz|zip, has atool = atool --list --each -- "$@" | "$PAGER"
  185. ext 7z|ace|ar|arc|bz2?|cab|cpio|cpt|deb|dgc|dmg|gz, has atool = atool --extract --each -- "$@"
  186. ext iso|jar|msi|pkg|rar|shar|tar|tgz|xar|xpi|xz|zip, has atool = atool --extract --each -- "$@"
  187. # Listing and extracting archives without atool:
  188. ext tar|gz|bz2|xz, has tar = tar vvtf "$1" | "$PAGER"
  189. ext tar|gz|bz2|xz, has tar = for file in "$@"; do tar vvxf "$file"; done
  190. ext bz2, has bzip2 = for file in "$@"; do bzip2 -dk "$file"; done
  191. ext zip, has unzip = unzip -l "$1" | "$PAGER"
  192. ext zip, has unzip = for file in "$@"; do unzip -d "${file%.*}" "$file"; done
  193. ext ace, has unace = unace l "$1" | "$PAGER"
  194. ext ace, has unace = for file in "$@"; do unace e "$file"; done
  195. ext rar, has unrar = unrar l "$1" | "$PAGER"
  196. ext rar, has unrar = for file in "$@"; do unrar x "$file"; done
  197. #-------------------------------------------
  198. # Flag t fallback terminals
  199. #-------------------------------------------
  200. # Rarely installed terminal emulators get higher priority; It is assumed that
  201. # if you install a rare terminal emulator, you probably use it.
  202. # gnome-terminal/konsole/xterm on the other hand are often installed as part of
  203. # a desktop environment or as fallback terminal emulators.
  204. mime ^ranger/x-terminal-emulator, has terminology = terminology -e "$@"
  205. mime ^ranger/x-terminal-emulator, has kitty = kitty -- "$@"
  206. mime ^ranger/x-terminal-emulator, has alacritty = alacritty -e "$@"
  207. mime ^ranger/x-terminal-emulator, has sakura = sakura -e "$@"
  208. mime ^ranger/x-terminal-emulator, has lilyterm = lilyterm -e "$@"
  209. #mime ^ranger/x-terminal-emulator, has cool-retro-term = cool-retro-term -e "$@"
  210. mime ^ranger/x-terminal-emulator, has termite = termite -x '"$@"'
  211. #mime ^ranger/x-terminal-emulator, has yakuake = yakuake -e "$@"
  212. mime ^ranger/x-terminal-emulator, has guake = guake -ne "$@"
  213. mime ^ranger/x-terminal-emulator, has tilda = tilda -c "$@"
  214. mime ^ranger/x-terminal-emulator, has st = st -e "$@"
  215. mime ^ranger/x-terminal-emulator, has terminator = terminator -x "$@"
  216. mime ^ranger/x-terminal-emulator, has urxvt = urxvt -e "$@"
  217. mime ^ranger/x-terminal-emulator, has pantheon-terminal = pantheon-terminal -e "$@"
  218. mime ^ranger/x-terminal-emulator, has lxterminal = lxterminal -e "$@"
  219. mime ^ranger/x-terminal-emulator, has mate-terminal = mate-terminal -x "$@"
  220. mime ^ranger/x-terminal-emulator, has xfce4-terminal = xfce4-terminal -x "$@"
  221. mime ^ranger/x-terminal-emulator, has konsole = konsole -e "$@"
  222. mime ^ranger/x-terminal-emulator, has gnome-terminal = gnome-terminal -- "$@"
  223. mime ^ranger/x-terminal-emulator, has xterm = xterm -e "$@"
  224. #-------------------------------------------
  225. # Misc
  226. #-------------------------------------------
  227. label wallpaper, number 11, mime ^image, has feh, X = feh --bg-scale "$1"
  228. label wallpaper, number 12, mime ^image, has feh, X = feh --bg-tile "$1"
  229. label wallpaper, number 13, mime ^image, has feh, X = feh --bg-center "$1"
  230. label wallpaper, number 14, mime ^image, has feh, X = feh --bg-fill "$1"
  231. # Define the editor for non-text files + pager as last action
  232. !mime ^text, !ext xml|json|csv|tex|py|pl|rb|js|sh|php = ask
  233. label editor, !mime ^text, !ext xml|json|csv|tex|py|pl|rb|js|sh|php = ${VISUAL:-$EDITOR} -- "$@"
  234. label pager, !mime ^text, !ext xml|json|csv|tex|py|pl|rb|js|sh|php = "$PAGER" -- "$@"
  235. # The very last action, so that it's never triggered accidentally, is to execute a program:
  236. mime application/x-executable = "$1"