You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
567 B
21 lines
567 B
6 years ago
|
#!/bin/sh
|
||
|
|
||
|
# Enable mathematics in POSIX shell
|
||
|
calc() { awk "BEGIN{print $*}"; }
|
||
|
|
||
|
# Calculate size
|
||
|
MON_WIDTH=$(xdotool getdisplaygeometry | awk '{print $1}')
|
||
|
MON_HEIGHT=$(xdotool getdisplaygeometry | awk '{print $2}')
|
||
6 years ago
|
NEW_WIDTH=$(calc "$MON_WIDTH * 0.2")
|
||
6 years ago
|
NEW_HEIGHT=$(calc "$NEW_WIDTH / 16 * 9")
|
||
|
|
||
|
# Calculate position
|
||
|
BORDER=23
|
||
|
X=$(calc "$MON_WIDTH - $NEW_WIDTH - $BORDER")
|
||
|
Y=$(calc "$MON_HEIGHT - $NEW_HEIGHT - $BORDER")
|
||
|
|
||
|
# Set window
|
||
|
CURRENT=$(xdotool getwindowfocus)
|
||
|
xdotool windowsize "$CURRENT" "$NEW_WIDTH" "$NEW_HEIGHT"
|
||
|
xdotool windowmove "$CURRENT" "$X" "$Y"
|