#!/usr/bin/env python3
import subprocess
import os
dr = "/usr/share/applications"
apps = []
for f in [f for f in os.listdir(dr) if f.endswith(".desktop")]:
try:
content = open(dr+"/"+f).read()
if not "NoDisplay=true" in content:
lines = content.splitlines()
name = [l for l in lines if l.startswith("Name=")][0].replace("Name=", "")
command = [l for l in lines if l.startswith("Exec=")][0].replace("Exec=", "")
apps.append([name, command])
except:
pass
apps.sort(key=lambda x: x[0]); apps = sum(apps, [])
displ_list = '"'+'" "'.join(apps)+'"'
try:
chosen = subprocess.check_output([
"/bin/bash",
"-c",
'zenity --list '+\
'--column="Applications" '+\
'--column="commands" '+\
'--hide-column=2 --height 450 '+\
'--width 300 '+\
'--print-column=2 '+displ_list
]).decode("utf-8").split("|")[-1].strip()
chosen = chosen[:chosen.rfind(" ")] if "%" in chosen else chosen
subprocess.Popen([
"/bin/bash", "-c", chosen
])
except subprocess.CalledProcessError:
pass
#!/usr/bin/env python3
import subprocess
import os
dr = "/usr/share/applications"
apps = []
for f in [f for f in os.listdir(dr) if f.endswith(".desktop")]:
try:
content = open(dr+"/"+f).read()
if not "NoDisplay=true" in content:
lines = content.splitlines()
name = [l for l in lines if l.startswith("Name=")][0].replace("Name=", "")
command = [l for l in lines if l.startswith("Exec=")][0].replace("Exec=", "")
comment = [l for l in lines if l.startswith("Comment=")]
comment = comment[0].replace("Comment=", "") if comment else "No description"
apps.append([name, command, comment])
except:
pass
apps.sort(key=lambda x: x[0]); apps = sum(apps, [])
displ_list = '"'+'" "'.join(apps)+'"'
try:
chosen = subprocess.check_output([
"/bin/bash",
"-c",
'zenity --list '+\
'--column="Applications" '+\
'--column="commands" '+\
'--column="Description" '+\
'--hide-column=2 --height 450 '+\
'--width 500 '+\
'--print-column=2 '+displ_list
]).decode("utf-8").split("|")[-1].strip()
chosen = chosen[:chosen.rfind(" ")] if "%" in chosen else chosen
subprocess.Popen([
"/bin/bash", "-c", chosen
])
except subprocess.CalledProcessError:
pass
纯娱乐
由于OP提到:我可以从已安装的所有程序列表中启动程序?
下面的小脚本列出了所有(全局)安装的 GUI 应用程序。选择一个来启动它,或者输入它的几个字符并按Return下来运行应用程序:
使用
list_apps.py
测试-通过命令运行它(打开终端窗口,输入命令并按Return):
如果一切正常,请将其添加到快捷键:选择:系统设置>“键盘”>“快捷方式”>“自定义快捷方式”。单击“+”并添加命令:
到您喜欢的快捷键组合。
剧本
这个怎么运作
该脚本列出了 中的所有
.desktop
文件/usr/share/applications
,并检查该行NoDisplay=true
是否在文件中(这意味着它不打算用作 GUI)。然后它查看文件,查找应用程序名称和运行它的命令。结果列在
zenity
列表中,可供选择。如果选择一个,则执行相应的命令。而已。
扩大的视野
如果您还想对应用程序进行简短描述,
Comment=
如其文件行中所述.desktop
,请使用以下版本:在 ubuntu 上,并非所有程序都列在应用程序菜单中。
要查看所有内容,您需要打开控制台 并输入
这将显示所有应用程序(在 UI 中运行的应用程序和在控制台中运行的应用程序)
如果您想从列表中启动应用程序,一个不错的选择是Classic Gnome 指示器。
见这里: http: //www.howtogeek.com/189929/how-to-install-and-launch-the-classic-gnome-menu-in-ubuntu-14.04/