Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| en:guides:xbindkeys [2014/06/20 16:29] – sidini | en:guides:xbindkeys [2020/09/23 16:14] (current) – [Adding xbindkeys in autostarted applications] hgt | ||
|---|---|---|---|
| Line 3: | Line 3: | ||
| ====== Xbindkeys ====== | ====== Xbindkeys ====== | ||
| - | |||
| - | === Table of contents === | ||
| - | |||
| - | * Introduction | ||
| - | * Installing | ||
| - | * Configuration and detecting key codes | ||
| - | * Examples of functions | ||
| - | * References | ||
| - | |||
| - | ---- | ||
| ===== Introduction ===== | ===== Introduction ===== | ||
| - | Xbindkeys is a program that allows you to launch shell commands with your keyboard or your mouse under X Window. It links commands to keys or mouse buttons, using a configuration file. It' | + | Xbindkeys is a program that allows you to launch shell commands with your keyboard or your mouse under X Windows. It links commands to keys or mouse buttons using a configuration file. It' |
| - | It is useful | + | It is handy to make "dead keys" of a multimedia keyboard work. (ex: play, pause, browser homepage...) |
| ---- | ---- | ||
| Line 25: | Line 15: | ||
| ===== Installing ===== | ===== Installing ===== | ||
| - | Use __tazpkg__ | + | Use // |
| # tazpkg get-install xbindkeys | # tazpkg get-install xbindkeys | ||
| - | |||
| - | Current package is // | ||
| ---- | ---- | ||
| Line 35: | Line 23: | ||
| ===== Configuration and detecting key codes ===== | ===== Configuration and detecting key codes ===== | ||
| - | Xbindkeys uses a configuration file to link a command to a key on your keyboard. Usually this file is : //$HOME/.xbindkeyrc// | + | Xbindkeys uses a configuration file to link a command to a key on your keyboard. Usually this file is : '' |
| You can have a default one created by using : | You can have a default one created by using : | ||
| Line 50: | Line 39: | ||
| When a small white window shows up on screen, just press the desired key. Terminal will show you the 3-line code of the pressed key. Example: | When a small white window shows up on screen, just press the desired key. Terminal will show you the 3-line code of the pressed key. Example: | ||
| - | "(special | + | "(Scheme |
| m:0x10 + c:180 | m:0x10 + c:180 | ||
| Mod2 + XF86HomePage | Mod2 + XF86HomePage | ||
| - | Now, close //xbindkeys// application to make changes on configuration file: | + | Now, close '' |
| $ killall xbindkeys | $ killall xbindkeys | ||
| - | Open //.xbindkeysrc// file on Leafpad and copy the 3-line code above to the end of the file. | + | Open '' |
| - | We need to change the first code line to link the key code to a desired function. For example, we want that Leafpad be openned | + | We need to change the first code line to link the key code to a desired function. For example, |
| - | "leafpad" | + | "midori" |
| m:0x10 + c:180 | m:0x10 + c:180 | ||
| Mod2 + XF86HomePage | Mod2 + XF86HomePage | ||
| - | Save and close the //.xbindkeysrc// file. Restart | + | Save and close the '' |
| - | To add other shortcuts, repeat the proceeding | + | To add other shortcuts, repeat the procedure |
| - | To detect a multi-key shortcut code, like CTRL+F, use: | + | |
| + | If you want to detect a multi-key shortcut code like CTRL+F, use: | ||
| $ xbindkeys -mk | $ xbindkeys -mk | ||
| - | **//To be continued... Please, don' | + | ==== Summary ==== |
| + | Summary of commands: | ||
| + | |||
| + | # tazpkg get-install xbindkeys | ||
| + | $ xbindkeys --defaults > $HOME/ | ||
| + | $ xbindkeys | ||
| + | $ xbindkeys -k | ||
| + | $ killall xbindkeys | ||
| + | $ leafpad HOME/ | ||
| + | $ xbindkeys | ||
| + | |||
| + | ==== Adding xbindkeys in autostarted applications ==== | ||
| + | |||
| + | In the **PCManFM** in your **home** folder search for hidden folder **.config**, | ||
| + | |||
| + | # Fn Keys | ||
| + | xbindkeys & | ||
| + | |||
| + | Save and quit text editor. All custom shortcuts will stay after you reboot or switch off and on your machine. | ||
| + | |||
| + | To make this modification a global, edit '' | ||
| + | |||
| + | ---- | ||
| + | |||
| + | ===== Examples and tips ===== | ||
| + | This section shows you many command codes ready to use. Key codes (last two of 3-line key code) may vary from keyboard to keyboard, so it's up to you to catch them using // | ||
| + | |||
| + | === Volume control (Alsa mixer) === | ||
| + | |||
| + | # | ||
| + | " | ||
| + | m:0x00 + c:121 | ||
| + | XF86AudioMute | ||
| + | |||
| + | #Volume up | ||
| + | " | ||
| + | m:0x0 + c:123 | ||
| + | XF86AudioRaiseVolume | ||
| + | |||
| + | #Volume down | ||
| + | " | ||
| + | m:0x0 + c:122 | ||
| + | XF86AudioLowerVolume | ||
| + | |||
| + | === Alsaplayer === | ||
| + | |||
| + | #stop alsaplayer | ||
| + | " | ||
| + | m:0x0 + c:172 | ||
| + | XF86AudioPlay | ||
| + | |||
| + | #next alsaplayer | ||
| + | " | ||
| + | m:0x0 + c:171 | ||
| + | XF86AudioNext | ||
| + | |||
| + | #previous alsaplayer" | ||
| + | " | ||
| + | m:0x0 + c:173 | ||
| + | XF86AudioPrev | ||
| + | |||
| + | === Midori Browser === | ||
| + | |||
| + | #Open Midori at Homepage | ||
| + | " | ||
| + | m:0x10 + c:180 | ||
| + | Mod2 + XF86HomePage | ||
| + | |||
| + | #Back for previous page | ||
| + | " | ||
| + | m:0x10 + c:166 | ||
| + | Mod2 + XF86Back | ||
| + | |||
| + | #Forward to next page | ||
| + | " | ||
| + | m:0x10 + c:167 | ||
| + | Mod2 + XF86Forward | ||
| + | |||
| + | #Stop loading current page | ||
| + | " | ||
| + | m:0x10 + c:136 | ||
| + | Mod2 + Cancel | ||
| + | |||
| + | # | ||
| + | " | ||
| + | m:0x10 + c:181 | ||
| + | Mod2 + XF86Reload | ||
| + | |||
| + | NOTES: If you use Firefox or Google Chrome, there' | ||
| + | Also, if you change from Midori to Firefox or Chrome, you must comment (#) or delete the shortcuts above. If you don' | ||
| + | |||
| + | === Power management === | ||
| + | |||
| + | #suspend to ram | ||
| + | "sudo pm-suspend" | ||
| + | m:0x0 + c:150 | ||
| + | XF86Sleep | ||
| + | |||
| + | NOTE: this one (suspend to ram) works if you install | ||
| + | |||
| + | #power off button | ||
| + | " | ||
| + | m:0x0 + c:124 | ||
| + | XF86PowerOff | ||
| + | |||
| + | === Screenshots === | ||
| + | |||
| + | # | ||
| + | " | ||
| + | m:0x0 + c:107 | ||
| + | |||
| + | |||
| + | === Applications Menu (Start Menu) === | ||
| + | |||
| + | #Show Start Menu with left windows-key | ||
| + | " | ||
| + | m:0x50 + c:133 | ||
| + | Mod2+Mod4 + Super_L | ||
| + | |||
| + | #Show Start Menu with right windows-key | ||
| + | " | ||
| + | m:0x50 + c:134 | ||
| + | Mod2+Mod4 + Super_R | ||
| + | |||
| + | ---- | ||
| + | |||
| + | ===== References ===== | ||
| + | |||
| + | Xbindkeys homepage: | ||
| + | |||
| + | http:// | ||
| + | |||
| + | Forum topics: | ||
| + | |||
| + | http:// | ||
| + | |||
| + | http:// | ||
| + | |||
| + | http:// | ||
| + | |||
| + | http:// | ||
| + | |||
| + | http:// | ||
| + | |||
| + | http:// | ||
| + | |||
| + | http:// | ||
| + | ---- | ||
| + | \\ | ||
| + | ^ Page Review Section | ||
| + | |Quality| | ||
| + | |Review| | ||
| + | |Priority| | ||
| + | |Problems| | | ||
| + | |How to Improve| Add new rows like this ;-)| | ||
| + | \\ | ||