roundabout,
created on Thursday, 14 August 2025, 19:13:45 (1755198825),
received on Thursday, 14 August 2025, 19:13:49 (1755198829)
Author identity: Vlad <vlad.muntoiu@gmail.com>
6a6f98a308eb425eb83bcce4b6cdf964c50d01a2
applets/soreaus-menu/__init__.py
@@ -0,0 +1,99 @@
""" The MIT License (MIT) Copyright (c) 2025 Scott Moreau <oreaus@gmail.com>, modified by <root@roundabout-host.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ import os from pathlib import Path import locale import panorama_panel import gi gi.require_version("Gtk", "4.0") from gi.repository import Gtk, GLib, Gio, Gdk, Pango import subprocess class SoreausMenu(panorama_panel.Applet): name = "Soreau's menu" description = "Flowbox app menu" def __init__(self, orientation=Gtk.Orientation.HORIZONTAL, config=None): super().__init__() self.button = Gtk.MenuButton() image = Gtk.Image.new_from_icon_name("wayfire") image.set_icon_size(Gtk.IconSize.LARGE) self.append(self.button) self.button.set_child(image) self.popover = Gtk.Popover() self.popover.set_parent(self) self.flowbox = Gtk.FlowBox() self.populate_menu_entries() self.scrolled_window = Gtk.ScrolledWindow() self.scrolled_window.set_child(self.flowbox) self.popover.set_child(self.scrolled_window) self.popover.set_size_request(300, 400) self.button.set_popover(self.popover) def popover_popup(self, parent): self.popover.popup() def app_button_clicked(self, app_button): print(f"Launching: {app_button.command}") if os.getenv("LD_PRELOAD") is not None: del os.environ["LD_PRELOAD"] subprocess.Popen(app_button.command, start_new_session=True) self.popover.popdown() def populate_menu_entries(self): app_infos = Gio.AppInfo.get_all() # Get all registered applications for app_info in app_infos: app_name = app_info.get_display_name() app_button = Gtk.Button() app_button.command = app_info.get_executable() app_button.set_tooltip_text(app_name) app_label = Gtk.Label(label=app_name) app_label.set_ellipsize(Pango.EllipsizeMode.END) app_label.set_max_width_chars(7) app_button_box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL) app_button_box.append(app_label) app_button.set_child(app_button_box) self.flowbox.append(app_button) app_button.connect("clicked", lambda *_, app_button=app_button: self.app_button_clicked(app_button)) image = Gtk.Image.new_from_icon_name("foobarbaz") image.set_icon_size(Gtk.IconSize.LARGE) icon = app_info.get_icon() if icon: icon_name = icon.to_string() if icon_name[0] == '/': image.set_from_file(icon_name) else: image.set_from_icon_name(icon_name) else: print(f"No icon found: {app_name}") image.set_from_icon_name(app_name.lower()) app_button_box.prepend(image)