Jan 14 2011
How to Get Windows 7’s Aero Snap Feature in Linux
So I’ve just finished creating my own script based off of the tips found at LifeHacker, OMG Ubuntu, ClickOnF5, and a video here.
You may ask: why create yet another script for this? Well, I found a couple issues with the other implementations that bugged me.
- After snapping, windows lost their original dimensions :-/
- The left & right states failed to unset the horizontal maximized window property 🙁
- Inputting the scripts directly into CCSM, or separate scripts was a bit messy
So, I created a single script that fixes these issues, and also adds another feature: Set a window’s size back to a default state. Currently, this default is set using a bash variable, because I usually like to keep my terminals and nautilus windows one manageable size. I also mainly find myself only using this snap feature on nautilus and terminal windows as well, so it works for me. Perhaps in the future there may be some need to keep track of each window’s individual default size… but that’s too complicated for now.
How to use:
Use -l for left, -r for right, -m for maximized, and -d for a “default” sized window. The default window geometry is configurable as a variable called $WIN_DEFAULTGEOM. If the variable is set at runtime, it will override the hardcoded value in the script. You can use this to create however many default window sizes you need if you set them in multiple commands in compiz. See the manpage for wmctrl for the format to specify window geometry arguments. (This is called <MVARG> in the manpage). If you’re wondering why I chose such a weird default value… it cooresponds to an 80×26 line terminal window on my resolution.
Examples:
aero-resize -l # Snap left
aero-resize -r # Snap right
aero-resize -m # Maximize
aero-resize -d # Default size (as hardcoded in script)
# You may also use whatever geometry you wish like so:
WIN_DEFAULTGEOM=0,20,80,800,600 aero-resize -d
How to install:
Get the script and save as “aero-resize” someplace in your PATH (I put mine in ~/bin). Then add the commands you wish to your compiz command config, or simply use it in a terminal window to resize it.
cd ~/bin
wget http://lyraphase.com/src/aero-resize/aero-resize
chmod +x aero-resize
Here are some screenshots of my compiz settings. If, you’re still having trouble, follow the instructions in this video, but replace the commands he uses with my script.
Oct 22 2012
Installing latest git on Ubuntu with git-subtree support
Recently I found it necessary to join two git repos together while still maintaining history & future ability to split or rejoin them. Enter the ‘
git subtree
‘ command.Because this command is now merged into git-core since 1.7.11, we will need to install the latest git from a PPA. Note that as of ‘now‘, the latest available package from the PPA we will use is 1.8.0, and it currently installs the subtree script to
/usr/share/doc/git/contrib/subtree
. However, since the Makefile there expects asciidoc.conf to be in../../Documentation/asciidoc.conf
, we must checkout the source package & make from there.I am using Ubuntu 12.04.1 LTS here.
Installing latest git-core + git-subtree
First add the PPA, update & upgrade. Then install git packages that are held back by apt. Also install asciidoc (optional if you want the manpage).
Next, install the source package & make git-subtree + manpage:
This may not work for you if you’re not using Ubuntu (your prefix or libexec dir may be different). If in doubt, get git-core from upstream and build it from there, or install the script to
$(git --exec-path)/git-subtree
andchmod 755
it (see Makefile & INSTALL doc incontrib/subtree
).Now you should be able to use the ‘
git subtree
‘ command. For help, run ‘git help subtree
‘ or ‘man git-subtree
‘.Some helpful examples of
git subtree
in use in the wild:Update 2012-10-22: Currently the package for git 1.8.0 from the PPA does not include the
git-prompt.sh
script. If you are using the__git_ps1
function in your bash prompt, you’ll need to get the source package and find that file in/home/jcuzella/src/git-core/git-1.8.0/contrib/completion/git-prompt.sh
. Install that file somewhere under your home directory and then add a line to your.bashrc
file to source it. You’ll know if you need it because you’ll probably see this message after installing latest git:By Administrator • Projects, Software • Tags: git, linux, programming, subtree, ubuntu