summary refs log tree commit diff stats
path: root/ranger
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-01-17 23:45:48 +0100
committerhut <hut@lavabit.com>2010-01-17 23:45:48 +0100
commitac0daa33edca8d797fb3577e5b2f3d9e9ea09d06 (patch)
tree98171423e796615098059630fc612b9d4b1a0c5c /ranger
parentfc486c609453b3611db75f53026eaf22d1a76e6e (diff)
downloadranger-ac0daa33edca8d797fb3577e5b2f3d9e9ea09d06.tar.gz
apps: use "apvlv" to view pdfs rather than evince
Diffstat (limited to 'ranger')
-rw-r--r--ranger/defaults/apps.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ranger/defaults/apps.py b/ranger/defaults/apps.py
index 32b9b13b..62866cb6 100644
--- a/ranger/defaults/apps.py
+++ b/ranger/defaults/apps.py
@@ -20,7 +20,7 @@ class CustomApplications(Applications):
 		f = c.file
 
 		if f.extension is not None and f.extension in ('pdf'):
-			return self.app_evince(c)
+			return self.app_apvlv(c)
 
 		if f.container:
 			return self.app_aunpack(c)
@@ -78,6 +78,6 @@ class CustomApplications(Applications):
 			return tup('aunpack', '-l', c.file.path)
 		return tup('aunpack', c.file.path)
 	
-	def app_evince(self, c):
+	def app_apvlv(self, c):
 		c.flags += 'd'
-		return tup('evince', *c)
+		return tup('apvlv', *c)
6331ce3629b9'>f07bb12f ^
4c13e1f2 ^











4e9450f9 ^

4c13e1f2 ^
4e9450f9 ^
4c13e1f2 ^
















f07bb12f ^


4c13e1f2 ^

f07bb12f ^


















4c13e1f2 ^





f07bb12f ^







4c13e1f2 ^

f07bb12f ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180