Bug 425776 - Add a "quiet" mode to dolphin
Summary: Add a "quiet" mode to dolphin
Status: RESOLVED NOT A BUG
Alias: None
Product: dolphin
Classification: Applications
Component: general (show other bugs)
Version: 20.08.0
Platform: Arch Linux Linux
: NOR normal
Target Milestone: ---
Assignee: Dolphin Bug Assignee
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-08-25 12:05 UTC by Axel
Modified: 2020-08-25 19:07 UTC (History)
3 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Axel 2020-08-25 12:05:22 UTC
SUMMARY
As a user I want to start a dolphin in the background from my command line without receive output from the dolphin process.

STEPS TO REPRODUCE
1. Start a dolphin with "dolphin > /dev/null &"
2. The shell still receives the output from stderr

OBSERVED RESULT
$  dolphin > /dev/null &
[1] 14361
$ kf.itemviews: User of KWidgetItemDelegate should not delete widgets created by createItemWidgets!
kf.itemviews: User of KWidgetItemDelegate should not delete widgets created by createItemWidgets!
kf.itemviews: User of KWidgetItemDelegate should not delete widgets created by createItemWidgets!

EXPECTED RESULT
Use "dolphin --silent" or "dolphin --quiet" to stop receiving stdout or stderr from the dolphin process.

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Arch Linux
(available in About System)
KDE Plasma Version: 5.19.4
KDE Frameworks Version: 5.73.0
Qt Version: 5.15.0
Comment 1 Nate Graham 2020-08-25 14:09:09 UTC
Your shell has a built-in method to do this which works with any program:

dolphin >/dev/null 2>&1

No need to add a special thing to Dolphin. :)
Comment 2 Nicolas Fella 2020-08-25 19:07:21 UTC
Or use kdebugsettings to disable all dolphin output