#!/bin/sh
# Dolphin
# https://dolphin.kde.org
# Unlike most applications,
# Dolphin does not honor the current working directory,
# and opens in the home directory.
# Mitigate the need to explicitely type `dolphin` with the current path.
if [ $# = 0 ]; then
set -- '.'
fi
dolphin "$@"