From: Jan Rękorajski Date: Tue, 29 Aug 2000 14:07:21 +0000 (+0000) Subject: - xinitrc 3.0 xconfigs for window managers X-Git-Tag: fvwm-1_24r-23~2 X-Git-Url: http://git.pld-linux.org/?p=packages%2Ffvwm.git;a=commitdiff_plain;h=4b805b23ac43835917f73d1ac57dff4c16e6eef0 - xinitrc 3.0 xconfigs for window managers Changed files: fvwm.RunWM -> 1.1 fvwm.wm_style -> 1.1 --- diff --git a/fvwm.RunWM b/fvwm.RunWM new file mode 100644 index 0000000..d1e9699 --- /dev/null +++ b/fvwm.RunWM @@ -0,0 +1,30 @@ +#!/bin/sh +# +# RunWM - this is a script used to launch window manager +# + +# first, find an M4-enabled config file (such as +# the one from AnotherLevel) for fvwm. +RCFILE="" +for tryfile in "$HOME/.fvwmrc.m4" "/etc/X11/AnotherLevel/fvwmrc.m4"; do + if [ -f "$tryfile" ]; then + RCFILE="$tryfile" + break + fi +done + +# if it really exists, use it; if not, fvwm2 or fvwm95 will +# automagically look for a config file in the regular places. +if [ -n "$RCFILE" ]; then + FVWMOPTIONS="-f $RCFILE" +else + FVWMOPTIONS="" +fi + +# if this works, we stop here +eval "exec /usr/X11R6/bin/fvwm ${FVWMOPTIONS}" +cat >&2 <