使用 GUI

使用 GUI

我已经安装了新的openbox,但我不知道如何执行应用程序或目录的命令。

如果不知道命令的话我就无法添加任何应用程序吗?

答案1

首先安装 openbox 后,将 openbox 的基本配置复制到您自己的主目录以进行定制:

mkdir -p ~/.config/openbox
cp /etc/xdg/openbox/* ~/.config/openbox/

现在您有一个可以在此基础上构建的基本配置。


使用命令:

安装gmrundmenusuckless-tools包中安装。

sudo apt install gmrun

现在~/.config/openbox/rc.xml使用编辑器打开文件:

nano ~/.config/openbox/rc.xml

搜索“keybind”并添加类似内容:

<keybind key="A-F2">
   <action name="Execute">
     <command>gmrun</command>
   </action>
</keybind>

到此文件,然后运行openbox --reconfigure,现在使用Alt+F2提示要求您输入命令:

在此处输入图片描述

然后您可以输入所需的命令并按来enter运行它。


使用 GUI

我更喜欢的程序是xfce4-appfinder,使用以下命令安装它:

sudo apt install xfce4-appfinder

现在像以前一样为命令添加一个键绑定xfce4-appfinder,例如:

<keybind key="A-F3">
   <action name="Execute">
     <command>xfce4-appfinder</command>
   </action>
</keybind>

每次按下Alt+时F3,都会打开一个如下所示的窗口:

在此处输入图片描述

您可以按类别浏览您机器上安装的程序,甚至可以搜索其名称。

使用右键菜单

打开此文件:

nano ~/.config/openbox/menu.xml

添加以下几行:

<menu id="/Debian" label="">
        <item label="New Item">
                <action name="Execute">
                        <execute>command</execute>
                </action>
        </item>
</menu>

并运行:

openbox --reconfigure

现在,每次您在右键单击菜单中的任意位置时,您都会看到一个名为“Debian”的项目,其中包含 Ubuntu 上安装的所有应用程序。

相关内容