Remove wm-ng
[grml-scripts.git] / usr_bin / wm-ng
diff --git a/usr_bin/wm-ng b/usr_bin/wm-ng
deleted file mode 100755 (executable)
index d8fc87a..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-# Filename:      wm-ng
-# Purpose:       a wrapper script to call fluxbox with some additional features activated
-# Authors:       grml-team (grml.org)
-# Bug-Reports:   see http://grml.org/bugs/
-# License:       This file is licensed under the GPL v2.
-################################################################################
-
-# start Grml's fluxbox setup only if fluxbox is present
-if [ -x "$(which fluxbox 2>/dev/null)" ] ; then
-  gkrellm -g -1+26 &
-  (sleep 2; idesk &) &
-  fluxbox
-elif [ "$(basename $(readlink -f $(which x-window-manager 2>/dev/null)))" != "fluxbox" ] && \
-     [ "$(basename $(readlink -f $(which x-window-manager 2>/dev/null)))" != "$(basename $0)" ] ; then
-    # fall back unless it's set to fluxbox or points back to wm-ng
-    x-window-manager
-else
-  echo "Error: fluxbox not present + x-window-manager is not an alternative neither." >&2
-  exit 1
-fi
-
-exit $?
-
-## END OF FILE #################################################################