EasonJim

截止在几天之前的Mac OS版本都无法实现将自定义图标添加到Launchpad。我使用的是10.12。

替代的思路就是在桌面新建一个Shell文件,然后使软件在后台运行,最后就是双击Shell文件能自动打开。

实现步骤:

1、修改后缀sh变成command:hello.sh->hello.command

2、修改可执行权限:chmod u+x hello.command

3、内容示例:

#!/bin/bash
nohup iptux >/dev/null 2>&1 &

 

分类:

技术点:

相关文章:

  • 2021-06-24
  • 2021-09-28
  • 2021-09-03
  • 2021-08-18
  • 2022-12-23
  • 2021-04-24
  • 2021-05-10
猜你喜欢
  • 2022-01-01
  • 2021-04-04
  • 2021-12-24
  • 2021-09-14
  • 2021-08-23
  • 2021-12-14
  • 2021-09-09
相关资源
相似解决方案