Manjaro Difference between revisions of "Openbox"

Difference between revisions of "Openbox"

From Manjaro
imported>Cscs
(Marked this version for translation)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<languages/>
__TOC__
__TOC__


<translate>
=Overview= <!--T:1-->


=Overview=
<!--T:2-->
 
The [http://openbox.org/wiki/Main_Page Openbox Window Manager] is designed to be highly configurable and customisable with extensive standards support.  
The [http://openbox.org/wiki/Main_Page Openbox Window Manager] is designed to be highly configurable and customisable with extensive standards support.  




<!--T:3-->
[[File: Openbox-wm-18.jpg|left|600px]]
[[File: Openbox-wm-18.jpg|left|600px]]
<div style="clear: both"></div>
<div style="clear: both"></div>




=Installing Openbox=
=Installing Openbox= <!--T:4-->
 
For information on how to install basic Openbox environment please review the [[Install_Desktop_Environments#Openbox|Openbox installation instructions]].


<!--T:5-->
For information on how to install a basic Openbox environment please review the [[Install_Desktop_Environments#Openbox|Openbox installation instructions]].


=Adjusting Keybindings for Special Keys=


Openbox is built to be customized, this includes the ability to create your own custom '''keybindings'''. These are combinations of key presses that may be used to undertake virtually any action, usually much faster and more directly than other means, such as by sifting through a menu. Although the Manjaro Openbox Edition provides a user-friendly graphical interface that may be used to alter or create custom keybindings, some combinations of special keys are not easily managed through this interface.
=Adjusting keybindings= <!--T:6-->


<!--T:7-->
Openbox is built to be customized, and this includes the ability to create your own custom '''keybindings'''. These are combinations of key presses that may be used to undertake virtually any action, usually much faster and more directly than other means, such as by sifting through a menu. Although the Manjaro Openbox Edition provides a user-friendly graphical interface that may be used to alter or create custom keybindings, some combinations of special keys are not easily managed through this interface.


<!--T:8-->
In this instance it will be necessary to manually edit the Openbox {{ic|rc.xml}} file. One of the many functions of this file is to store and enable keybindings in the Openbox environment.  This file is located at {{ic|~/.config/openbox/rc.xml}} and you can edit it with a standard [[Viewing_and_editing_configuration_files|text editor]].
In this instance it will be necessary to manually edit the Openbox {{ic|rc.xml}} file. One of the many functions of this file is to store and enable keybindings in the Openbox environment.  This file is located at {{ic|~/.config/openbox/rc.xml}} and you can edit it with a standard [[Viewing_and_editing_configuration_files|text editor]].


==Screen Brightness==
==Example: screen brightness== <!--T:9-->
Once the file has been opened, you will be presented with a substantial amount of commands contained within it. Don't worry about this, as you will only need to add a new block of code, rather than amend anything that is there. The code that must be added to enable full manual control over the screen brightness is as follows:
Once the file has been opened, you will be presented with a substantial amount of commands contained within it. Don't worry about this, as you will only need to add a new block of code, rather than amend anything that is there. The code that must be added to enable full manual control over the screen brightness is as follows:


     <keybind key="XF86MonBrightnessUp">
     <!--T:10-->
<keybind key="XF86MonBrightnessUp">
       <action name="Execute">
       <action name="Execute">
         <command>xbacklight +10</command>
         <command>xbacklight +10</command>
Line 37: Line 43:
     </keybind>
     </keybind>


<!--T:11-->
{{warning|This code cannot just be placed anywhere in the file. It must be placed in a particular section in order to work. Please follow the instructions below to do so.}}
{{warning|This code cannot just be placed anywhere in the file. It must be placed in a particular section in order to work. Please follow the instructions below to do so.}}


<!--T:12-->
To find the correct place to insert the above commands, it is recommended to use the '''Find''' or '''Search''' functions provided by your editor. If your text editor does not have the ability to search, it will be necessary to manually scroll down to about the mid-way point (perhaps using the '''Page Down''' key) to locate the following code:


To find the correct place in order to insert the above commands, it is recommended to use the '''Find''' or '''Search''' functions provided by your editor. If your text editor does not have the ability to search, it will be necessary to manually scroll down to about the mid-way point (perhaps using the '''Page Down''' key) to locate the following code:
<!--T:13-->
 
</keyboard>
</keyboard>
 


<!--T:14-->
The overall section of the code should look like this:
The overall section of the code should look like this:


     </keybind>
     <!--T:15-->
</keybind>
     </keyboard>
     </keyboard>
   <mouse>
   <mouse>


 
<!--T:16-->
Once located, the new code above can be inserted between the </keybind> and </keyboard> codes. Press <enter> after the </keybind> code to provide a space to do so. Below is an example where this has taken place. The new code inserted has been <font color="green">'''highlighted in green'''</font color> for illustrative purposes:
Once located, the new code above can be inserted between the </keybind> and </keyboard> codes. Press <enter> after the </keybind> code to provide a space to do so. Below is an example where this has taken place. The new code inserted has been <font color="green">'''highlighted in green'''</font color> for illustrative purposes:


     </keybind>
     <!--T:17-->
</keybind>
  <font color="green">    <keybind key="XF86MonBrightnessUp"></font color>
  <font color="green">    <keybind key="XF86MonBrightnessUp"></font color>
  <font color="green">      <action name="Execute"></font color>
  <font color="green">      <action name="Execute"></font color>
Line 68: Line 78:
   <mouse>
   <mouse>


<!--T:18-->
If the command "xbacklight +10" does nothing, find out the minimum value to put instead of 10 by trying to set the brightness to 20, then 40. You can use the following commands:
If the command "xbacklight +10" does nothing, find out the minimum value to put instead of 10 by trying to set the brightness to 20, then 40. You can use the following commands:


<!--T:19-->
* `xbacklight =X` to change the brightness, and
* `xbacklight =X` to change the brightness, and
* `xbacklight -get` to see if the minimum value has been reached.
* `xbacklight -get` to see if the minimum value has been reached.


<!--T:20-->
Once you have made the necessary amendments to the file, save the changes and close it.
Once you have made the necessary amendments to the file, save the changes and close it.


 
<!--T:21-->
Now logout and back in again for the changes to take effect.
Now logout and back in again for the changes to take effect.




==Volume Keys (ALSA)==
==Example: volume keys (ALSA)== <!--T:22-->


<!--T:23-->
Once the file has been opened, you will be presented with a substantial amount of commands contained within it. Don't worry about this, as you will only need to add a new block of code, rather than amend anything that is there. The code that must be added to enable full manual control over the volume (i.e. to raise, lower, and mute it) is as follows:
Once the file has been opened, you will be presented with a substantial amount of commands contained within it. Don't worry about this, as you will only need to add a new block of code, rather than amend anything that is there. The code that must be added to enable full manual control over the volume (i.e. to raise, lower, and mute it) is as follows:


     <keybind key="XF86AudioRaiseVolume">
     <!--T:24-->
<keybind key="XF86AudioRaiseVolume">
       <action name="Execute">  
       <action name="Execute">  
         <command>amixer set Master 10%+</command>
         <command>amixer set Master 10%+</command>
Line 99: Line 114:
   </keybind>
   </keybind>


<!--T:25-->
{{warning|This code cannot just be placed anywhere in the file. It must be placed in a particular section in order to work. Please follow the instructions below to do so.}}
{{warning|This code cannot just be placed anywhere in the file. It must be placed in a particular section in order to work. Please follow the instructions below to do so.}}


 
<!--T:26-->
To find the correct place in order to insert the above commands, it is recommended to use the '''Find''' or '''Search''' functions provided by your editor. If your text editor does not have the ability to search, it will be necessary to manually scroll down to about the mid-way point (perhaps using the '''Page Down''' key) to locate the following code:
To find the correct place to insert the above commands, it is recommended to use the '''Find''' or '''Search''' functions provided by your editor. If your text editor does not have the ability to search, it will be necessary to manually scroll down to about the mid-way point (perhaps using the '''Page Down''' key) to locate the following code:
  </keyboard>
  </keyboard>


 
<!--T:27-->
The overall section of the code should look like this:
The overall section of the code should look like this:


     </keybind>
     <!--T:28-->
</keybind>
     </keyboard>
     </keyboard>
   <mouse>
   <mouse>


 
<!--T:29-->
Once located, the new code above can be inserted between the </keybind> and </keyboard> codes. Press <enter> after the </keybind> code to provide a space to do so. Below is an example where this has taken place. The new code inserted has been <font color="green">'''highlighted in green'''</font color> for illustrative purposes:
Once located, the new code above can be inserted between the </keybind> and </keyboard> codes. Press <enter> after the </keybind> code to provide a space to do so. Below is an example where this has taken place. The new code inserted has been <font color="green">'''highlighted in green'''</font color> for illustrative purposes:


     </keybind>
     <!--T:30-->
</keybind>
  <font color="green">    <keybind key="XF86AudioRaiseVolume"></font color>
  <font color="green">    <keybind key="XF86AudioRaiseVolume"></font color>
  <font color="green">      <action name="Execute"> </font color>
  <font color="green">      <action name="Execute"> </font color>
Line 134: Line 152:
   <mouse>
   <mouse>


 
<!--T:31-->
Once you have made the necessary amendments to the file, save the changes and close it.
Once you have made the necessary amendments to the file, save the changes and close it.
</translate>


 
[[Category:Contents Page{{#translation:}}]]
[[Category:Contents Page]]
[[Category:Editions{{#translation:}}]]
[[Category:Desktop]]

Latest revision as of 18:15, 7 September 2021

Other languages:
English • ‎русский

Overview

The Openbox Window Manager is designed to be highly configurable and customisable with extensive standards support.


Openbox-wm-18.jpg


Installing Openbox

For information on how to install a basic Openbox environment please review the Openbox installation instructions.


Adjusting keybindings

Openbox is built to be customized, and this includes the ability to create your own custom keybindings. These are combinations of key presses that may be used to undertake virtually any action, usually much faster and more directly than other means, such as by sifting through a menu. Although the Manjaro Openbox Edition provides a user-friendly graphical interface that may be used to alter or create custom keybindings, some combinations of special keys are not easily managed through this interface.

In this instance it will be necessary to manually edit the Openbox rc.xml file. One of the many functions of this file is to store and enable keybindings in the Openbox environment. This file is located at ~/.config/openbox/rc.xml and you can edit it with a standard text editor.

Example: screen brightness

Once the file has been opened, you will be presented with a substantial amount of commands contained within it. Don't worry about this, as you will only need to add a new block of code, rather than amend anything that is there. The code that must be added to enable full manual control over the screen brightness is as follows:

    <keybind key="XF86MonBrightnessUp">
      <action name="Execute">
        <command>xbacklight +10</command>
      </action>
    </keybind>
    <keybind key="XF86MonBrightnessDown">
      <action name="Execute"> 
        <command>xbacklight -10</command>
      </action>
    </keybind>


Warning
This code cannot just be placed anywhere in the file. It must be placed in a particular section in order to work. Please follow the instructions below to do so.

To find the correct place to insert the above commands, it is recommended to use the Find or Search functions provided by your editor. If your text editor does not have the ability to search, it will be necessary to manually scroll down to about the mid-way point (perhaps using the Page Down key) to locate the following code:

</keyboard>

The overall section of the code should look like this:

    </keybind>
   </keyboard>
  <mouse>

Once located, the new code above can be inserted between the </keybind> and </keyboard> codes. Press <enter> after the </keybind> code to provide a space to do so. Below is an example where this has taken place. The new code inserted has been highlighted in green for illustrative purposes:

    </keybind>
     <keybind key="XF86MonBrightnessUp">
       <action name="Execute">
         <command>xbacklight +10</command>
       </action>
     </keybind>
     <keybind key="XF86MonBrightnessDown">
       <action name="Execute">
         <command>xbacklight -10</command>
       </action>
    </keybind>
  </keyboard>
  <mouse>

If the command "xbacklight +10" does nothing, find out the minimum value to put instead of 10 by trying to set the brightness to 20, then 40. You can use the following commands:

  • `xbacklight =X` to change the brightness, and
  • `xbacklight -get` to see if the minimum value has been reached.

Once you have made the necessary amendments to the file, save the changes and close it.

Now logout and back in again for the changes to take effect.


Example: volume keys (ALSA)

Once the file has been opened, you will be presented with a substantial amount of commands contained within it. Don't worry about this, as you will only need to add a new block of code, rather than amend anything that is there. The code that must be added to enable full manual control over the volume (i.e. to raise, lower, and mute it) is as follows:

   <keybind key="XF86AudioRaiseVolume">
     <action name="Execute"> 
       <command>amixer set Master 10%+</command>
     </action>
  </keybind>
   <keybind key="XF86AudioLowerVolume">
     <action name="Execute">
       <command>amixer set Master 10%-</command>
     </action>
   </keybind>
   <keybind key="XF86AudioMute">
     <action name="Execute"> 
       <command>amixer set Master toggle</command>
     </action>
  </keybind>


Warning
This code cannot just be placed anywhere in the file. It must be placed in a particular section in order to work. Please follow the instructions below to do so.

To find the correct place to insert the above commands, it is recommended to use the Find or Search functions provided by your editor. If your text editor does not have the ability to search, it will be necessary to manually scroll down to about the mid-way point (perhaps using the Page Down key) to locate the following code:

</keyboard>

The overall section of the code should look like this:

    </keybind>
   </keyboard>
  <mouse>

Once located, the new code above can be inserted between the </keybind> and </keyboard> codes. Press <enter> after the </keybind> code to provide a space to do so. Below is an example where this has taken place. The new code inserted has been highlighted in green for illustrative purposes:

    </keybind>
    <keybind key="XF86AudioRaiseVolume">
      <action name="Execute"> 
        <command>amixer set Master 10%+</command>
      </action>
   </keybind>
    <keybind key="XF86AudioLowerVolume">
     <action name="Execute">
        <command>amixer set Master 10%-</command>
      </action>
    </keybind>
    <keybind key="XF86AudioMute">
      <action name="Execute"> 
        <command>amixer set Master toggle</command>
      </action>
   </keybind>
  </keyboard>
  <mouse>

Once you have made the necessary amendments to the file, save the changes and close it.

Cookies help us deliver our services. By using our services, you agree to our use of cookies.