diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-04-25 12:22:55 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-04-25 12:22:55 -0400 |
commit | c9935112c8b66e23d2acd7584fecd8e99a281b14 (patch) | |
tree | 218ebbeb47e5a77620de5af597833522304d92c3 /.compizsnap/max.sh | |
parent | 9b77ce1433aa790e174947dc33745926965ee4a1 (diff) |
.compizsnap, .nanorc
Track .compizsnap/* files (hurpdurp), only tracked the directory before.
Use *.nanorc files from the nano 2.2.6 distribution.
Diffstat (limited to '.compizsnap/max.sh')
-rw-r--r-- | .compizsnap/max.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.compizsnap/max.sh b/.compizsnap/max.sh new file mode 100644 index 0000000..d1115ec --- /dev/null +++ b/.compizsnap/max.sh @@ -0,0 +1,19 @@ +#!/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 + +if (xinput --query-state $MOUSE | grep down) +then + echo ".compizsnap/max.sh: maximizing because the mouse is pressed" + wmctrl -r :ACTIVE: -b remove,maximized_vert,maximized_horz + wmctrl -r :ACTIVE: -b add,maximized_vert,maximized_horz +else + echo ".compizsnap/max.sh: exiting because the mouse isn't pressed" +fi + |