summaryrefslogtreecommitdiff
path: root/rc/connect/modules/dolphin/commands/:dolphin
blob: 48d12e7424eae424ccf157b35229d5b5ec1e1905 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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 "$@"