mirror of
https://github.com/amiwm/amiwm.git
synced 2026-03-23 17:19:14 +00:00
8 lines
296 B
Bash
Executable File
8 lines
296 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$3" = "0x00000000" ]; then
|
|
display -resize $(xwininfo -root | grep geometry | sed "s/-geometry //" | sed "s/+0+0//") -window root "$4" > /dev/null
|
|
else
|
|
display -resize $(xwininfo -root | grep geometry | sed "s/-geometry //" | sed "s/+0+0//") -window "$3" "$4" > /dev/null
|
|
fi
|