Define a custom shortcut for Compiz Window Manager
Ralf Mardorf
silver.bullet at zoho.com
Fri Apr 22 18:32:02 UTC 2016
On Fri, 22 Apr 2016 20:24:25 +0200, Ralf Mardorf wrote:
>What does manipulate the X and Y values in the below script?
>The script should keep those values, since nothing does change them.
>
>$ win75
>0 80
>4 130
>$ win75 -
>4 130
>8 180
>$ cat /usr/local/bin/win75
>#!/bin/dash
>eval $(xdotool getwindowgeometry --shell $(xdotool getactivewindow))
>WIDTH=$(calc "int($WIDTH*0.75)")
>case $1 in
> "") HEIGHT=$(calc "int($HEIGHT*0.75)");
>esac
>wmctrl -i -r $WINDOW -b remove,maximized_vert,maximized_horz
>echo $X $Y
>wmctrl -i -r $WINDOW -e "0,$X,$Y,$WIDTH,$HEIGHT"
>eval $(xdotool getwindowgeometry --shell $(xdotool getactivewindow))
>echo $X $Y
>exit
>
>I changed the string in the wmctrl command, but the result is the same.
>
>wmctrl -i -r $WINDOW -e 0,$X,$Y,"$WIDTH,$HEIGHT"
No surprise, also vice versa it's fishy.
$ cat /usr/local/bin/win75
#!/bin/dash
eval $(xdotool getwindowgeometry --shell $(xdotool getactivewindow))
WIDTH=$(calc "int($WIDTH*0.75)")
case $1 in
"") HEIGHT=$(calc "int($HEIGHT*0.75)");
esac
wmctrl -i -r $WINDOW -e 0,$X,$Y,"$WIDTH,$HEIGHT"
wmctrl -i -r $WINDOW -b remove,maximized_vert,maximized_horz
exit
More information about the ubuntu-users
mailing list