如何从 Unity Dash 搜索 Ubuntu 软件中心?

如何从 Unity Dash 搜索 Ubuntu 软件中心?

我不需要打开速度很慢的 Ubuntu 软件中心,而是直接打开 Dash,然后搜索我想要安装的程序。我该如何实现呢?

目前我看到的是应用程序和文件和文件夹结果。有没有办法获取“Ubuntu 软件中心”的部分?

答案1

您正在寻找的是 unity 示波器或镜头。到目前为止,我在网上搜索时还没有找到可以搜索软件的示波器或镜头。

但是,如果你正在寻找软件中心的替代品,我建议你熟悉 lubuntu 软件中心或apt-cache search终端命令。在过去的一年半里,我只用它apt-cache search some-app-name来搜索软件和apt-get install app-name安装。

如果您想要图形化的东西,我已经编写了一个简单的脚本,可以让您以图形方式搜索软件。您可以将此脚本绑定到快捷方式,例如CtrlAltI

#!/bin/sh
# Author : Serg Kolo
# Date: Wed Jun  3 09:50 2015
# Description: list available packages graphically
# using apt-cache search and zenity

FILE=~/.apt-search.txt
SEARCHTERM="$(zenity --entry --text='Enter key to search' )"

if [ $? -eq 0 ]; then
        apt-cache search "$SEARCHTERM" | nl >  $FILE
        zenity --text-info  --filename=$FILE 
fi

相关内容