~ubuntu-branches/ubuntu/utopic/cairo-dock-plug-ins/utopic

« back to all changes in this revision

Viewing changes to compiz-icon/data/compiz-kill

Tags: upstream-2.4.0~0beta2
Import upstream version 2.4.0~0beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
# Compiz check for Cairo-Dock
4
 
#
5
 
# Copyright : (C) 2009 by Rémy Robertson
6
 
# E-mail    : fabounet@glx-dock.org
7
 
#
8
 
#
9
 
# This program is free software; you can redistribute it and/or
10
 
# modify it under the terms of the GNU General Public License
11
 
# as published by the Free Software Foundation; either version 2
12
 
# of the License, or (at your option) any later version.
13
 
#
14
 
# This program is distributed in the hope that it will be useful,
15
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
 
# GNU General Public License for more details.
18
 
# http://www.gnu.org/licenses/licenses.html#GPL
19
 
 
20
 
COMPIZ=$(pgrep compiz) || COMPIZ=0
21
 
XCOMPMGR=$(pgrep xcompmgr) || XCOMPMGR=0
22
 
 
23
 
if [ $COMPIZ -ne 0 ]; then
24
 
  kill $COMPIZ
25
 
fi
26
 
if [ $XCOMPMGR -ne 0 ]; then
27
 
  kill $XCOMPMGR
28
 
fi