summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2011-01-04 01:25:16 +0100
committerhut <hut@lavabit.com>2011-01-04 01:25:16 +0100
commite70f8c831ec35f2cdd476e84a7e402293788a6b0 (patch)
tree66e0d9fe7d9b92a77003c03a1668d82342eabf2b
parentee7b001d56612d1169d9af7ccd60829fe4611cc9 (diff)
downloadranger-e70f8c831ec35f2cdd476e84a7e402293788a6b0.tar.gz
Added some programs to defaults/apps.py
-rw-r--r--ranger/defaults/apps.py14
1 files changed, 9 insertions, 5 deletions
diff --git a/ranger/defaults/apps.py b/ranger/defaults/apps.py
index 85abb2dc..e93ca1b2 100644
--- a/ranger/defaults/apps.py
+++ b/ranger/defaults/apps.py
@@ -64,13 +64,17 @@ class CustomApplications(Applications):
 			if f.extension in ('xml', ):
 				return self.either(c, 'editor')
 			if f.extension in ('html', 'htm', 'xhtml'):
-				return self.either(c, 'firefox', 'opera', 'elinks')
-			if f.extension in ('swf', ):
-				return self.either(c, 'firefox', 'opera')
+				return self.either(c, 'firefox', 'opera', 'jumanji',
+						'luakit', 'elinks', 'lynx')
+			if f.extension == 'swf':
+				return self.either(c, 'firefox', 'opera', 'jumanji', 'luakit')
 			if f.extension == 'nes':
 				return self.either(c, 'fceux')
 			if f.extension in ('swc', 'smc'):
 				return self.either(c, 'zsnes')
+			if f.extension in ('odt', 'ods', 'odp', 'odf', 'odg',
+					'doc', 'xls'):
+				return self.either(c, 'libreoffice', 'soffice', 'ooffice')
 
 		if f.mimetype is not None:
 			if INTERPRETED_LANGUAGES.match(f.mimetype):
@@ -82,7 +86,7 @@ class CustomApplications(Applications):
 		if f.video or f.audio:
 			if f.video:
 				c.flags += 'd'
-			return self.either(c, 'mplayer', 'totem')
+			return self.either(c, 'mplayer', 'smplayer', 'vlc', 'totem')
 
 		if f.image:
 			return self.either(c, 'feh', 'eog', 'mirage')
@@ -96,7 +100,7 @@ class CustomApplications(Applications):
 
 
 	# ----------------------------------------- application definitions
-	# Note: Trivial applications are defined at the bottom
+	# Note: Trivial application definitions are at the bottom
 	def app_pager(self, c):
 		return tup('less', '-R', *c)