git.lucas.co / cce-compositor
Wayland compositor (wlroots)
git clone https://git.lucas.co/cce-compositor.git

commit2a6b0cf775b4c4417437aff53576b6c758c5de34
parentddccacbd30
authorLucas Galante <[email protected]>
date2026-08-22 15:21
refactor: call the desktop menu's overview entry by its current name

The menu's entry was still labelled "Expose Windows" and invoked
`ccectl expose`. That alias is retired but still handled, so the button
worked — it was just the only place left naming the action that way,
and `ccectl`'s own command list has advertised `overview` for a while.

Pure rename: button text, button id, and the ctl command, all to
"overview". No behaviour change.

Co-Authored-By: Claude Opus 5 <[email protected]>

 scripts/cce-desktop-menu | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/scripts/cce-desktop-menu b/scripts/cce-desktop-menu
index 59e5fb9..bd25887 100644
--- a/scripts/cce-desktop-menu
+++ b/scripts/cce-desktop-menu
@@ -36,7 +36,7 @@ json_layout='{
         { "type": "button", "text": "Data Editor", "id": "data_editor" },
         { "type": "button", "text": "Applications", "id": "apps" },
         { "type": "button", "text": "System Settings", "id": "settings" },
-        { "type": "button", "text": "Expose Windows", "id": "expose" },
+        { "type": "button", "text": "Overview", "id": "overview" },
         { "type": "button", "text": "Reload Config", "id": "reload" },
         { "type": "button", "text": "Logout", "id": "exit" }
       ]
@@ -73,8 +73,8 @@ case "$btn" in
         # Run settings interface
         "$HOME"/.local/bin/cce-system-interface &
         ;;
-    "expose")
-        $CCE_CTL expose
+    "overview")
+        $CCE_CTL overview
         ;;
     "reload")
         $CCE_CTL reload