
私は多くのプログラムをシナプスランチャー便宜上、プログラムに追加名前/ラベル/タグ/その他、例: 「XXYYZZ」。
これは可能ですか (XFCE で)?
答え1
Synapse についてはよくわかりませんが、 からアプリケーションを起動すると仮定するとPATH
、次のようにシンボリックリンクを作成できるはずです。
$ echo $PATH # check that ~/bin is in the PATH
...:/home/<user>/bin:...
$ which ls # check where the target program is located
/usr/bin/ls
$ ln -s /usr/bin/ls ~/bin/myls # create a symlink
$ myls # use the new name for the target program
... ls output follows ...
そうすれば、Synapse でも見つけられると思います。