linux下手工启动坚果云服务

自从使用awesome window manager之后,坚果云服务就不再自动启动了,需要手动启动。 坚果云的启动脚本位置为:“~/.nutstore/dist/bin/nutstore-pydaemon.py”

要在awesome window manager中设置为自动启动坚果云服务,则需要在awesome window manager配置文件rc.lua中添加如下代码:

-- 自启动
autorun = true
autorunApps = 
{ 
    "~/.nutstore/dist/bin/nutstore-pydaemon.py"
}

if autorun then
    for app = 1, #autorunApps do
    awful.util.spawn_with_shell(autorunApps[app])
    end
end


郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。