Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37880429
en ru br
ALT Linux repos
S:0.10.1-alt1
5.0: 0.3.999-alt1

Group :: Graphical desktop/Other
RPM: lxde-lxpanel

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

Patch: lxpanel-xvt-default-terminal.patch
Download


diff --git a/lxpanel/src/configurator.c b/lxpanel/src/configurator.c
index 88c9e80..a78a305 100644
--- a/lxpanel/src/configurator.c
+++ b/lxpanel/src/configurator.c
@@ -1412,5 +1412,8 @@ lxpanel_get_file_manager()
 extern const char*
 lxpanel_get_terminal()
 {
-    return terminal_cmd ? terminal_cmd : "lxterminal -e %s";
+    struct stat st;
+    if( !terminal_cmd || stat(terminal_cmd, &st) || !S_ISREG(st.st_mode) || !(st.st_mode & S_IXUSR))
+        return "xvt -e %s";
+    else return terminal_cmd;
 }
 
design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
current maintainer: Michael Shigorin