~scripts
55 itemsDownload ./*

55 itemsDownload ./*

..
dzen2
tiling
vosh
4cdl
4trips
alarm
ambient
ana-wall.sh
battery-monitor
brightness.sh
checkit
cleverbot.py
clock
color-gen
colors-hex
colorscheme.sh
compton
dailywall
dmenu
ffthumb
grid
gridmacro
gridmacro.kde
help
importw
indexer
install-all.sh
install-twily.sh
installng
keep-on
mp3ogg
orage
pipes
pipes.x
pipewire_bt.sh
ports
rain
randwall
rotate.sh
scan.sh
screen-dim
screencast
screencast2
scrot
scrotw
search
skull
slocker
starwars
streamit
sumnum
tty-colorize
usrmount
ytp
ytplay


scriptsgridmacro.kde
1 154•  5 years ago•  DownloadRawClose
5 years ago•  1 154

{}
#!/bin/bash
#
#   Author:         Twily                           2014 - 2018
#   Description:    Tile windows in floating mode using hotkeys
#   Requires:       wmctrl, xdotool, xwininfo, xprop, sed
#   Usage:          $ sh ./grid 2 4
#                   (Eg.: Bind key C-S-A to "gridmacro 1"
#  |---|---|---|          Bind key C-S-Z to "gridmacro 2"
#  | 1 | 2 | 3 |          Bind key C-S-X to "gridmacro 3")
#  |---|---|---|
#  | 7 | 8 | 9 |         (C~trl       A~lt        K~ey P~ad
#  |---|---|---|          W~in        S~hift)
#  | 4 | 5 | 6 |
#  |---|---|---|
#
#   Note: This is an experimental alternative version of the original
#         grid window tile script with hotkeys, this however only
#         takes 3 keys in, cycle through the 9 window placements
#         on each section by saving position to a temporary file.
#         Eg. Press once for pos1, twice for pos2 and so on.
#         Ideally used with macro keys. ((Note still experimental)).
#   Tip:  Use AutoKey to setup your keybindings, create a new folder
#         (optional), create a new script within the folder, write:
#         system.exec_command("/home/user/gridmacro 1")
#         Bind your preffered key, eg. as I wrote above, do so for the
#         gridmacro 2 and gridmacro 3 as well, save and try it.
#   PS:   This version of the script have been fixed a bit for KDE,
#         Search the file for KDE to see what is changed.
#

WID=$(xdotool getactivewindow)
WID=$(printf 0x%x $WID)
WNAME=$(xdotool getactivewindow getwindowname)
if [ "$WNAME" == "Desktop" ]; then exit 3; fi
if [ "$WNAME" == "Desktop — Plasma" ]; then exit 3; fi

W=1920              # Desktop Width
H=1080              # Desktop Height

eM=32               # (Used for equal margin on all sides)
G=32                # Window Gap

L=$eM               # Left Margin
T=$(( $eM + 36 ))   # Top Margin (+24 for panel)
R=$eM               # Right Margin
B=$eM               # Bottom Margin

eval $(xwininfo -id $WID |
    sed -n -e "s/^ \+Relative upper-left X: \+\([0-9]\+\).*/M=\1/p" \
           -e "s/^ \+Relative upper-left Y: \+\([0-9]\+\).*/D=\1/p")

eD=31 ## FIX FOR KDE, USE $D OTHERWISE!!
#eD=$D
D=$(( $D + 31 ));    # Customize to fine tune vertical alignment +/- ## FIXED FOR KDE, SET -1 INSTEAD OF +31 OTHERWISE!!

W=$(( $W - $L - $R ))
H=$(( $H - $T - $B ))
G=$(( $G / 2 ))
M=$(( $M * 2 ))

X=$L && Y=$T

DFILE="/tmp/gridmacro.tmp"
MACRO=$1
SELECT=0
DATA=`cat $DFILE`
if [[ -z "$DATA" ]]; then echo "1|1|1" > "$DFILE" && DATA="1|1|1"; fi
D1=`echo $DATA|cut -d'|' -f1`
D2=`echo $DATA|cut -d'|' -f2`
D3=`echo $DATA|cut -d'|' -f3`

case "$MACRO" in                        # Window Left,Top,Width,Height
    1)  SELECT="$D1"
        case "$SELECT" in # (gridmacro 1)
            1)  X=$(( $L ))                    &&  Y=$(( $T ))                     # top left       (1/6)
                W=$(( $W / 3 - $G - $M ))      &&  H=$(( $H / 2 - $G - $D - $M ))  ;;
            2)  X=$(( $W / 3 + $L + $G ))      &&  Y=$(( $T ))                     # top center     (1/6)
                W=$(( $W / 3 - $G * 2 - $M ))  &&  H=$(( $H / 2 - $G - $D - $M ))  ;;
            3)  X=$(( $W / 3 * 2 + $L + $G ))  &&  Y=$(( $T ))                     # top right      (1/6)
                W=$(( $W / 3 - $G - $M ))      &&  H=$(( $H / 2 - $G - $D - $M ))  ;;

            7)  X=$(( $L ))                    &&  Y=$(( $T ))                     # left           (1/3)
                W=$(( $W / 3 - $G - $M ))      &&  H=$(( $H - $D - $M ))           ;;
            8)  X=$(( $W / 3 + $L + $G ))      &&  Y=$(( $T ))                     # center         (1/3)
                W=$(( $W / 3 - $G * 2 - $M ))  &&  H=$(( $H - $D - $M ))           ;;
            9)  X=$(( $W / 3 * 2 + $L + $G ))  &&  Y=$(( $T ))                     # right          (1/3)
                W=$(( $W / 3 - $G - $M ))      &&  H=$(( $H - $D - $M ))           ;;

            4)  X=$(( $L ))                    &&  Y=$(( $H / 2 + $T + $G ))       # bottom left    (1/6)
                W=$(( $W / 3 - $G - $M ))      &&  H=$(( $H / 2 - $G - $D - $M ))  ;;
            5)  X=$(( $W / 3 + $L + $G ))      &&  Y=$(( $H / 2 + $T + $G ))       # bottom center  (1/6)
                W=$(( $W / 3 - $G * 2 - $M ))  &&  H=$(( $H / 2 - $G - $D - $M ))  ;;
            6)  X=$(( $W / 3 * 2 + $L + $G ))  &&  Y=$(( $H / 2 + $T + $G ))       # bottom right   (1/6)
                W=$(( $W / 3 - $G - $M ))      &&  H=$(( $H / 2 - $G - $D - $M ))  ;;

            *)  exit 2  ;;
        esac
        D1=$(( $D1 + 1 )); if [ $D1 -gt 9 ]; then D1=1; fi
        D2=1 && D3=1
    ;;

    2)  SELECT="$D2"
        case "$SELECT" in # (gridmacro 2)
            1)  X=$(( $L ))                    &&  Y=$(( $T ))                     # top left       (1/4)
                W=$(( $W / 2 - $G - $M ))      &&  H=$(( $H / 2 - $G - $D - $M ))  ;;
            2)  X=$(( $L ))                    &&  Y=$(( $T ))                     # top            (1/2)
                W=$(( $W - $M ))               &&  H=$(( $H / 2 - $G - $D - $M ))  ;;
            3)  X=$(( $W / 2 + $L + $G ))      &&  Y=$(( $T ))                     # top right      (1/4)
                W=$(( $W / 2 - $G - $M ))      &&  H=$(( $H / 2 - $G - $D - $M ))  ;;

            7)  X=$(( $L ))                    &&  Y=$(( $T ))                     # left           (1/2)
                W=$(( $W / 2 - $G - $M ))      &&  H=$(( $H - $D - $M ))           ;;
            8)  X=$(( $L ))                    &&  Y=$(( $T ))                     # center         (1/1)
                W=$(( $W - $M ))               &&  H=$(( $H - $D - $M ))           ;;
            9)  X=$(( $W / 2 + $L + $G ))      &&  Y=$(( $T ))                     # right          (1/2)
                W=$(( $W / 2 - $G - $M ))      &&  H=$(( $H - $D - $M ))           ;;

            4)  X=$(( $L ))                    &&  Y=$(( $H / 2 + $T + $G ))       # bottom left    (1/4)
                W=$(( $W / 2 - $G - $M ))      &&  H=$(( $H / 2 - $G - $D - $M ))  ;;
            5)  X=$(( $L ))                    &&  Y=$(( $H / 2 + $T + $G ))       # bottom         (1/2)
                W=$(( $W - $M ))               &&  H=$(( $H / 2 - $G - $D - $M ))  ;;
            6)  X=$(( $W / 2 + $L + $G ))      &&  Y=$(( $H / 2 + $T + $G ))       # bottom right   (1/4)
                W=$(( $W / 2 - $G - $M ))      &&  H=$(( $H / 2 - $G - $D - $M ))  ;;

            *)  exit 2  ;;
        esac
        D2=$(( $D2 + 1 )); if [ $D2 -gt 9 ]; then D2=1; fi
        D1=1 && D3=1
    ;;

    3)  SELECT="$D3"
        case "$SELECT" in # (gridmacro 3)
            1)  X=$(( $L ))                    &&  Y=$(( $T ))                     # top left       (1/3)
                W=$(( $W / 3 * 2 - $G - $M ))  &&  H=$(( $H / 2 - $G - $D - $M ))  ;;
            2)  X=$(( $W / 3 / 2 + $L ))       &&  Y=$(( $T ))                     # top            (1/2)
                W=$(( $W / 3 * 2 - $M ))       &&  H=$(( $H / 2 - $G - $D - $M ))  ;;
            3)  X=$(( $W / 3 + $L + $G ))      &&  Y=$(( $T ))                     # top right      (1/3)
                W=$(( $W / 3 * 2 - $G - $M ))  &&  H=$(( $H / 2 - $G - $D - $M ))  ;;

            7)  X=$(( $L ))                    &&  Y=$(( $T ))                     # left           (2/3)
                W=$(( $W / 3 * 2 - $G - $M ))  &&  H=$(( $H - $D - $M ))           ;;
            8)  X=$(( $L + $W / 10 ))          &&  Y=$(( $T + $H / 10 ))           # center         (1/1)
                W=$(( $W - $W / 5 - $M ))      &&  H=$(( $H - $H / 5 - $D - $M ))  ;;
            9)  X=$(( $W / 3 + $L + $G ))      &&  Y=$(( $T ))                     # right          (2/3)
                W=$(( $W / 3 * 2 - $G - $M ))  &&  H=$(( $H - $D - $M ))           ;;

            4)  X=$(( $L ))                    &&  Y=$(( $H / 2 + $T + $G ))       # bottom left    (1/3)
                W=$(( $W / 3 * 2 - $G - $M ))  &&  H=$(( $H / 2 - $G - $D - $M ))  ;;
            5)  X=$(( $W / 3 / 2 + $L ))       &&  Y=$(( $H / 2 + $T + $G ))       # bottom         (1/2)
                W=$(( $W / 3 * 2 - $M ))       &&  H=$(( $H / 2 - $G - $D - $M ))  ;;
            6)  X=$(( $W / 3 + $L + $G ))      &&  Y=$(( $H / 2 + $T + $G ))       # bottom right   (1/3)
                W=$(( $W / 3 * 2 - $G - $M ))  &&  H=$(( $H / 2 - $G - $D - $M ))  ;;

            *)  exit 2  ;;
        esac
        D3=$(( $D3 + 1 )); if [ $D3 -gt 9 ]; then D3=1; fi
        D1=1 && D2=1
    ;;

    *)  exit 1  ;;
esac

echo "$D1|$D2|$D3" > "$DFILE"

CURSOR=$(xdotool getmouselocation --shell | grep X | cut -c 3-) # Multi-monitor
if [ "$CURSOR" -gt "3840" ]; then
    X=$(( $X + 3841 )) # Third monitor
elif [ "$CURSOR" -gt "1920" ]; then
    X=$(( $X + 1921 )) # Second monitor
fi

WMCLASS=$(xprop -id $WID | grep WM_CLASS) # Fix windows
case "$WMCLASS" in
    *"spotify"* | *"libreoffice"* | *"obs"*)
        Y=$(( $Y + $eD ))
        ;;
    *"vivaldi"*) ## FIX FOR KDE, REMOVE THIS LINE OTHERWISE!!
        ;;
    *)  
        Y=$(( $Y + $eD )) ## FIX FOR KDE, REMOVE THIS LINE OTHERWISE!!
        ;;
esac

#wmctrl -r :ACTIVE: -b remove,maximized_vert,maximized_horz
#wmctrl -r :ACTIVE: -e 0,$X,$Y,$W,$H
wmctrl -v -i -r $WID -b remove,maximized_vert,maximized_horz
wmctrl -v -i -r $WID -e 0,$X,$Y,$W,$H
exit 0



Top
©twily.info 2013 - 2024
twily at twily dot info



2 011 787 visits
... ^ v