我正在编写一个简单的python脚本来运行和关闭一个-1
应用程序。
我使用int[] count = new int[100];
for(int i=0;i<start.length;i++){
count[start[i]] += 1;
count[end[i]] -= 1;
}
//form the count array with exact values in this loop
count[0] = 0;
for(int i =0;i<count.length;i++){
count[i] = count[i] + count[i-1];
}
return max(count);
命令触发flatpak
应用程序,但很难弄清楚如何从脚本本身退出应用程序。因为一旦应用程序启动,python脚本就会等待应用程序终止然后退出。
代码:
gedit
在上面的代码中,我尝试了flatpak
,但它在等待应用程序终止时无效。
答案 0 :(得分:2)
你可以试试这个
import subprocess
p = subprocess.Popen("flatpak run org.gnome.gedit/x86_64/stable")
p.terminate()
Here您可以找到有关此内容的更多信息