
저는 다음을 통해 많은 프로그램을 시작하고 있습니다.시냅스 실행기. 편의상 프로그램에추가의이름/라벨/태그/무엇이든 가능합니다(예: "XXYYZZ").
이것이 가능합니까 (XFCE에서)?
답변1
Synapse는 모르지만 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도 그것을 찾을 것 같아요.