updated on Sat Jan 14 12:12:45 UTC 2012
[aur-mirror.git] / menumaker-compiz / menumaker.patch
blobad4bf7bea2b20a4109f25fbb9d7ff90d0a558c37
1 diff -aur menumaker-0.99.7/MenuMaker/__init__.py menumaker-0.99.7-2/MenuMaker/__init__.py
2 --- menumaker-0.99.7/MenuMaker/__init__.py 2005-12-13 01:01:42.000000000 -0800
3 +++ menumaker-0.99.7-2/MenuMaker/__init__.py 2010-10-13 18:14:07.000000000 -0700
4 @@ -36,7 +36,9 @@
5 Kw("Deskmenu") : KwS("Deskmenu"),
6 Kw("Xfce4") : KwS("Xfce", "Xfce4"),
7 Kw("OpenBox3") : KwS("OpenBox", "OpenBox3"),
8 - Kw("WindowMaker") : KwS("WindowMaker", "WMaker")
9 + Kw("WindowMaker") : KwS("WindowMaker", "WMaker"),
10 + Kw("Compiz") : KwS("Compiz", "Compiz-deskmenu"),
11 + Kw("MyGTKMenu") : KwS("MyGTKMenu")
15 @@ -47,12 +49,13 @@
16 terms = [
17 (T.xterm, KwS("Xterm")),
18 (T._xfterm, KwS("Xfterm")),
19 - (T.xvt, KwS("Rxvt", "Xvt")),
20 + (T.xvt, KwS("Rxvt", "Xvt", "Urxvt")),
21 (T.aterm, KwS("Aterm")),
22 (T.wterm, KwS("Wterm")),
23 (T.Eterm, KwS("Eterm")),
24 (T._gterm, KwS("GNOME-terminal", "Gterm")),
25 - (T._konsole, KwS("Konsole"))
26 + (T._konsole, KwS("Konsole")),
27 + (T.roxterm, KwS("ROXterm"))
31 diff -aur menumaker-0.99.7/Prophet/Legacy/Shell.py menumaker-0.99.7-2/Prophet/Legacy/Shell.py
32 --- menumaker-0.99.7/Prophet/Legacy/Shell.py 2005-12-13 00:50:13.000000000 -0800
33 +++ menumaker-0.99.7-2/Prophet/Legacy/Shell.py 2010-10-13 18:31:31.000000000 -0700
34 @@ -128,7 +128,10 @@
35 comment = "RISCOS-like file manager"
36 keywords = KwS(FileManager, Shell)
39 +class roxterm(_Terminal) :
40 + name = "ROXterm"
41 + comment = "X terminal emulator for ROX"
42 + keywords = KwS(TerminalEmulator)
45 class tuxcmd(_App, _X11App) :
46 @@ -200,7 +203,7 @@
47 class xvt(_Terminal) : # FIXME : do we need a separate entry for rxvt?
48 name = "Rxvt"
49 comment = "X terminal emulator"
50 - exes = ["rxvt", "xvt"]
51 + exes = ["rxvt", "xvt", "urxvt"]
52 keywords = KwS(TerminalEmulator)