1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
//! @page etc_root_menu_plist etc/RootMenu.plist
//! Compiled-in default configuration for the root menu. See @ref root_menu
//! for details.
//! @include etc/RootMenu.plist
// Definition of root menu. Follows Window Maker plist order.
("Root Menu",
// ("Applications",
// ("Terminal", Execute, "/usr/bin/foot"),
// ("Chrome", ShellExecute, "/usr/bin/google-chrome --enable-features=UseOzonePlatform --ozone-platform=wayland --user-data-dir=/tmp/chrome-wayland")),
("Applications...", GeneratePlistMenu, "/usr/bin/wlmtool genmenu"),
("Outputs...",
("Magnify", OutputMagnify),
("Reduce", OutputReduce),
("Configure", Execute, "wdisplays"),
("Save State", OutputSaveState)),
("Workspaces...",
("New", WorkspaceAdd),
("Destroy Last", WorkspaceDestroyLast),
("Go To Previous", WorkspacePrevious),
("Go To Next", WorkspaceNext)),
("Lock", LockScreen),
(Exit, Quit))
|