We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17e114d commit 147963eCopy full SHA for 147963e
Parent.py
@@ -27,7 +27,7 @@
27
####Constants-------------------------------------------------------------------
28
DEFAULT = "<default>"
29
FIREFOX = '/usr/bin/firefox'
30
-NAUTILUS = '/usr/bin/nautilus --no-desktop'
+NAUTILUS = '/usr/bin/nautilus'
31
DOLPHIN = '/usr/bin/dolphin'
32
KONQUEROR = '/usr/bin/konqueror'
33
THUNAR = '/usr/bin/thunar'
@@ -722,7 +722,7 @@ def browse_folder(self):
722
if os.path.exists(THUNAR):
723
os.system('%s "%s" &'%(THUNAR,path))
724
elif os.path.exists(NAUTILUS):
725
- os.system('%s "%s" &'%(NAUTILUS,path))
+ os.system('%s --no-desktop "%s" &'%(NAUTILUS,path))
726
elif os.path.exists(DOLPHIN):
727
os.system('%s "%s" &'%(DOLPHIN,path))
728
elif os.path.exists(KONQUEROR):
0 commit comments