File cinnamon-fallback-icewm.patch of Package cinnamon
--- a/files/usr/bin/cinnamon-launcher
+++ b/files/usr/bin/cinnamon-launcher
@@ -3,7 +3,7 @@
""" Launches or restarts cinnamon
"""
-FALLBACK_COMMAND = "metacity"
+FALLBACK_COMMAND = "icewm"
FALLBACK_ARGS = ("--replace",)
import os
@@ -18,15 +18,6 @@ gettext.install("cinnamon", "/usr/share/
panel_process_name = None
panel_cmd = None
-if os.path.exists("/usr/bin/mate-panel"):
- panel_process_name = "mate-panel"
- panel_cmd = "mate-panel --replace &"
-elif os.path.exists("/usr/bin/gnome-panel"):
- panel_process_name = "gnome-panel"
- panel_cmd = "gnome-panel --replace &"
-elif os.path.exists("/usr/bin/tint2"):
- panel_process_name = "tint2"
- panel_cmd = "killall tint2; tint2 &"
def confirm_restart():
d = Gtk.MessageDialog(parent=None, flags=0, message_type=Gtk.MessageType.WARNING, buttons=Gtk.ButtonsType.YES_NO)