
我正在透過以下方式啟動很多程序突觸發射器。為了方便起見,我想給一個程式一個額外的名稱/標籤/標籤/任何內容,例如“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 也會找到它。