1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
How to launch the editor?
=========================
- When Apwal is running, click right on any application icon
- apwal --edit
How to bind Apwal on the right click with Sawfish?
=================================================
Start the Sawfish Configurator: sawfish-ui
Go to tab 'Bindings' and set context to 'Root window'
Bind 'Button3-Click' to 'Run shell command' and set command to 'apwal'
How to bind Apwal on the left click with Enlightenment 0.16?
=======================================================
Copy the current key bindings configuration in your E16 local directory:
# cp 'EnlightenmentPath'/config/keybindings.cfg ~/.enlightenment/
Where 'EnlightenmentPath' is:
for Debian: /usr/share/enlightenment/
for RedHat: /usr/share/enlightenment/
for SuSE: /usr/X11R6/share/enlightenment/
for Mandrake: /usr/X11R6/share/enlightenment/
Edit it and then replace:
LTIP_ACTION_TEXT "Display User Menus"
__EVENT __MOUSE_PRESS
__BUTTON 1
__MODIFIER_KEY __NONE
__ACTION __A_SHOW_MENU "named APPS_SUBMENU"
by:
LTIP_ACTION_TEXT "Apwal Menu"
__EVENT __MOUSE_PRESS
__BUTTON 1
__MODIFIER_KEY __NONE
__ACTION __A_EXEC apwal
How to create submenu ?
=======================
- in the editor, add an icon with the following command line:
apwal --config .apwalrc2.xml
|