summaryrefslogtreecommitdiffstats
path: root/kioslave/system/entries/kio_system_documenthelper
blob: 7cc2c2b2da391ea925bbee216599dd15d750b550 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
# Script used by by the document.desktop entry to determine if it must be
# shown or not
#
# Copyright GPL v2 by Kevin Ottens <ervin ipsquad net>
#

document_path=`kde-config --userpath document | sed "s/\/\$//"`
home_path=`echo $HOME | sed "s/\/\$//"`

if test "$document_path" != "$home_path" ; then
  echo $document_path
fi