SUMMARY Could you please add a command-line argument to start dolphin in fullscreen mode? (-f or --fullscreen) This would allow users to create more useful shortcuts for dolphin. One example would be using dolphin for a media center as described here: https://unix.stackexchange.com/a/582832/233262 Additional view options for dolphin would also be useful. As of version 18.08, which is the version that's currently packaged on latest Debian stable, the only view option when starting from command line is --split which starts dolphin with a split view. SOFTWARE/OS VERSIONS Linux/KDE Plasma: 5.14.5 KDE Plasma Version: 5.14 KDE Frameworks Version: 5.54.0 Qt Version: 5.11.3
wmctrl -r Dolphin -b toggle,fullscreen
*** This bug has been marked as a duplicate of bug 413255 ***
Thanks, you two. After installing wmctrl this is the full command which worked to start dolphin to open a directory in fullscreen mode and with larger icons (I also added this to the StackExchange question linked above): QT_SCALE_FACTOR=2 dolphin ~/Foldername & sleep 0.8 && wmctrl -r "Foldername — Dolphin" -b add,fullscreen To start it maximized instead of fullscreen just replace "fullscreen" with "maximized_horz,maximized_vert" I opened a new issue for a command-line argument to start dolphin maximized: https://bugs.kde.org/show_bug.cgi?id=420882