We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
strace -c electron30 /usr/lib/deltachat-desktop/app.asar
close DeltaChat from tray icon after main window appears
strace report include:
% time seconds usecs/call calls errors syscall ------ ----------- ----------- --------- --------- ------------------ 90.08 0.388022 29847 13 1 wait4 2.64 0.011358 7 1577 ppoll …
became root and do:
root
cd /bin/ mv xdg-mime /root/ cp -r echo xdg-mime
repeat strace run from above, output is:
% time seconds usecs/call calls errors syscall ------ ----------- ----------- --------- --------- ------------------ 38.23 0.021738 1672 13 1 wait4 16.67 0.009478 5 1591 ppoll …
Changes in launch time is visually noticeable - it opens almost instantly
04:19:54 wait4(33498, xdg-mime: application argument missing Try 'xdg-mime --help' for more information. [{WIFEXITED(s) && WEXITSTATUS(s) == 4}], 0, NULL) = 33498 <0.273471>
It seems xdg-mime is not doing anything useful and quits with an error.
xdg-mime
Fast workaround is: /usr/bin/bash -c 'function xdg-mime { echo ; }; export -f xdg-mime; /usr/bin/deltachat-desktop --minimized'
/usr/bin/bash -c 'function xdg-mime { echo ; }; export -f xdg-mime; /usr/bin/deltachat-desktop --minimized'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
strace -c electron30 /usr/lib/deltachat-desktop/app.asar
close DeltaChat from tray icon after main window appears
strace report include:
became
root
and do:repeat strace run from above, output is:
Changes in launch time is visually noticeable - it opens almost instantly
null
strace logs include
It seems
xdg-mime
is not doing anything useful and quits with an error.Fast workaround is:
/usr/bin/bash -c 'function xdg-mime { echo ; }; export -f xdg-mime; /usr/bin/deltachat-desktop --minimized'
The text was updated successfully, but these errors were encountered: