16 lines
202 B
Go
16 lines
202 B
Go
//go:build linux && !wayland
|
|
|
|
package main
|
|
|
|
/*
|
|
#cgo LDFLAGS: -lX11
|
|
#include "xresize.h"
|
|
*/
|
|
import (
|
|
"C"
|
|
)
|
|
|
|
func SendResizeToPID(pid, w, h int) {
|
|
C.send_resize_to_pid(C.int(pid), C.int(w), C.int(h))
|
|
}
|