From: longpanda Date: Fri, 21 Feb 2025 05:00:01 +0000 (+0800) Subject: Update Linux GUI type condition X-Git-Tag: v1.1.03~2 X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/Ventoy.git/commitdiff_plain/0600576c78712b25cc9303c6f8db340ffe86917f?ds=inline Update Linux GUI type condition --- diff --git a/INSTALL/tool/distro_gui_type.json b/INSTALL/tool/distro_gui_type.json index cbfbc2f..f400fa9 100644 --- a/INSTALL/tool/distro_gui_type.json +++ b/INSTALL/tool/distro_gui_type.json @@ -19,5 +19,34 @@ "condition": "equal", "expression": "ukui", "gui": "gtk3" + }, + { + "type": "env", + "name": "DESKTOP_SESSION", + "condition": "equal", + "expression": "cinnamon", + "gui": "gtk3" + }, + { + "type": "env", + "name": "DESKTOP_SESSION", + "condition": "equal", + "expression": "gnome", + "gui": "gtk3" + }, + { + "type": "env", + "name": "DESKTOP_SESSION", + "condition": "equal", + "expression": "plasma", + "gui": "qt5" + }, + { + "type": "env", + "name": "DESKTOP_SESSION", + "condition": "equal", + "expression": "xfce", + "gui": "gtk3" } + ]