From c9935112c8b66e23d2acd7584fecd8e99a281b14 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 25 Apr 2011 12:22:55 -0400 Subject: .compizsnap, .nanorc Track .compizsnap/* files (hurpdurp), only tracked the directory before. Use *.nanorc files from the nano 2.2.6 distribution. --- .compizsnap/left.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .compizsnap/left.sh (limited to '.compizsnap/left.sh') diff --git a/.compizsnap/left.sh b/.compizsnap/left.sh new file mode 100644 index 0000000..8fb479f --- /dev/null +++ b/.compizsnap/left.sh @@ -0,0 +1,23 @@ +#!/bin/sh +# +# CompizSnap is a collaborative project from ubuntuforums.org and is free software. +# This script adds window snapping functionality to compiz using the commands plugin. +# +# Directions: edit the mouse.sh script +# + +. $HOME/.compizsnap/mouse.sh + +WIDTH=`xdpyinfo | grep 'dimensions:' | sed -r 's/.*\s([0-9]+)x([0-9]+)\s.*/\1/'` +HALF=$(($WIDTH/2)) + +if (xinput --query-state $MOUSE | grep down) +then + echo ".compizsnap/left.sh: snapping because the mouse is pressed" + wmctrl -r :ACTIVE: -b remove,maximized_vert,maximized_horz + wmctrl -r :ACTIVE: -b add,maximized_vert + wmctrl -r :ACTIVE: -e 0,0,0,$HALF,-1 +else + echo ".compizsnap/left.sh: exiting because the mouse isn't pressed" +fi + -- cgit v1.2.3-2-g168b