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.
Today’s modular x86 servers are compute-centric, designed as a least common denominator to support a wide range of IT workloads. Those generic, virtualized IT workloads have much different resource optimization requirements than hyperscale and cloud applications. They have resulted in a “one size fits all” enterprise IT architecture that is not optimized for a specific set of IT workloads, and especially not emerging hyperscale workloads, such as web applications, big data, and object storage. In this report, you will learn how shifting the focus from traditional compute-centric IT architectures to an innovative disaggregated fabric-based architecture can optimize and scale your data center.
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
| 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 |
| Non-Linux FOSS: Seashore | May 10, 2013 |
| Trying to Tame the Tablet | May 08, 2013 |
- Using Salt Stack and Vagrant for Drupal Development
- Making Linux and Android Get Along (It's Not as Hard as It Sounds)
- New Products
- Validate an E-Mail Address with PHP, the Right Way
- Drupal Is a Framework: Why Everyone Needs to Understand This
- A Topic for Discussion - Open Source Feature-Richness?
- The Pari Package On Linux
- New Products
- Home, My Backup Data Center
- Developer Poll
- This is the easiest tutorial
4 hours 6 min ago - Ahh, the Koolaid.
9 hours 44 min ago - git-annex assistant
15 hours 44 min ago - direct cable connection
16 hours 7 min ago - Agreed on AirDroid. With my
16 hours 17 min ago - I just learned this
16 hours 21 min ago - enterprise
16 hours 51 min ago - not living upto the mobile revolution
19 hours 42 min ago - Deceptive Advertising and
20 hours 18 min ago - Let\'s declare that you have
20 hours 19 min 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.