Openbox Keyboard Shortcuts

From wiki.linuxonlinehelp.eu
Revision as of 10:39, 15 November 2024 by Author (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

set on /home/username/.config/openbox/rc.xml (inside User-Home)

Open a Terminal (lxterminal open 3 Tabs with Window CLOSE PROTECTION by DIALOG-POPUP!! BIG ADVANTAGE)

ALT+t

<pre>
<keybind key="ALT-t">
<action name="Execute">
<execute>lxterminal --tabs=a,b,c</execute>
</action>
</keybind>

ALT-Key+F11

<keybind key="A-F11">
<action name="ToggleFullscreen"/>
</keybind>

ALT-Key+R = Commandline

<keybind key="A-R">
<action name="Execute">
<execute>gmrun</execute>
</action>
</keybind>

ALT-Key+i = Internet

<keybind key="A-i">
<action name="Execute">
<execute>chromium-browser</execute>
</action>
</keybind>

Alt-Key+M = Mail

<keybind key="A-m">
<action name="Execute">
<execute>icedove -P</execute>
</action>
</keybind>

ALT-Key+x = xchat

<keybind key="A-x">
<action name="Execute">
<execute>xchat</execute>
</action>
</keybind>
  1. Section Print Screen
<keybind key="Print">
      <action name="Execute">
        <command>/home/username/scrot.sh</command>
      </action>
</keybind>

scrot.sh (set chmod 755 right to execute)

#!/bin/bash
cd /home/username/Snapshots/
scrot
aplay /usr/lib/libreoffice/share/gallery/sounds/ping.wav
exit 0