Hack and / - Automate your Desktop with wmctrl
Kyle Rankin is a systems architect; and the author of DevOps Troubleshooting, The Official Ubuntu Server Book, Knoppix Hacks, Knoppix Pocket Reference, Linux Multimedia Hacks, and Ubuntu Hacks.
Realizing the promise of Apache® Hadoop® requires the effective deployment of compute, memory, storage and networking to achieve optimal results. With its flexibility and multitude of options, it is easy to over or under provision the server infrastructure, resulting in poor performance and high TCO. Join us for an in depth, technical discussion with industry experts from leading Hadoop and server companies who will provide insights into the key considerations for designing and deploying an optimal Hadoop cluster.
Sponsored by AMD
Built-in forensics, incident response, and security with Red Hat Enterprise Linux 6
Every security policy provides guidance and requirements for ensuring adequate protection of information and data, as well as high-level technical and administrative security requirements for a system in a given environment. Traditionally, providing security for a system focuses on the confidentiality of the information on it. However, protecting the data integrity and system and data availability is just as important. For example, when processing United States intelligence information, there are three attributes that require protection: confidentiality, integrity, and availability.
Learn more about catching the bad guy in this free white paper.
Sponsored by DLT Solutions
| Designing Electronics with Linux | May 22, 2013 |
| Dynamic DNS—an Object Lesson in Problem Solving | May 21, 2013 |
| Using Salt Stack and Vagrant for Drupal Development | May 20, 2013 |
| Making Linux and Android Get Along (It's Not as Hard as It Sounds) | May 16, 2013 |
| Drupal Is a Framework: Why Everyone Needs to Understand This | May 15, 2013 |
| Home, My Backup Data Center | May 13, 2013 |
- Designing Electronics with Linux
- Making Linux and Android Get Along (It's Not as Hard as It Sounds)
- Dynamic DNS—an Object Lesson in Problem Solving
- New Products
- Using Salt Stack and Vagrant for Drupal Development
- Validate an E-Mail Address with PHP, the Right Way
- Build a Skype Server for Your Home Phone System
- A Topic for Discussion - Open Source Feature-Richness?
- Tech Tip: Really Simple HTTP Server with Python
- Why Python?
- Not free anymore
2 hours 7 min ago - Great
5 hours 54 min ago - Reply to comment | Linux Journal
6 hours 2 min ago - Understanding the Linux Kernel
8 hours 17 min ago - General
10 hours 47 min ago - Kernel Problem
20 hours 50 min ago - BASH script to log IPs on public web server
1 day 1 hour ago - DynDNS
1 day 4 hours ago - Reply to comment | Linux Journal
1 day 5 hours ago - All the articles you talked
1 day 7 hours ago




Comments
Automation
"I am rarely happier than when spending an entire day programming my computer to perform automatically a task that it would otherwise take me a good ten seconds to do by hand." (Douglas Adams)
quake terminal
Hello,
Thanks for the article! I changed it a bit so it will also open the terminal if not open yet.
#!/bin/sh touchTerm() { wmctrl -r 'Quake Terminal' -e '0,0,0,1279,500' wmctrl -r 'Quake Terminal' -b add,shaded wmctrl -r 'Quake Terminal' -b add,below touch /tmp/.quake.shaded } S1=`wmctrl -l|grep 'Quake Terminal'|wc -l` if [ $S1 -eq '0' ]; then gnome-terminal --window-with-profile='Quake Terminal' --title='Quake Terminal' wmctrl -r 'Quake Terminal' -e '0,0,0,1279,500' fi # Unshade and bring to front if [ -f /tmp/.quake.shaded ]; then wmctrl -r 'Quake Terminal' -b remove,below wmctrl -r 'Quake Terminal' -b remove,shaded wmctrl -a 'Quake Terminal' rm /tmp/.quake.shaded # Shade and send to back else touchTerm fiGreat article! Thanks for
Great article! Thanks for writing it.