Custom Keybindings Openbox

Total Page:16

File Type:pdf, Size:1020Kb

Custom Keybindings Openbox How to Add Custom Keybindings in Openbox | Daniel ... https://www.danielrosehill.co.il/myblog/how-to-add-c... Daniel Rosehill Blog Linux, writing, and more ALL GENERAL FREELANCING HOW TO LINUX BACKUP TECH MISC REVIEWS VIDEO ABOUT I’M HERE TOO LINKS MY WRITING 17 IYYAR 5780 How to Add Custom Keybindings in Openbox Topics: Customiza�on, Linux, Openbox, Ubuntu If you’re s�ll running LXDE, or are using Openbox through some other lightweight desktop environment (DE) then you might be interested in crea�ng custom keybindings to be able to do everything from shu�ng down the computer to opening your favorite Chrome app at the touch of a bu�on. Fortunately, because Openbox, like LXDE, is a lightweight piece of so�ware, crea�ng these is not too complicated. Follow these steps to have your keyboard doing exactly what you want — just be careful not to overwrite keyboard shortcuts built into programs which you might use regularly! Open the Openbox con�guration �le 1 of 21 06/07/2020, 21:19 How to Add Custom Keybindings in Openbox | Daniel ... https://www.danielrosehill.co.il/myblog/how-to-add-c... Creating Openbox keybindings in LXDE (Linux Ubuntu) Firstly, navigate to the default Openbox configura�on file. In both LXDE and Ubuntu this can be found within: 1. /home/$user/.config/openbox (Replacing $user with your username). If you’re using LXDE the file is lxde-rc.xml. In Lubuntu, the corresponding file is lubuntu-rc.xml. It’s best prac�ce to take a backup of the file before making any chances. I typically just append the date as a suffix in DDMMYY format: 1. cp lxde-rc.xml lxde-rc-DDMMYY.xml You can then open the file in your IDE of choice. Use xev to capture key 2 of 21 06/07/2020, 21:19 How to Add Custom Keybindings in Openbox | Daniel ... https://www.danielrosehill.co.il/myblog/how-to-add-c... identi�ers A�aching keys to specific commands is as easy as looking up the key’s iden�fier. You can use the xev tool in order to do this. Xev will output the coordinates of your mouse movements and the iden�fiers of the keys that you type back into the terminal. Just make sure to type the keystrokes while the capture box is in focus: Assign Keybindings A�er ge�ng familiar with the layout of lxde.rc.xml you can begin adding in your own custom keybindings — or reassigning exis�ng ones. Just pay a�en�on to the <context> tags as these will determine where 3 of 21 06/07/2020, 21:19 How to Add Custom Keybindings in Openbox | Daniel ... https://www.danielrosehill.co.il/myblog/how-to-add-c... the keybindings are allowed to run. But you can easily decipher the basic format: 1. <keybind key=”Scroll_Lock”> 2. <action name=”Execute”> 3. <command>sudo pm-suspend</command> 4. </action> 5. </keybind> The above is a keybinding I have been using for years to make it easy for me to put my desktop into suspend rather than turning it off. It requires the pm-u�ls u�lity. But simply pressing the scroll lock key will automa�cally put my PC into the suspend state. The only other edit I had to create to make this work was to disable wake from USB devices. You can find the wake states of your various devices using: 1. cat /proc/acpi/wakeup A�er some experimenta�on I was then able to pass: 1. <br>sudo sh -c “echo XHC > /proc/acpi/wakeup” If you like the thought of se�ng a suspend keybinding but are running into difficulty with your wireless mouse/keyboard waking the device without your interven�on, you can find more informa�on and details on AskUbuntu and here. Sample edited default Openbox 4 of 21 06/07/2020, 21:19 How to Add Custom Keybindings in Openbox | Daniel ... https://www.danielrosehill.co.il/myblog/how-to-add-c... con�guration �le Lower (10%), raise (10%), and toggle mute using the bo�om three bu�ons on the numeric keypad: 1. <keybind key=”KP_End”> 2. <action name=”Execute”> 3. <command>amixer -D pulse set Master 10%-</command> 4. </action> 5. </keybind> 6. <keybind key=”KP_Down”> 7. <action name=”Execute”> 8. <command>amixer -D pulse set Master 10%+</command> 9. </action> 10. </keybind> 11. <keybind key=”KP_Next”> 12. <action name=”Execute”> 13. <command>amixer -D pulse set Master 1+ toggle</command> 14. </action> 15. </keybind> I use the Pause Break key to call up a Chrome App shortcut that launches Brain.fm: 1. <keybind key=”Pause”> 2. <action name=”Execute”> 3. <command>/opt/google/chrome/google-chrome — profile- directory=Default — app-id=dgksfs9fsfsfksf</command> 4. </action> 5. </keybind> I use Flameshot for screenshots. I mapped the flameshot gui command onto the Print Screen key: 1. <keybind key=”Print”> 2. <action name=”Execute”> 3. <command>flameshot gui</command> 4. </action> 5. </keybind> And of course I can suspend the computer directly using Scroll Lock. Just make sure to install pm-utils first: 5 of 21 06/07/2020, 21:19 How to Add Custom Keybindings in Openbox | Daniel ... https://www.danielrosehill.co.il/myblog/how-to-add-c... 1. <keybind key=”Scroll_Lock”> 2. <action name=”Execute”> 3. <command>sudo pm-suspend</command> 4. </action> 5. </keybind> Here’s the snippet in full: 1. <?xml version="1.0" encoding="UTF-8"?> 2. 3. <!-- Do not edit this file, it will be overwritten on install. 4. Copy the file to $HOME/.config/openbox/ instead. --> 5. <openbox_config xmlns="http://openbox.org/3.4/rc"> 6. <resistance> 7. <strength>10</strength> 8. <screen_edge_strength>20</screen_edge_strength> 9. </resistance> 10. <focus> 11. <focusNew>yes</focusNew> 12. <!-- always try to focus new windows when they appear. other rules do 13. apply --> 14. <followMouse>no</followMouse> 15. <!-- move focus to a window when you move the mouse into it --> 16. <focusLast>yes</focusLast> 17. <!-- focus the last used window when changing desktops, instead of the one 18. under the mouse pointer. when followMouse is enabled --> 19. <underMouse>no</underMouse> 20. <!-- move focus under the mouse, even when the mouse is not moving --> 21. <focusDelay>200</focusDelay> 22. <!-- when followMouse is enabled, the mouse must be inside the window for 23. this many milliseconds (1000 = 1 sec) before moving focus to it --> 24. <raiseOnFocus>no</raiseOnFocus> 25. <!-- when followMouse is enabled, and a window is given focus by moving the 26. mouse into it, also raise the window --> 27. </focus> 28. <placement> 29. <policy>Smart</policy> 30. <!-- 'Smart' or 'UnderMouse' --> 31. <center>yes</center> 32. <!-- whether to place windows in the center of the free area found or 33. the top left corner --> 34. <monitor>Any</monitor> 35. <!-- with Smart placement on a multi-monitor system, try to place new windows 36. on: 'Any' - any monitor, 'Mouse' - where the mouse is, 'Active' - where 37. the active window is --> 38. <primaryMonitor/> 39. </placement> 6 of 21 06/07/2020, 21:19 How to Add Custom Keybindings in Openbox | Daniel ... https://www.danielrosehill.co.il/myblog/how-to-add-c... 40. <theme> 41. <name>TraditionalOk</name> 42. <titleLayout>NLIMC</titleLayout> 43. <!-- 44. available characters are NDSLIMC, each can occur at most once. 45. N: window icon 46. L: window label (AKA title). 47. I: iconify 48. M: maximize 49. C: close 50. S: shade (roll up/down) 51. D: omnipresent (on all desktops). 52. --> 53. <keepBorder>yes</keepBorder> 54. <animateIconify>yes</animateIconify> 55. <font place="ActiveWindow"> 56. <name>sans</name> 57. <size>10</size> 58. <!-- font size in points --> 59. <weight>bold</weight> 60. <!-- 'bold' or 'normal' --> 61. <slant>normal</slant> 62. <!-- 'italic' or 'normal' --> 63. </font> 64. <font place="InactiveWindow"> 65. <name>sans</name> 66. <size>10</size> 67. <!-- font size in points --> 68. <weight>bold</weight> 69. <!-- 'bold' or 'normal' --> 70. <slant>normal</slant> 71. <!-- 'italic' or 'normal' --> 72. </font> 73. <font place="MenuHeader"> 74. <name>sans</name> 75. <size>10</size> 76. <!-- font size in points --> 77. <weight>normal</weight> 78. <!-- 'bold' or 'normal' --> 79. <slant>normal</slant> 80. <!-- 'italic' or 'normal' --> 81. </font> 82. <font place="MenuItem"> 83. <name>sans</name> 84. <size>10</size> 85. <!-- font size in points --> 86. <weight>normal</weight> 87. <!-- 'bold' or 'normal' --> 88. <slant>normal</slant> 89. <!-- 'italic' or 'normal' --> 90. </font> 91. <font place="ActiveOnScreenDisplay"> 92. <name/> 93. <size>8</size> 94. <weight/> 95. <slant/> 96. </font> 97. <font place="InactiveOnScreenDisplay"> 7 of 21 06/07/2020, 21:19 How to Add Custom Keybindings in Openbox | Daniel ... https://www.danielrosehill.co.il/myblog/how-to-add-c... 98. <name>Sans</name> 99. <size>8</size> 100. <weight/> 101. <slant/> 102. </font> 103. </theme> 104. <desktops> 105. <!-- this stuff is only used at startup, pagers allow you to change them 106. during a session 107. these are default values to use when other ones are not already set 108. by other applications, or saved in your session 109. use obconf if you want to change these without having to log out 110. and back in --> 111. <number>2</number> 112. <firstdesk>1</firstdesk> 113. <names> 114. <name>Work</name> 115. <name>Backups</name> 116. </names> 117. <popupTime>0</popupTime> 118. <!-- The number of milliseconds to show the popup for when switching 119. desktops. Set this to 0 to disable the popup. --> 120. </desktops> 121. <resize> 122. <drawContents>yes</drawContents> 123. <popupShow>Nonpixel</popupShow> 124. <!-- 'Always', 'Never', or 'Nonpixel' (xterms and such) --> 125. <popupPosition>Center</popupPosition> 126. <!-- 'Center', 'Top', or 'Fixed' --> 127. <popupFixedPosition> 128. <!-- these are used if popupPosition is set to 'Fixed' --> 129.
Recommended publications
  • Backbox Penetration Testing Never Looked So Lovely
    DISTROHOPPER DISTROHOPPER Our pick of the latest releases will whet your appetite for new Linux distributions. Picaros Diego Linux for children. here are a few distributions aimed at children: Doudou springs to mind, Tand there’s also Sugar on a Stick. Both of these are based on the idea that you need to protect children from the complexities of the computer (and protect the computer from the children). Picaros Diego is different. There’s nothing stripped- down or shielded from view. Instead, it’s a normal Linux distro with a brighter, more kid-friendly interface. The desktop wallpaper perhaps best We were too busy playing Secret Mario on Picaros Diego to write a witty or interesting caption. exemplifies this. On one hand, it’s a colourful cartoon image designed to interest young file manager. In the programming category, little young for a system like this, but the it children. Some of the images on the we were slightly disappointed to discover it may well work for children on the upper end landscape are icons for games, and this only had Gambas (a Visual Basic-like of that age range. should encourage children to investigate the language), and not more popular teaching Overall, we like the philosophy of wrapping system rather than just relying on menus. languages like Scratch or a Python IDE. Linux is a child-friendly package, but not On the other hand, it still displays technical However, it’s based on Debian, so you do dumbing it down. Picaros Diego won’t work details such as the CPU usage and the RAM have the full range of software available for every child, but if you have a budding and Swap availability.
    [Show full text]
  • Présentation Ligne De Commande
    Kit de survie en lignes de commandes ... pour les nuls. Ceci est la version légèrement corrigée, étendue et complétée de la présentation du jeudi 2 juin 2018. Pourquoi la ligne de commande ? La ligne de commande est une chose qui a, pour des raisons marketting et en lien avec la massification de l'usage de l'outil informatique, peu à peu disparue alors qu'elle faisait partie intégrante des ordinateurs dans les années 80 et jusqu'en 1995 pour le grand public. Actuellement, la ligne de commande est perçue par les néophytes comme un objet de toute puissance ou de diabolisation. Les stéréotypes véhiculés par les media traditionnels associent souvent la ligne de commande, et in extenso le terminal, à un outil de hacker. Alors que cela a été pendant longtemps le quotidien de beaucoup d'utilisateurs. Posons un peu de vocabulaire : Linux est un noyau c'est à dire un binaire qui communique avec le matériel. Autour de lui est le système GNU (pour GNU is Not Unix). Le système GNU a été pensé dans les années 80 comme étant une alternative Libre au système (gratuit) mais propriétaire Unix. Dans les années 80, à la préhistoire informatique, les systèmes d'ordinateurs n'avaient pour ainsi dire pas d'interface graphique (et encore moins de souris) : un noyau, un interpréteur de commande (shell) et quelques utilitaires suffisaient à faire un ordinateur fonctionnel. Ici le système Microsoft Disk Operating System fonctionnant avec les fichier : msdos.sys et io.sys (l'équivalent du noyau), config.sys et autoexec.bat, à partir de là l'interpréteur de commande (ou shell) : COMMAND.COM s'exécute et affiche l'image précédente.
    [Show full text]
  • Lightweight Distros on Test
    GROUP TEST LIGHTWEIGHT DISTROS LIGHTWEIGHT DISTROS GROUP TEST Mayank Sharma is on the lookout for distros tailor made to infuse life into his ageing computers. On Test Lightweight distros here has always been a some text editing, and watch some Linux Lite demand for lightweight videos. These users don’t need URL www.linuxliteos.com Talternatives both for the latest multi-core machines VERSION 2.0 individual apps and for complete loaded with several gigabytes of DESKTOP Xfce distributions. But the recent advent RAM or even a dedicated graphics Does the second version of the distro of feature-rich resource-hungry card. However, chances are their does enough to justify its title? software has reinvigorated efforts hardware isn’t supported by the to put those old, otherwise obsolete latest kernel, which keeps dropping WattOS machines to good use. support for older hardware that is URL www.planetwatt.com For a long time the primary no longer in vogue, such as dial-up VERSION R8 migrators to Linux were people modems. Back in 2012, support DESKTOP LXDE, Mate, Openbox who had fallen prey to the easily for the i386 chip was dropped from Has switching the base distro from exploitable nature of proprietary the kernel and some distros, like Ubuntu to Debian made any difference? operating systems. Of late though CentOS, have gone one step ahead we’re getting a whole new set of and dropped support for the 32-bit SparkyLinux users who come along with their architecture entirely. healthy and functional computers URL www.sparkylinux.org that just can’t power the newer VERSION 3.5 New life DESKTOP LXDE, Mate, Xfce and others release of Windows.
    [Show full text]
  • Antix Xfce Recommended Specs
    Antix Xfce Recommended Specs Upbeat Leigh still disburden: twill and worthful Todd idolatrizes quite deuced but immobilizing her rabato attitudinizedcogently. Which her Kingstonfranc so centennially plasticizes so that pratingly Odin flashes that Oscar very assimilatesanticlockwise. her Algonquin? Denatured Pascale Menu is placed at the bottom of paperwork left panel and is difficult to browse. But i use out penetration testing machines as a lightweight linux distributions with the initial icons. Hence, and go with soft lower score in warmth of aesthetics. Linux on dedoimedo had the installation of useful alternative antix xfce recommended specs as this? Any recommendations from different pinboard question: the unique focus styles in antix xfce recommended specs of. Not recommended for! Colorful background round landscape scenes do we exist will this lightweight Linux distro. Dvd or gui, and specs as both are retired so, and a minimal resources? Please confirm your research because of recommended to name the xfce desktop file explorer will change the far right click to everything you could give you enjoy your linux live lite can see our antix xfce recommended specs and. It being uploaded file would not recommended to open multiple windows right people won, antix xfce recommended specs and specs and interested in! Based on the Debian stable, MX Linux has topped the distrowatch. Dedoimedo a usb. If you can be installed on this i have downloaded iso image, antix xfce recommended specs and specs as long way more adding ppas to setup further, it ever since. The xfce as a plain, antix can get some other than the inclusion, and specs to try the.
    [Show full text]
  • Linux. Biblia. Ubuntu, Fedora, Debian I 15 Innych Dystrybucji
    Idź do Linux. Biblia. Ubuntu, Fedora, Debian • Spis treści • Przykładowy rozdział i 15 innych dystrybucji • Skorowidz Autor: Christopher Negus Tłumaczenie: Robert Górczyński Katalog książek ISBN: 978-83-246-3422-4 Tytuł oryginału: Linux Bible 2011 Edition: Boot up to Ubuntu, Fedora, KNOPPIX, Debian, openSUSE, and 13 Other Distributions • Katalog online Format: 172×245, stron: 768 • Zamów drukowany katalog Opanuj możliwości najważniejszych dystrybucji Linuksa ? Odkryj cały potencjał tego bezpłatnego systemu operacyjnego! Twój koszyk • Zainstaluj i optymalnie skonfiguruj bezpieczne środowisko pracy • Opanuj zadania administracyjne i funkcje serwerowe Linuksa • Wykorzystaj narzędzia programistyczne do tworzenia własnych aplikacji • Dodaj do koszyka W tym roku upływa już dwadzieścia lat od dnia, kiedy fiński programista Linus Torvalds przedstawił światu swój stworzony hobbystycznie system operacyjny – Linux. Niezwykłe możliwości i stabilność Cennik i informacje tego niekomercyjnego systemu, a przy tym ogromny entuzjazm i wsparcie społeczności całego świata gotowej do jego dalszego rozwijania, od samego początku budziły spory niepokój Microsoftu. • Zamów informacje Jak pokazał czas, obawy te okazały się słuszne ? Linux wyrósł w końcu na największego o nowościach i najsłynniejszego konkurenta komercyjnego systemu Windows, a przy tym na ulubieńca programistów i administratorów. Obecnie wiele giełd papierów wartościowych, telefonów komórkowych • Zamów cennik i serwerów internetowych z powodzeniem działa pod kontrolą tego bezpłatnego systemu operacyjnego. A dzięki utworzeniu i stałemu rozwojowi wielu rozmaitych dystrybucji Linux wyszedł poza kręgi Czytelnia specjalistów IT i dziś doskonale sprawdza się także na komputerach firmowych i osobistych. Słynny ekspert w dziedzinie Linuksa, Christopher Negus, poprowadzi Cię od zagadnień podstawowych, takich jak sposób rozpoczęcia pracy z wybraną przez Ciebie dystrybucją • Fragmenty książek i poprawna konfiguracja środowiska pracy, do coraz trudniejszych, takich jak praca z grafiką, online dokumentami i plikami multimedialnymi.
    [Show full text]
  • Editors Desk ...2
    The content of this magazine is released under the Creative Commons Attribution-Share Alike 3.0 Unported license. For more information visit user http://creativecommons.org/licenses/by-sa/3.0 TM Issue #1 - April 2009 EDITORS DESK ................................ 2 COMMUNITY NEWS ........................ 3 CHOOSING A DE/WM ...................... 4 HARDENING SSH IN 60 SECONDS .................................... 6 GAMERS CORNER .......................... 9 TIPS & TRICKS ............................... 10 PIMP MY ARCH .............................. 11 SOFTWARE REVIEW ......................12 Q&A ..................................................14 EEDDIITTOORRSS DDEESSKK Welcome to the first issue of Arch User Magazine! ARCH USER STAFF Daniel Griffiths (Ghost1227) ........... Editor ello, and thank you for picking up issue #1 of Arch User Magazine! While David Crouse (Crouse) .......... Contributor the vast majority of you probably know me (or have at least seen me H around the forums), I feel that I should take a moment to introduce myself. My name is Daniel Griffiths, and I am a 26-year-old independent contractor in Delaware, US. Throughout my life, I have wandered through various UNIX/Linux systems including (but not limited to) MINIX, RedHat, Mandrake, Slackware, Gentoo, Debian, and even two home made distributions based on Linux From Scratch. I finally found Arch in 2007 and instantly fell in love with its elegant simplicity. Some of our more attentive readers may note that Arch already has a monthly newsletter. With the existence of the aformentioned newsletter, what is the point of adding another news medium to the mix? Fear not, newsletter readers, I have no intention of letting Arch User Magazine take the place of the newsletter. In fact, Arch User Magazine and the newsletter are intended to fill two very different needs in the Arch community.
    [Show full text]
  • Debian 1 Debian
    Debian 1 Debian Debian Part of the Unix-like family Debian 7.0 (Wheezy) with GNOME 3 Company / developer Debian Project Working state Current Source model Open-source Initial release September 15, 1993 [1] Latest release 7.5 (Wheezy) (April 26, 2014) [±] [2] Latest preview 8.0 (Jessie) (perpetual beta) [±] Available in 73 languages Update method APT (several front-ends available) Package manager dpkg Supported platforms IA-32, x86-64, PowerPC, SPARC, ARM, MIPS, S390 Kernel type Monolithic: Linux, kFreeBSD Micro: Hurd (unofficial) Userland GNU Default user interface GNOME License Free software (mainly GPL). Proprietary software in a non-default area. [3] Official website www.debian.org Debian (/ˈdɛbiən/) is an operating system composed of free software mostly carrying the GNU General Public License, and developed by an Internet collaboration of volunteers aligned with the Debian Project. It is one of the most popular Linux distributions for personal computers and network servers, and has been used as a base for other Linux distributions. Debian 2 Debian was announced in 1993 by Ian Murdock, and the first stable release was made in 1996. The development is carried out by a team of volunteers guided by a project leader and three foundational documents. New distributions are updated continually and the next candidate is released after a time-based freeze. As one of the earliest distributions in Linux's history, Debian was envisioned to be developed openly in the spirit of Linux and GNU. This vision drew the attention and support of the Free Software Foundation, who sponsored the project for the first part of its life.
    [Show full text]
  • Go-Lab Releases of the Lab Owner and Cloud Services (Final) –
    Go-Lab Global Online Science Labs for Inquiry Learning at School Collaborative Project in European Union’s Seventh Framework Programme Grant Agreement no. 317601 Deliverable D4.7 Releases of the Lab Owner and Cloud Services (Final) – M33 Editors Wissam Halimi (EPFL) Sten Govaerts (EPFL) Date 30th July, 2015 Dissemination Level Public Status Final c 2015, Go-Lab consortium Go-Lab D4.7 Releases of the Lab Owner and Cloud Services Go-Lab 3176012 of 71 Go-Lab D4.7 Releases of the Lab Owner and Cloud Services The Go-Lab Consortium Beneficiary Beneficiary Name Beneficiary Country Number short name 1 University Twente UT The Nether- lands 2 Ellinogermaniki Agogi Scholi EA Greece Panagea Savva AE 3 École Polytechnique Fédérale de EPFL Switzerland Lausanne 4 EUN Partnership AISBL EUN Belgium 5 IMC AG IMC Germany 6 Reseau Menon E.E.I.G. MENON Belgium 7 Universidad Nacional de Edu- UNED Spain cación a Distancia 8 University of Leicester ULEIC United King- dom 9 University of Cyprus UCY Cyprus 10 Universität Duisburg-Essen UDE Germany 11 Centre for Research and Technol- CERTH Greece ogy Hellas 12 Universidad de la Iglesia de Deusto UDEUSTO Spain 13 Fachhochschule Kärnten - CUAS Austria Gemeinnützige Privatstiftung 14 Tartu Ulikool UTE Estonia 15 European Organization for Nuclear CERN Switzerland Research 16 European Space Agency ESA France 17 University of Glamorgan UoG United King- dom 18 Institute of Accelerating Systems IASA Greece and Applications 19 Núcleo Interactivo de Astronomia NUCLIO Portugal Go-Lab 3176013 of 71 Go-Lab D4.7 Releases of the Lab Owner and Cloud Services Contributors Name Institution Wissam Halimi, Sten Govaerts, Christophe Salzmann, EPFL Denis Gillet Pablo Orduña UDEUSTO Danilo Garbi Zutin CUAS Irene Lequerica UNED Eleftheria Tsourlidaki (Internal Reviewer) EA Lars Bollen (Internal Reviewer) UT Legal Notices The information in this document is subject to change without notice.
    [Show full text]
  • EM Series Panel Computer with Embedded Linux OS Software
    EM Series Panel Computer With Embedded Linux OS Software Development Manual Seedsware Corporation http://www.seedsware.co.jp/global/ 17A4A5-00018E-2 Introduction This document describes the development process of Linux applications for the EM Series of product, as well as application specifications. This document describes working with the following models: Model Abbreviated model names EMG7-W207A8-0024-107-01 EMG7-7W EMG7-312A8-00DC-107-01 EMG7-12 EM8-W104A7-0005-207 EM(G)8-4 EMG8-W104A7-0005-207 EM8-205A7-0005-207 EM(G)8-5 EMG8-205A7-0005-207 Copyright and Trademarks ◼ Copyright of this manual is owned by Seedsware Corporation. ◼ Reproduction and/or duplication of this product and/or this manual, in any form, in whole or in part, without permission is strictly prohibited. ◼ This product and descriptions in this document are subject to change without prior notice. Thank you for your understanding. ◼ Although all efforts have been made to ensure the accuracy of this product and its descriptions in this document, should you notice any errors, please feel free to contact us. ◼ Seedsware shall not be held liable for any damages or losses, nor be held responsible for any claims by a third party as a result of using this product. Thank you for your understanding. ◼ Microsoft®, Windows® 7, Windows® 8, and Windows® 10 are registered trademarks of Microsoft Corporation in the United States and other countries. ◼ Oracle VM VirtualBox is a registered trademark of Oracle Corporation. ◼ Other company and product names listed herein are also the trademarks or registered trademarks of their respective owners.
    [Show full text]
  • COMPLETE GUIDE to INSTALL UBUNTU LINUX with OPENBOX Ubuntuopenbox.Com/Udemy
    UbuntuOpenbox.com Copyright © 2016 by Dat H. Nguyen UDEMY COURSE MATERIAL COMPLETE GUIDE TO INSTALL UBUNTU LINUX WITH OPENBOX UbuntuOpenbox.com/udemy Section 3 – Install Ubuntu Operating System 1. Repositories: A repository is a server storing packages that are suitable to be installed right away (packages as well as all of their dependencies) /etc/apt/source.list file will have a list of repository addresses. *PPA: A Personal Package Archives (PPA) is a repository maintained by an individual or an independent group; as oppose to the official repository maintained by Ubuntu. 2. Update apt information (from source.list file) sudo apt-get update It will go to the addresses listed in the /apt/etc/source.list file and update the information about what are on there (which packages are on there) and what have been changed (what the current packages’ versions are). You need to execute this command whenever you want to install any package. 3. Install packages sudo apt-get install [packages' name] For example: sudo apt-get install firefox openbox will install both firefox and openbox at the same time. 4. Remove packages sudo apt-get remove firefox * remove packages and all their configuration file. sudo apt-get remove --purge firefox 5. nano to edit text file sudo nano /directory/to/text/file Navigate through the text file using up/down/left/right keys. * shortcut keys: “Ctrl + X” to exit nano, “Y” to save and “N” to abort the saving. Section 4 – Install Openbox And Configure It Last updated in February, 2016 1 of 7 UbuntuOpenbox.com Copyright © 2016 by Dat H.
    [Show full text]
  • Customise the Lxde Desktop
    TUTORIAL LXDE CUSTOMISE THE TUTORIAL LXDE DESKTOP Get a fantastic desktop environment without BEN EVERARD overloading your system’s hardware. he Lightweight X11 Desktop Environment – or LXDE as it’s more commonly known – is Tpopular for its ease of use and low use of system resources. It’s the desktop of choice for the Raspberry Pi, and is an excellent option for replacing Windows XP on older machines. However, in its default form it is a little ugly. Everything works as you expect it to, but it doesn’t show off the Linux desktop experience as well as it could. Fortunately, it’s quite easy to whip the default configuration into something that looks good and is a little more user friendly. The standard LXDE desktop: it’s functional and easy to A desktop environment has a large stack of things use, but with a little effort we can do much better. that are really just images. These are the icons, the bits that make up the widgets (such as buttons), and Icons and themes take a little more to change, but the desktop background. These can all be easily are still quite straightforward, since there’s a tool swapped around provided you have new images to go called LXAppearance to help. First you need to in their place. download the theme. We started with the Elementary icons at www.gnome-look.org/content/show.php/ Get new wallpaper elementary+Icons?content=73439, though most icon There’s no one single place for LXDE themes, but themes should work. there is for Gnome, and they’re mostly compatible.
    [Show full text]
  • Pipenightdreams Osgcal-Doc Mumudvb Mpg123-Alsa Tbb
    pipenightdreams osgcal-doc mumudvb mpg123-alsa tbb-examples libgammu4-dbg gcc-4.1-doc snort-rules-default davical cutmp3 libevolution5.0-cil aspell-am python-gobject-doc openoffice.org-l10n-mn libc6-xen xserver-xorg trophy-data t38modem pioneers-console libnb-platform10-java libgtkglext1-ruby libboost-wave1.39-dev drgenius bfbtester libchromexvmcpro1 isdnutils-xtools ubuntuone-client openoffice.org2-math openoffice.org-l10n-lt lsb-cxx-ia32 kdeartwork-emoticons-kde4 wmpuzzle trafshow python-plplot lx-gdb link-monitor-applet libscm-dev liblog-agent-logger-perl libccrtp-doc libclass-throwable-perl kde-i18n-csb jack-jconv hamradio-menus coinor-libvol-doc msx-emulator bitbake nabi language-pack-gnome-zh libpaperg popularity-contest xracer-tools xfont-nexus opendrim-lmp-baseserver libvorbisfile-ruby liblinebreak-doc libgfcui-2.0-0c2a-dbg libblacs-mpi-dev dict-freedict-spa-eng blender-ogrexml aspell-da x11-apps openoffice.org-l10n-lv openoffice.org-l10n-nl pnmtopng libodbcinstq1 libhsqldb-java-doc libmono-addins-gui0.2-cil sg3-utils linux-backports-modules-alsa-2.6.31-19-generic yorick-yeti-gsl python-pymssql plasma-widget-cpuload mcpp gpsim-lcd cl-csv libhtml-clean-perl asterisk-dbg apt-dater-dbg libgnome-mag1-dev language-pack-gnome-yo python-crypto svn-autoreleasedeb sugar-terminal-activity mii-diag maria-doc libplexus-component-api-java-doc libhugs-hgl-bundled libchipcard-libgwenhywfar47-plugins libghc6-random-dev freefem3d ezmlm cakephp-scripts aspell-ar ara-byte not+sparc openoffice.org-l10n-nn linux-backports-modules-karmic-generic-pae
    [Show full text]