24 lines
959 B
Plaintext
24 lines
959 B
Plaintext
|
#!/bin/bash
|
||
|
if ! . mabox-include.cfg 2> /dev/null; then
|
||
|
echo ' Failed to locate mabox-include.cfg in PATH' >&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
menuStart
|
||
|
menuSeparator 'Online Help'
|
||
|
|
||
|
menuSubmenu 'ManjaroWWW' 'Manjaro Linux'
|
||
|
menuItem 'Manjaro Linux Homepage' 'x-www-browser https://manjaro.github.io/'
|
||
|
menuItem 'Manjaro Linux Wiki Pages' 'x-www-browser https://wiki.manjaro.org/'
|
||
|
menuItem 'Manjaro Linux Forums' 'x-www-browser https://forum.manjaro.org/'
|
||
|
menuSubmenuEnd
|
||
|
|
||
|
menuSubmenu 'OpenboxWWW' 'Openbox'
|
||
|
menuItem 'Openbox Homepage' 'x-www-browser "http://openbox.org/wiki/Main_Page"'
|
||
|
menuItem 'Openbox Documentation' 'x-www-browser "http://openbox.org/wiki/Help:Contents"'
|
||
|
menuItem 'Openbox FAQ' 'x-www-browser "http://openbox.org/wiki/Help:FAQ"'
|
||
|
menuItem 'Openbox Getting Started' 'x-www-browser "http://openbox.org/wiki/Help:Getting_started"'
|
||
|
menuItem 'Openbox Community Portal' 'x-www-browser "http://openbox.org/wiki/Openbox:Community_portal"'
|
||
|
menuSubmenuEnd
|
||
|
menuEnd
|