/usr/bin/fvwm-crystal is in fvwm-crystal 3.2.7+dfsg-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | #!/bin/sh
# Startup script for FVWM-Crystal project (http://fvwm-crystal.berlios.de/)
# Written by: Maciej Delmanowski <harnir@post.pl>
# This script searchs for configuration files in different locations, picks
# one and launches fvwm2 with specified configuration file.
# You can set 'FVWMCRYSTAL_BASECONFIG' environment variable to omit
# searching for configuration and use the given path.
# Name of the configuration file
configname=config
# Default path
# if a variable 'configfile' is defined in the environment, its value is
# preserved; otherwise, the scripts look for configuration in common places.
configfile="$HOME/fvwm-crystal/$configname"
if [ -n "$FVWMCRYSTAL_BASECONFIG" ]
then
configfile="$FVWMCRYSTAL_BASECONFIG"
break;
elif [ -f "$HOME/fvwm-crystal/$configname" ]
then
configfile=$HOME/fvwm-crystal/$configname;
break;
elif [ -f "`dirname ${0}`/../share/fvwm-crystal/fvwm/$configname" ]
then
configfile="`dirname ${0}`/../share/fvwm-crystal/fvwm/$configname";
break;
fi
exec fvwm -f $configfile $@
|