diff options
Diffstat (limited to 'capplets/default-applications/mate-at-commandline.in.in')
-rw-r--r-- | capplets/default-applications/mate-at-commandline.in.in | 101 |
1 files changed, 0 insertions, 101 deletions
diff --git a/capplets/default-applications/mate-at-commandline.in.in b/capplets/default-applications/mate-at-commandline.in.in deleted file mode 100644 index f9d93b16..00000000 --- a/capplets/default-applications/mate-at-commandline.in.in +++ /dev/null @@ -1,101 +0,0 @@ -#!/bin/sh -# -# Copyright 2006 IBM Corp. -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of version 2 of the GNU General Public License -# as published by the Free Software Foundation -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. -# -############################################################################### -# -# NOTE: This script is intended to be run from the command line, -# MATE menu, or from the desktop autostart. -# -# /usr/bin/mate-at-visual -# /usr/bin/mate-at-mobility -# -# If the "-s" flag is used then it is assumed to have been invoked -# from /usr/share/mate/autostart/, and the first AT flagged -# to "startup" from MATECONF_ALL will be executed. -# - -USAGE="$0 [-s]" -MATECONF_PATH=/desktop/mate/applications/at -MATECONF_VISUAL="visual" -MATECONF_MOBILITY="mobility" -MATECONF_ALL="$MATECONF_VISUAL $MATECONF_MOBILITY" - -run_at() { - CMDLINE=`mateconftool-2 --get $MATECONF_PATH/$1/exec` - if [ $? -ne 0 ]; then - exit $? - fi - - if [ -z "$CMDLINE" ]; then - exit 2 - fi - - STARTUP=`mateconftool-2 --get $MATECONF_PATH/$1/startup` - if [ $? -ne 0 ]; then - exit $? - fi - - if [ ! -z "$AUTOSTART" ]; then - # assuming ran from /usr/share/mate/autostart - if [ "x$STARTUP" = "xtrue" ]; then - # mateconf indicated requested autostart - ($CMDLINE &) - fi - else - # run from command line or desktop menu - ($CMDLINE &) - fi -} - -case `basename $0` in - mate-at-visual ) - AT=$MATECONF_VISUAL - ;; - mate-at-mobility ) - AT=$MATECONF_MOBILITY - ;; - mate-at-session | * ) - AUTOSTART="yes" - AT=$MATECONF_ALL - ;; -esac - -while getopts "s" options; do - case $options in - s ) AUTOSTART="yes" - AT=$MATECONF_ALL - shift - ;; - \? ) echo $USAGE - exit 1 - ;; - * ) echo $USAGE - exit 1 - ;; - esac -done - -if [ $# -ne 0 ]; then - echo $USAGE - exit 1 -fi - -for I in $AT ; do - run_at $I -done - -#EOF |