我正在通过以下方式启动很多程序突触发射器。为了方便起见,我想给一个程序一个额外的名称/标签/标签/任何内容,例如“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 也会找到它。