1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
# -*- python -*-
# This file is part of Fusion-icon.
# Fusion-icon is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# Fusion-icon 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 Publaic License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Original copyright 2007 Christopher Williams <christopherw@verizon.net>
# Author(s): crdlb, kozec, raveit65
import os
mesa_libgl_locations = (
# ubuntu
'/usr/lib/fglrx/libGL.so.1.2.xlibmesa',
'/usr/lib/nvidia/libGL.so.1.2.xlibmesa',
# gentoo
'/usr/lib/opengl/xorg-x11/lib/libGL.so.1.2',
# archlinux
'/opt/mesa-xgl/lib/libGL.so.1.2',
'/lib/mesa/libGL.so.1.2',
# debian
'/usr/lib/fglrx/diversions/libGL.so.1.2',
'/usr/share/nvidia-glx/diversions/libGL.so.1.2',
)
compiz_args = ['ccp', '--replace', '--sm-disable', '--ignore-desktop-hints']
config_home = os.environ.get('XDG_CONFIG_HOME',
os.path.join(os.environ['HOME'], '.config'))
config_folder = os.path.join(config_home, 'compiz')
config_file = os.path.join(config_folder, 'fusion-icon')
#app
# base command, full command line
# label
apps = {
'ccsm':
('ccsm', ['ccsm'],
'Settings Manager'),
'emerald theme manager':
('emerald-theme-manager', ['emerald-theme-manager'],
'Emerald Theme Manager'),
}
#wm
# base command, full command line
# label, desktop, special flags, command to run before replacing
wms = {
'marco':
('marco', ['marco', '--replace'],
'Marco', 'mate', None, None,),
'metacity':
('metacity', ['metacity', '--replace'],
'Metacity', 'gnome', None, None,),
'mutter':
('mutter', ['mutter', '--replace'],
'Mutter', 'gnome', None, None,),
'kwin':
('kde', ['kwin', '--replace'],
'KWin', 'kde', None, None),
'xfwm4':
('xfwm4', ['xfwm4'],
'Xfwm4', 'xfce', ['noreplace'], ['killall', 'xfwm4']),
'openbox':
('openbox', ['openbox', '--replace'],
'Openbox', None, None, None),
'blackbox':
('blackbox', ['blackbox', '--replace'],
'Blackbox', None, None, None),
'fvwm':
('fvwm', ['fvwm', '--replace'],
'FVWM', None, None, None),
'icewm':
('icewm', ['icewm', '--replace'],
'IceWM', None, None, None),
}
#decorator
# base command, full command line,
# label, desktop environment
decorators = {
'emerald':
('emerald', 'emerald --replace',
'Emerald', None),
'gwd':
('gtk-window-decorator', 'gtk-window-decorator --replace',
'GTK+ Window Decorator', 'mate'),
}
#option:
# (unused), switch,
# label
options = {
'indirect rendering':
(None, '--indirect-rendering', 'Indirect Rendering'),
'loose binding':
(None, '--loose-binding', 'Loose Binding'),
}
|