wok view pekwm/stuff/etc/pekwm/menu @ rev 24920

updated mp (5.2.10 -> 5.58)
author Hans-G?nter Theisgen
date Sun Apr 10 07:48:27 2022 +0100 (2022-04-10)
parents ebb2ca1fcaba
children
line source
1 # Menu config for pekwm
3 # Variables
4 INCLUDE = "vars"
6 RootMenu = "Pekwm" {
7 Submenu = "Favorite Applications" {
8 Entry = "Terminal" { Icon = "$PIXMAPS/xterm.png"; Actions = "Exec $TERM &" }
9 Entry = "Text Editor" { Icon = "$PIXMAPS/leafpad.png"; Actions = "Exec leafpad &" }
10 Entry = "Web Browser" { Icon = "$PIXMAPS/firefox.png"; Actions = "Exec firefox &" }
11 Entry = "File Manager" { Icon = "$PIXMAPS/pcmanfm.png"; Actions = "Exec pcmanfm &" }
12 Entry = "Image Viewer" { Icon = "$PIXMAPS/gpicview.png"; Actions = "Exec gpicview &" }
13 Entry = "Burn CD/DVD" { Icon = "$PIXMAPS/isomaster.png"; Actions = "Exec burnbox &" }
14 #Entry = "MPlayer" { Icon = "$PIXMAPS/mplayer.png"; Actions = "Exec gmplayer &" }
15 }
16 Submenu = "Web Applications" {
17 Entry = "Wikipedia Encyclopedia" { Icon = "$PIXMAPS/wikipedia.png"; Actions = "Exec firefox http://www.wikipedia.org/ &" }
18 Entry = "Zoho Office" { Icon = "$PIXMAPS/leafpad.png"; Actions = "Exec firefox http://www.zoho.com/ &" }
19 Entry = "Meebo Messenger" { Icon = "$PIXMAPS/lostirc.png"; Actions = "Exec firefox http://www.meebo.com/ &" }
20 }
21 Submenu = "All Applications" {
22 Entry = "" { Actions = "Dynamic /usr/share/pekwm/scripts/pekwm-freedesktop-menu.sh" }
23 }
24 Submenu = "Documentation" {
25 Entry = "System documentation" { Icon = "$PIXMAPS/slitaz-doc.png"; Actions = "Exec firefox /usr/share/doc/slitaz/index.html &" }
26 Entry = "Tazlito Manual" { Icon = "$PIXMAPS/slitaz-doc.png"; Actions = "Exec firefox /usr/share/doc/tazlito/tazlito.html &" }
27 Entry = "Tazpkg Manual" { Icon = "$PIXMAPS/slitaz-doc.png"; Actions = "Exec firefox /usr/share/doc/tazpkg/tazpkg.html &" }
28 Entry = "Tazusb Manual" { Icon = "$PIXMAPS/slitaz-doc.png"; Actions = "Exec firefox /usr/share/doc/tazusb/tazusb.html &" }
29 Entry = "Tazwok Manual" { Icon = "$PIXMAPS/slitaz-doc.png"; Actions = "Exec firefox /usr/share/doc/tazwok/tazwok.html &" }
30 }
31 Submenu = "Slitaz Live CD/USB" {
32 Entry = "Tazlito" { Icon = "$PIXMAPS/tazlito.png"; Actions = "Exec subox tazlitobox &" }
33 Entry = "Tazusb" { Icon = "$PIXMAPS/tazlito.png"; Actions = "Exec subox tazusbbox &" }
34 }
36 Entry = "Run.." { Actions = "ShowCmdDialog" }
37 Separator {}
39 Submenu = "Go to" {
40 SubMenu = "Workspace" {
41 # Create goto menu once per pekwm config reload. The fast way that
42 # will work for most if not all users.
43 COMMAND = "/usr/share/pekwm/scripts/pekwm_ws_menu.sh goto"
44 # Create goto menu every time the menu is opened. The slow way.
45 # This is what you want if you are using external tools to make
46 # the amount of workspaces something else than what you define in
47 # ~/.pekwm/config. You will know if you want this.
48 # Entry = "" { Actions = "Dynamic /usr/share/pekwm/scripts/pekwm_ws_menu.sh goto dynamic" }
49 }
50 Entry = "Window.." { Actions = "ShowMenu GotoClient True" }
51 }
52 Submenu = "Pekwm" {
53 Submenu = "Themes" {
54 Entry { Actions = "Dynamic /usr/share/pekwm/scripts/pekwm_themeset.sh /usr/share/pekwm/themes" }
55 Entry { Actions = "Dynamic /usr/share/pekwm/scripts/pekwm_themeset.sh ~/.pekwm/themes" }
56 }
57 Submenu = "Pekwm Configuration" {
58 Entry = "Change config" { Icon = "$PIXMAPS/leafpad.png"; Actions = "Exec geany ~/.pekwm/config &" }
59 Entry = "Customize Menu" { Icon = "$PIXMAPS/leafpad.png"; Actions = "Exec geany ~/.pekwm/menu &" }
60 Entry = "Keyboard Shortcuts" { Icon = "$PIXMAPS/leafpad.png"; Actions = "Exec geany ~/.pekwm/keys &" }
61 Entry = "Mouse Actions" { Icon = "$PIXMAPS/leafpad.png"; Actions = "Exec geany ~/.pekwm/mouse &" }
62 Entry = "Auto start" { Icon = "$PIXMAPS/leafpad.png"; Actions = "Exec geany ~/.pekwm/start &" }
63 }
64 Submenu = "Exit to" {
65 Entry = "Xterm" { Actions = "RestartOther xterm" }
66 Entry = "Openbox" { Actions = "RestartOther openbox" }
67 }
68 Entry = "Reload" { Actions = "Reload" }
69 Entry = "Restart" { Actions = "Restart" }
70 }
71 Entry = "Exit" { Actions = "Exit" }
72 }
74 WindowMenu = "Window Menu" {
75 Entry = "(Un)Stick" { Actions = "Toggle Sticky" }
76 Entry = "(Un)Shade" { Actions = "Toggle Shaded" }
77 Entry = "Iconify" { Actions = "Set Iconified" }
78 Entry = "Command.." { Actions = "ShowCmdDialog" }
80 Submenu = "Maximize" {
81 Entry = "Toggle Full" { Actions = "Toggle Maximized True True" }
82 Entry = "Toggle Horizontal" { Actions = "Toggle Maximized True False" }
83 Entry = "Toggle Vertical" { Actions = "Toggle Maximized False True" }
84 }
85 Submenu = "Fill" {
86 Entry = "Full" { Actions = "MaxFill True True" }
87 Entry = "Horizontal" { Actions = "MaxFill True False" }
88 Entry = "Vertical" { Actions = "MaxFill False True" }
89 }
90 Submenu = "Stacking" {
91 Entry = "Raise" { Actions = "Raise" }
92 Entry = "Lower" { Actions = "Lower" }
93 Entry = "Toggle Always On Top" { Actions = "Toggle AlwaysOnTop" }
94 Entry = "Toggle Always Below" { Actions = "Toggle AlwaysBelow" }
95 }
96 Submenu = "Decorations" {
97 Entry = "Toggle Decorations" { Actions = "Toggle DecorBorder; Toggle DecorTitlebar" }
98 Entry = "Toggle Borders" { Actions = "Toggle DecorBorder" }
99 Entry = "Toggle Titlebar" { Actions = "Toggle DecorTitlebar" }
100 }
101 Submenu = "Skip" {
102 Entry = "Toggle showing this frame in menus" { Actions = "Toggle Skip Menus" }
103 Entry = "Toggle including this frame in focus toggle" { Actions = "Toggle Skip FocusToggle" }
104 Entry = "Toggle if this frame snaps to other windows" { Actions = "Toggle Skip Snap" }
105 }
106 SubMenu = "Send To" {
107 # Create sendto menu once per pekwm config reload. The fast way that
108 # will work for most if not all users.
109 COMMAND = "/usr/share/pekwm/scripts/pekwm_ws_menu.sh send"
110 # Create sendto menu every time the menu is opened. The slow way.
111 # This is what you want if you are using external tools to make
112 # the amount of workspaces something else than what you define in
113 # ~/.pekwm/config. You will know if you want this.
114 # Entry = "" { Actions = "Dynamic /usr/share/pekwm/scripts/pekwm_ws_menu.sh send dynamic" }
115 }
116 Separator {}
117 Entry = "Close" { Actions = "Close" }
118 Submenu = "Kill" { Entry = "Kill application" { Actions = "Kill" } }
119 }