Bug 425776

Summary: Add a "quiet" mode to dolphin
Product: [Applications] dolphin Reporter: Axel <navarroaxel>
Component: generalAssignee: Dolphin Bug Assignee <dolphin-bugs-null>
Status: RESOLVED NOT A BUG    
Severity: normal CC: kfm-devel, nate, nicolas.fella
Priority: NOR    
Version: 20.08.0   
Target Milestone: ---   
Platform: Arch Linux   
OS: Linux   
Latest Commit: Version Fixed In:
Sentry Crash Report:

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