2019-05-15 說明:
Main Menu 功能在 CentOS 7.x 之後︐「command」欄位打字輸入方式須
「無空格」才能成功。
以下是CentOS 6.x做法。
◆ 第一種方式
1、先安裝「Main Menu」編輯程式 => sudo yum install alacarte
2、點按 選單列上的「System/Preferences/Main Menu」
(2019-05-15修改)
CentOS 7.x Main Menu 路徑改在:
Applications > Sundry (或Accessories) > Main Menu
3、點按「New Item」
4、command 中輸入Firefox 執行程式位置。
系統自動判斷:firefox %u
32位元 預設位置:/usr/lib/firefox/firefox %u
64位元 預設位置:/usr/lib64/firefox/firefox %u
5、圖形位置點選
系統預設位置:/usr/share/icons/hicolor/48x48/apps/firefox.png
32位元位置 : /usr/lib/firefox/icons/mozicon128.png
64位元位置 : /usr/lib64/firefox/icons/mozicon128.png
◆ 第二種方式
cd /usr/share/applications
sudo vi firefox.desktop
在vi裡輸入以下資料,以64位元為例(存檔離開 => 輸入 :wq)
[Desktop Entry]
Version=1.0
Name=Firefox 11.0
GenericName=Web Browser
Comment=Browse the Web
# 自行指定位置,64位元 Exec=/usr/lib64/firefox/firefox
# 自行指定位置,64位元: Icon=/usr/lib64/firefox/icons/mozicon128.png
Exec=firefox %u
Icon=firefox
Terminal=false
Type=Application
StartupWMClass=Firefox-bin
MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;text/mml;x-scheme-handler/http;x-scheme-handler/https;
StartupNotify=true
Categories=Network;WebBrowser;
X-Desktop-File-Install-Version=0.15
.