pkgsrc-wip/rox-gtk2/files/rox
Antonio Marques e8d6aac814 ROX-Filer is a simple and easy to use graphical file manager for X11, the
windowing system used on Unix and Unix-like operating systems. It is also
the core component of the ROX Desktop.

This is an updated version of pkgsrc/sysutils/rox, it now uses gtk+2
and shared-mime-info.
2003-12-04 21:33:00 +00:00

20 lines
522 B
Bash

#!/bin/sh
#
# $NetBSD: rox,v 1.1.1.1 2003/12/04 21:33:00 froz Exp $
#
# The user's Choices directory
ROX_CHOICES_DIR="$HOME/.RoxChoices"
#
# If CHOICESPATH is not set, then check to see whether the user has
# a $ROX_CHOICES_DIR directory. If they haven't, set one up.
#
if [ -z "$CHOICESPATH" ]; then
[ ! -d "$ROX_CHOICES_DIR" ] && \
cp -R @PREFIX@/share/rox/Choices "$ROX_CHOICES_DIR";
export CHOICESPATH="$ROX_CHOICES_DIR";
fi
# Run the ROX-Filer application
exec @PREFIX@/share/rox/ROX-Filer/AppRun "$@"