245
|
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 # file | $1 is a file
|
|
25 # directory | $1 is a directory
|
|
26 # number <n> | change the number of this command to n
|
|
27 # terminal | stdin, stderr and stdout are connected to a terminal
|
|
28 # X | $DISPLAY is not empty (i.e. Xorg runs)
|
|
29 #
|
|
30 # There are also pseudo-conditions which have a "side effect":
|
|
31 # flag <flags> | Change how the program is run. See below.
|
|
32 # label <label> | Assign a label or name to the command so it can
|
|
33 # | be started with :open_with <label> in ranger
|
|
34 # | or `rifle -p <label>` in the standalone executable.
|
|
35 # else | Always true.
|
|
36 #
|
|
37 # Flags are single characters which slightly transform the command:
|
|
38 # f | Fork the program, make it run in the background.
|
|
39 # | New command = setsid $command >& /dev/null &
|
|
40 # r | Execute the command with root permissions
|
|
41 # | New command = sudo $command
|
|
42 # t | Run the program in a new terminal. If $TERMCMD is not defined,
|
|
43 # | rifle will attempt to extract it from $TERM.
|
|
44 # | New command = $TERMCMD -e $command
|
|
45 # Note: The "New command" serves only as an illustration, the exact
|
|
46 # implementation may differ.
|
|
47 # Note: When using rifle in ranger, there is an additional flag "c" for
|
|
48 # only running the current file even if you have marked multiple files.
|
|
49
|
|
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 jumanji, X, flag f = jumanji -- "$@"
|
|
60 ext x?html?, has luakit, X, flag f = luakit -- "$@"
|
|
61 ext x?html?, has uzbl, X, flag f = uzbl -- "$@"
|
|
62 ext x?html?, has uzbl-browser, X, flag f = uzbl-browser -- "$@"
|
|
63 ext x?html?, has uzbl-core, X, flag f = uzbl-core -- "$@"
|
|
64 ext x?html?, has midori, X, flag f = midori -- "$@"
|
|
65 ext x?html?, has chromium, X, flag f = chromium -- "$@"
|
|
66 ext x?html?, has opera, X, flag f = opera -- "$@"
|
|
67 ext x?html?, has firefox, X, flag f = firefox -- "$@"
|
|
68 ext x?html?, has seamonkey, X, flag f = seamonkey -- "$@"
|
|
69 ext x?html?, has iceweasel, X, flag f = iceweasel -- "$@"
|
|
70 ext x?html?, has epiphany, X, flag f = epiphany -- "$@"
|
|
71 ext x?html?, has konqueror, X, flag f = konqueror -- "$@"
|
|
72 ext x?html?, has elinks, terminal = elinks "$@"
|
|
73 ext x?html?, has links2, terminal = links2 "$@"
|
|
74 ext x?html?, has links, terminal = links "$@"
|
|
75 ext x?html?, has lynx, terminal = lynx -- "$@"
|
|
76 ext x?html?, has w3m, terminal = w3m "$@"
|
|
77
|
|
78 #-------------------------------------------
|
|
79 # Misc
|
|
80 #-------------------------------------------
|
|
81 # Define the "editor" for text files as first action
|
|
82 mime ^text, label editor = "$EDITOR" -- "$@"
|
|
83 mime ^text, label pager = "$PAGER" -- "$@"
|
|
84 !mime ^text, label editor, ext xml|csv|tex|py|pl|rb|sh|php = "$EDITOR" -- "$@"
|
|
85 !mime ^text, label pager, ext xml|csv|tex|py|pl|rb|sh|php = "$PAGER" -- "$@"
|
|
86
|
|
87 ext 1 = man "$1"
|
|
88 ext s[wmf]c, has zsnes, X = zsnes "$1"
|
|
89 ext nes, has fceux, X = fceux "$1"
|
|
90 ext exe = wine "$1"
|
|
91 name ^[mM]akefile$ = make
|
|
92
|
|
93 #--------------------------------------------
|
|
94 # Code
|
|
95 #-------------------------------------------
|
|
96 ext py = python -- "$1"
|
|
97 ext pl = perl -- "$1"
|
|
98 ext rb = ruby -- "$1"
|
|
99 ext sh = sh -- "$1"
|
|
100 ext php = php -- "$1"
|
|
101
|
|
102 #--------------------------------------------
|
|
103 # Audio without X
|
|
104 #-------------------------------------------
|
|
105 mime ^audio|ogg$, terminal, has mplayer = mplayer -- "$@"
|
|
106 mime ^audio|ogg$, terminal, has mplayer2 = mplayer2 -- "$@"
|
|
107 ext midi?, terminal, has wildmidi = wildmidi -- "$@"
|
|
108
|
|
109 #--------------------------------------------
|
|
110 # Video/Audio with a GUI
|
|
111 #-------------------------------------------
|
|
112 mime ^video|audio, has gmplayer, X, flag f = gmplayer -- "$@"
|
|
113 mime ^video|audio, has smplayer, X, flag f = smplayer "$@"
|
|
114 mime ^video, has mplayer2, X, flag f = mplayer2 -- "$@"
|
|
115 mime ^video, has mplayer2, X, flag f = mplayer2 -fs -- "$@"
|
|
116 mime ^video, has mplayer, X, flag f = mplayer -- "$@"
|
|
117 mime ^video, has mplayer, X, flag f = mplayer -fs -- "$@"
|
|
118 mime ^video|audio, has vlc, X, flag f = vlc -- "$@"
|
|
119 mime ^video|audio, has totem, X, flag f = totem -- "$@"
|
|
120 mime ^video|audio, has totem, X, flag f = totem --fullscreen -- "$@"
|
|
121
|
|
122 #--------------------------------------------
|
|
123 # Video without X:
|
|
124 #-------------------------------------------
|
|
125 mime ^video, terminal, !X, has mplayer2 = mplayer2 -- "$@"
|
|
126 mime ^video, terminal, !X, has mplayer = mplayer -- "$@"
|
|
127
|
|
128 #-------------------------------------------
|
|
129 # Image Viewing:
|
|
130 #-------------------------------------------
|
|
131 mime ^image, has eog, X, flag f = eog -- "$@"
|
|
132 mime ^image, has sxiv, X, flag f = sxiv -- "$@"
|
|
133 mime ^image, has feh, X, flag f = feh -- "$@"
|
|
134 mime ^image, has mirage, X, flag f = mirage -- "$@"
|
|
135 mime ^image, has gimp, X, flag f = gimp -- "$@"
|
|
136 ext xcf, X, flag f = gimp -- "$@"
|
|
137
|
|
138 #-------------------------------------------
|
|
139 # Documents
|
|
140 #-------------------------------------------
|
|
141 ext pdf, has open, X, flag f = open -- "$@"
|
|
142 ext pdf, has llpp, X, flag f = llpp "$@"
|
|
143 ext pdf, has zathura, X, flag f = zathura -- "$@"
|
|
144 ext pdf, has mupdf, X, flag f = mupdf -- "$@"
|
|
145 ext pdf, has apvlv, X, flag f = apvlv -- "$@"
|
|
146 ext pdf, has xpdf, X, flag f = xpdf -- "$@"
|
|
147 ext pdf, has evince, X, flag f = evince -- "$@"
|
|
148 ext pdf, has okular, X, flag f = okular -- "$@"
|
|
149 ext pdf, has epdfview, X, flag f = epdfview -- "$@"
|
|
150
|
|
151 ext eps, has open, X, flag f = open -- "$@"
|
|
152
|
|
153 ext docx?, has catdoc, terminal = catdoc -- "$@" | "$PAGER"
|
|
154
|
|
155 ext sxc|xlsx?|xlt|xlw|gnm|gnumeric, has gnumeric, X, flag f = gnumeric -- "$@"
|
|
156 ext sxc|xlsx?|xlt|xlw|gnm|gnumeric, has kspread, X, flag f = kspread -- "$@"
|
|
157 ext od[dfgpst]|docx?|sxc|xlsx?|xlt|xlw|gnm|gnumeric, has libreoffice, X, flag f = libreoffice "$@"
|
|
158 ext od[dfgpst]|docx?|sxc|xlsx?|xlt|xlw|gnm|gnumeric, has soffice, X, flag f = soffice "$@"
|
|
159 ext od[dfgpst]|docx?|sxc|xlsx?|xlt|xlw|gnm|gnumeric, has ooffice, X, flag f = ooffice "$@"
|
|
160
|
|
161 ext djvu, has evince, X, flag f = evince -- "$@"
|
|
162
|
|
163 #-------------------------------------------
|
|
164 # Archives
|
|
165 #-------------------------------------------
|
|
166 # This requires atool
|
|
167 ext 7z|ace|ar|arc|bz2?|cab|cpio|cpt|deb|dgc|dmg|gz, has als = als -- "$@" | "$PAGER"
|
|
168 ext iso|jar|msi|pkg|rar|shar|tar|tgz|xar|xpi|xz|zip, has als = als -- "$@" | "$PAGER"
|
|
169 ext 7z|ace|ar|arc|bz2?|cab|cpio|cpt|deb|dgc|dmg|gz, has aunpack = aunpack -- "$@"
|
|
170 ext iso|jar|msi|pkg|rar|shar|tar|tgz|xar|xpi|xz|zip, has aunpack = aunpack -- "$@"
|
|
171
|
|
172 # Fallback:
|
|
173 ext tar|gz, has tar = tar vvtf "$@" | "$PAGER"
|
|
174 ext tar|gz, has tar = tar vvxf "$@"
|
|
175
|
|
176 #-------------------------------------------
|
|
177 # Misc
|
|
178 #-------------------------------------------
|
|
179 label wallpaper, number 11, mime ^image, X = feh --bg-scale "$1"
|
|
180 label wallpaper, number 12, mime ^image, X = feh --bg-tile "$1"
|
|
181 label wallpaper, number 13, mime ^image, X = feh --bg-center "$1"
|
|
182 label wallpaper, number 14, mime ^image, X = feh --bg-fill "$1"
|
|
183
|
|
184 # Define the editor for non-text files + pager as last action
|
|
185 !mime ^text, !ext xml|csv|tex|py|pl|rb|sh|php = ask
|
|
186 label editor, !mime ^text, !ext xml|csv|tex|py|pl|rb|sh|php = "$EDITOR" -- "$@"
|
|
187 label pager, !mime ^text, !ext xml|csv|tex|py|pl|rb|sh|php = "$PAGER" -- "$@"
|