Difference between revisions of "Openbox Keyboard Shortcuts"

From wiki.linuxonlinehelp.eu
Jump to navigation Jump to search
 
Line 50: Line 50:
 
</action>
 
</action>
 
</keybind>
 
</keybind>
 +
</pre>
 +
 +
# Section Print Screen
 +
<pre>
 +
<keybind key="Print">
 +
      <action name="Execute">
 +
        <command>/home/username/scrot.sh</command>
 +
      </action>
 +
</keybind>
 +
</pre>
 +
 +
scrot.sh (set chmod 755 right to execute)
 +
<pre>
 +
#!/bin/bash
 +
cd /home/username/Snapshots/
 +
scrot
 +
aplay /usr/lib/libreoffice/share/gallery/sounds/ping.wav
 +
exit 0
 
</pre>
 
</pre>

Latest revision as of 10:39, 15 November 2024

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