看了半天:/usr/share/cinnamon/applets/menu@cinnamon.org,終于挖到了精髓。
Cinnamon.AppSystem.get_default() 獲取系統應用數據
get_tree() 獲取樹機構
get_root_directory() 獲取根目錄
iter() 遍歷
get_name() 獲取名稱
get_desktop_file_id() 獲取desktop的id
lookup_app(desktopId) 獲取app
const Applet = imports.ui.applet;
const Cinnamon = imports.gi.Cinnamon;
const CMenu = imports.gi.CMenu;let appsys = Cinnamon.AppSystem.get_default();function MyApplet(orientation, panel_height, instance_id) {this._init(orientation, panel_height, instance_id);
}MyApplet.prototype = {__proto__: Applet.IconApplet.prototype,_init: function(orientation, panel_height, instance_id) {Applet.IconApplet.prototype._init.call(this, orientation, panel_height, instance_id);this.set_applet_icon_name("cinnamon-symbolic");this.set_applet_tooltip(_("StartMenu")); },on_applet_clicked: function() {let tree = appsys.get_tree();let root = tree.get_root_directory();let iter = root.iter();let nextType;while (nextType = iter.next()) {if (nextType == CMenu.TreeItemType.DIRECTORY) {let dir = iter.get_directory();global.logError(dir.get_name());let iter1 = dir.iter();let nextType1;while (nextType1 = iter1.next()) {if (nextType1 == CMenu.TreeItemType.ENTRY) { let desktopId = iter1.get_entry().get_desktop_file_id(); let app = appsys.lookup_app(desktopId);global.logError(dir.get_name() + " - " + app.get_name());//onclick: app.open_new_window(-1);}}}}}};function main(metadata, orientation, panel_height, instance_id) {return new MyApplet(orientation, panel_height, instance_id);
}
輸出
error t=2025-06-01T22:22:38Z 附件
error t=2025-06-01T22:22:38Z 附件 - 計算器
error t=2025-06-01T22:22:38Z 附件 - 鍵盤布局測試器
error t=2025-06-01T22:22:38Z 附件 - 截圖 (Xfce4-screenshooter)
error t=2025-06-01T22:22:38Z 附件 - 截圖 (Gnome-screenshot)
error t=2025-06-01T22:22:38Z 附件 - 批量重命名
error t=2025-06-01T22:22:38Z 附件 - 文件壓縮器
error t=2025-06-01T22:22:38Z 附件 - 虛擬鍵盤
error t=2025-06-01T22:22:38Z 附件 - 應用程序查找器
error t=2025-06-01T22:22:38Z 附件 - gedit
error t=2025-06-01T22:22:38Z 附件 - LXQt 歸檔管理器
error t=2025-06-01T22:22:38Z 附件 - Nemo
error t=2025-06-01T22:22:38Z 附件 - PCManFM-Qt 文件管理器
error t=2025-06-01T22:22:38Z 附件 - Pinentry
error t=2025-06-01T22:22:38Z 附件 - Pinentry
error t=2025-06-01T22:22:38Z 圖形
error t=2025-06-01T22:22:38Z 圖形 - 海天鷹畫圖
error t=2025-06-01T22:22:38Z 圖形 - 海天鷹看圖
error t=2025-06-01T22:22:38Z 圖形 - FlexBV
error t=2025-06-01T22:22:38Z 圖形 - GNOME 之眼
error t=2025-06-01T22:22:38Z 圖形 - LXImage-Qt
error t=2025-06-01T22:22:38Z 圖形 - ScreenGrab
error t=2025-06-01T22:22:38Z 互聯網
error t=2025-06-01T22:22:38Z 互聯網 - Avahi SSH 服務器的瀏覽器
error t=2025-06-01T22:22:38Z 互聯網 - Avahi VNC 服務器的瀏覽器
error t=2025-06-01T22:22:38Z 互聯網 - Firefox
error t=2025-06-01T22:22:38Z 互聯網 - Microsoft Edge
error t=2025-06-01T22:22:38Z 互聯網 - Microsoft Edge
error t=2025-06-01T22:22:38Z 其它
error t=2025-06-01T22:22:38Z 其它 - 查看文件
error t=2025-06-01T22:22:38Z 其它 - 訪問提示
error t=2025-06-01T22:22:38Z 其它 - 門戶
error t=2025-06-01T22:22:38Z 其它 - 網絡管理器小程序
error t=2025-06-01T22:22:38Z 其它 - 文件
error t=2025-06-01T22:22:38Z 其它 - 文件傳輸
error t=2025-06-01T22:22:38Z 其它 - 系統門戶
error t=2025-06-01T22:22:38Z 其它 - 自動運行提示
error t=2025-06-01T22:22:38Z 其它 - Cinnamon Killer Daemon
error t=2025-06-01T22:22:38Z 其它 - filec
error t=2025-06-01T22:22:38Z 其它 - Geoclue Demo agent
error t=2025-06-01T22:22:38Z 其它 - Muffin
error t=2025-06-01T22:22:38Z 其它 - Nemo
error t=2025-06-01T22:22:38Z 其它 - Openbox
error t=2025-06-01T22:22:38Z 其它 - PolicyKit 認證代理
error t=2025-06-01T22:22:38Z 其它 - Portal
error t=2025-06-01T22:22:38Z 其它 - Screensaver
error t=2025-06-01T22:22:38Z 其它 - Where am I?
error t=2025-06-01T22:22:38Z 其它 - Zenity
error t=2025-06-01T22:22:38Z 編程
error t=2025-06-01T22:22:38Z 編程 - Bluefish Editor
error t=2025-06-01T22:22:38Z 編程 - CMake
error t=2025-06-01T22:22:38Z 編程 - Qt Assistant
error t=2025-06-01T22:22:38Z 編程 - Qt D-Bus Viewer
error t=2025-06-01T22:22:38Z 編程 - Qt Linguist
error t=2025-06-01T22:22:38Z 編程 - Qt Widgets Designer
error t=2025-06-01T22:22:38Z 影音
error t=2025-06-01T22:22:38Z 影音 - 海天鷹播放器
error t=2025-06-01T22:22:38Z 影音 - 酷狗
error t=2025-06-01T22:22:38Z 影音 - 音量控制
error t=2025-06-01T22:22:38Z 影音 - mpv 媒體播放器
error t=2025-06-01T22:22:38Z 影音 - PulseAudio 音量控制
error t=2025-06-01T22:22:38Z 影音 - Qt V4L2 test Utility
error t=2025-06-01T22:22:38Z 影音 - Qt V4L2 video capture utility
error t=2025-06-01T22:22:38Z 首選項
error t=2025-06-01T22:22:38Z 首選項 - 背景
error t=2025-06-01T22:22:38Z 首選項 - 常規
error t=2025-06-01T22:22:38Z 首選項 - 窗口
error t=2025-06-01T22:22:38Z 首選項 - 窗口平鋪
error t=2025-06-01T22:22:38Z 首選項 - 電源管理
error t=2025-06-01T22:22:38Z 首選項 - 動作
error t=2025-06-01T22:22:38Z 首選項 - 輔助功能
error t=2025-06-01T22:22:38Z 首選項 - 高級網絡配置
error t=2025-06-01T22:22:38Z 首選項 - 工作區
error t=2025-06-01T22:22:38Z 首選項 - 繪圖板
error t=2025-06-01T22:22:38Z 首選項 - 鍵盤
error t=2025-06-01T22:22:38Z 首選項 - 開機自啟動程序
error t=2025-06-01T22:22:38Z 首選項 - 可移動驅動器和介質
error t=2025-06-01T22:22:38Z 首選項 - 擴展
error t=2025-06-01T22:22:38Z 首選項 - 面板
error t=2025-06-01T22:22:38Z 首選項 - 面板小工具
error t=2025-06-01T22:22:38Z 首選項 - 屏幕保護程序
error t=2025-06-01T22:22:38Z 首選項 - 熱區
error t=2025-06-01T22:22:38Z 首選項 - 日期和時間
error t=2025-06-01T22:22:38Z 首選項 - 色彩
error t=2025-06-01T22:22:38Z 首選項 - 聲音
error t=2025-06-01T22:22:38Z 首選項 - 手勢
error t=2025-06-01T22:22:38Z 首選項 - 首選應用程序
error t=2025-06-01T22:22:38Z 首選項 - 鼠標和觸摸板
error t=2025-06-01T22:22:38Z 首選項 - 特效
error t=2025-06-01T22:22:38Z 首選項 - 通知
error t=2025-06-01T22:22:38Z 首選項 - 網絡
error t=2025-06-01T22:22:38Z 首選項 - 系統設置
error t=2025-06-01T22:22:38Z 首選項 - 系統信息
error t=2025-06-01T22:22:38Z 首選項 - 顯示
error t=2025-06-01T22:22:38Z 首選項 - 選擇字體
error t=2025-06-01T22:22:38Z 首選項 - 夜燈
error t=2025-06-01T22:22:38Z 首選項 - 音量控制
error t=2025-06-01T22:22:38Z 首選項 - 隱私
error t=2025-06-01T22:22:38Z 首選項 - 用戶與組
error t=2025-06-01T22:22:38Z 首選項 - 帳戶詳情
error t=2025-06-01T22:22:38Z 首選項 - 主題
error t=2025-06-01T22:22:38Z 首選項 - 桌面 (Pcmanfm-qt)
error t=2025-06-01T22:22:38Z 首選項 - 桌面 (Cinnamon-settings)
error t=2025-06-01T22:22:38Z 首選項 - 桌面小工具
error t=2025-06-01T22:22:38Z 首選項 - Cinnamon Menu Editor
error t=2025-06-01T22:22:38Z 首選項 - Fcitx 5 配置
error t=2025-06-01T22:22:38Z 首選項 - Fcitx 5 配置
error t=2025-06-01T22:22:38Z 首選項 - Fcitx 5 遷移向導
error t=2025-06-01T22:22:38Z 首選項 - Fcitx 5 Qt5 圖形界面封裝器
error t=2025-06-01T22:22:38Z 首選項 - Fcitx 5 Qt6 圖形界面封裝器
error t=2025-06-01T22:22:38Z 首選項 - Openbox 設置
error t=2025-06-01T22:22:38Z 首選項 - PulseAudio 音量控制
error t=2025-06-01T22:22:38Z 首選項 - Thunar 首選項
error t=2025-06-01T22:22:38Z 首選項 - Xfce 終端設置
error t=2025-06-01T22:22:38Z 系統管理
error t=2025-06-01T22:22:38Z 系統管理 - 磁盤占用分析器
error t=2025-06-01T22:22:38Z 系統管理 - 海天鷹浮球
error t=2025-06-01T22:22:38Z 系統管理 - 海天鷹文管
error t=2025-06-01T22:22:38Z 系統管理 - 鍵盤布局
error t=2025-06-01T22:22:38Z 系統管理 - 系統監視器
error t=2025-06-01T22:22:38Z 系統管理 - 下拉式 QTerminal
error t=2025-06-01T22:22:38Z 系統管理 - 用戶和用戶組
error t=2025-06-01T22:22:38Z 系統管理 - 終端
error t=2025-06-01T22:22:38Z 系統管理 - 終端首選項
error t=2025-06-01T22:22:38Z 系統管理 - Avahi Zeroconf 瀏覽器
error t=2025-06-01T22:22:38Z 系統管理 - Cinnamon
error t=2025-06-01T22:22:38Z 系統管理 - Cinnamon 2D
error t=2025-06-01T22:22:38Z 系統管理 - Cinnamon (Wayland session)
error t=2025-06-01T22:22:38Z 系統管理 - Fcitx 5
error t=2025-06-01T22:22:38Z 系統管理 - Hardware Locality lstopo
error t=2025-06-01T22:22:38Z 系統管理 - qps
error t=2025-06-01T22:22:38Z 系統管理 - QTerminal
error t=2025-06-01T22:22:38Z 系統管理 - Thunar 文件管理器
error t=2025-06-01T22:22:38Z 系統管理 - Xfce 終端
error t=2025-06-01T22:22:38Z 系統管理 - Xwayland