
Estoy iniciando muchos programas a través dellanzador de sinapsis. Por conveniencia, me gustaría darle a un programa unaadicionalnombre/etiqueta/etiqueta/lo que sea, como "XXYYZZ".
¿Es esto posible (en XFCE)?
Respuesta1
No conozco Synapse, pero suponiendo que inicie aplicaciones desde su PATH
, debería poder crear enlaces simbólicos como este:
$ 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 ...
Supongo que entonces Synapse también lo encontraría.