From 4b805b23ac43835917f73d1ac57dff4c16e6eef0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20R=C4=99korajski?= Date: Tue, 29 Aug 2000 14:07:21 +0000 Subject: [PATCH] - xinitrc 3.0 xconfigs for window managers Changed files: fvwm.RunWM -> 1.1 fvwm.wm_style -> 1.1 --- fvwm.RunWM | 30 ++++++++++++++++++++++++++++++ fvwm.wm_style | 1 + 2 files changed, 31 insertions(+) create mode 100644 fvwm.RunWM create mode 100644 fvwm.wm_style 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 <