Lubuntu のアプリケーション・ランチャーはメニューにある
アプリケーションしか登録できない。
メニューにあるアプリケーションの実体は以下にある。
/usr/share/applications/
*.desktop ファイルがメニューの項目に対応していて、
ただのテキストファイルである。
ここに登録したいコマンドのファイルを作って置けば良い。
とりあえず、lxterminal で最初から screen ありで起動したかったので、
lxterminal -e screen というコマンドを登録する。
lxterminal.desktop というのが元々あるので、
それをコピーして使う。
sudo cp /usr/share/applications/{lxterminal.desktop,lxterminal_custom.desktop}
適当なエディタで開いて編集。
sudo emacs /usr/share/applications/lxterminal_custom.desktop
以下のようにした。
[Desktop Entry] Encoding=UTF-8 Name=LXTerminal Custom Comment=Use the command line Exec=lxterminal -e screen Icon=lxterminal Type=Application Categories=GTK;Utility;TerminalEmulator;
すると、アプリケーション・ランチャーに追加できるようになっているので追加!