linux 中安装 openbox 和 tint2

如果你厌倦了 gnome、kde 这样的复杂桌面环境,可以尝试下openbox这个轻量级的DE,最大的优点就是占用资源少,运行效率高。

openbox

最基本桌面环境,必须安装。

Ubuntu / Debian

apt install openbox

CentOS

yum install openbox

tint2

提供下面板,可选,但建议安装。

Ubuntu / Debian

apt install tint2

CentOS

yum install tint2

添加配置

编辑文件 ~/.config/openbox/autostart.sh (默认不存在),添加以下代码:

tint2&

openbox 的配置文件主要有二个,分别是 ~/.config/openbox/rc.xml~/.config/openbox/menu.xml 。前者可以由obconf 更改, 后者可由 obmenu 更改。

注意:

obconf:不能自定义rc.xml中的快捷键部分,这里需要自行添加
obconf:虽然可改项很多,但实际上并没有多少要改的,默认即可
obmenu:在桌面右键时,会弹出一个菜单。 obmenu就是自定义这个菜单的
lxappearance:相对来说,这个可能更适合大多数用户,选择窗口主题,鼠标主题等等
tint2conf:自定义tint2面板

附几个配置

rc.xml中的“显示桌面”快捷键设置,这里用的 windows+d

<keybind key="W-d">
 <action name="ToggleShowDesktop"/>
</keybind>

rc.xml中的“截屏”快捷键,截取当前窗口,ctrl+Print Screen

<keybind key="C-Print">
     <action name="Execute">
       <command>scrot -s "/home/allblue/pictures/scrot/cut-%m.%d-%H%M%S.png"</command>
     </action>
</keybind>

全屏截图,Print Screen

<keybind key="Print">
     <action name="Execute">
        <command>scrot "/home/allblue/pictures/scrot/screen-%m.%d-%H%M%S.png"</command>
     </action>
</keybind>