You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebase/kioslave/system/entries/kio_system_documenthelper

15 lines
338 B

#!/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