mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
Ignore if TERM == dumb on ede-launch.
Check smallest allowed sizes for font and maxwidth in ede-desktop icons.
This commit is contained in:
@@ -274,7 +274,7 @@ static void ok_cb(Fl_Widget*, void* w) {
|
||||
const char* term = getenv("TERM");
|
||||
|
||||
/* also check if TERM get inherited from login console */
|
||||
if(!term || strcmp(term, "linux") == 0)
|
||||
if(!term || (strcmp(term, "linux") == 0) || (strcmp(term, "dumb") == 0))
|
||||
term = "xterm";
|
||||
|
||||
snprintf(buf, sizeof(buf), "%s -e %s", term, cmd);
|
||||
|
Reference in New Issue
Block a user