Fork of github.com/shu-go/vvin
Go to file
Evan 2cbbdcdae1 Remove unnecessary files 2023-10-14 21:48:17 -04:00
LICENSE add: LICENSE 2019-11-10 12:15:44 +09:00
README.md add: section for wait command in README 2019-11-18 14:55:57 +09:00
cmd_alpha.go refactor: rename to private 2019-11-18 18:42:38 +09:00
cmd_minmax.go refactor: rename to private 2019-11-18 18:42:38 +09:00
cmd_resize.go refactor: rename to private 2019-11-18 18:42:38 +09:00
cmd_topmost.go refactor: rename to private 2019-11-18 18:42:38 +09:00
cmd_wait.go fix: intervals -> interval 2019-11-18 17:33:27 +09:00
go.mod Upgrade deps, Go version 2023-10-14 21:38:49 -04:00
go.sum Upgrade deps, Go version 2023-10-14 21:38:49 -04:00
vvin.go Make into reuseable package 2023-10-14 21:34:16 -04:00

README.md

keep waking Windows up

Go Report Card MIT License

Usage

Sub commands:
  minimize, min     minimize/restore
  maximize, max     maximize/restore
  resize, move, mv  resize/move
  alpha             set alpha 0%(transparent) - 100%(opaque)
  topmost           set always on top/restore
  wait              wait for a window is opened/closed ([--close] {Title})

Options:
  -t, --target WINDOW_TITLE  default to current window

minimize/restore

> ./vvin -t Notepad min

> ./vvin -t Notepad min --restore
> ./vvin -t Notepad min -r

resize

> ./vvin -t notepad resize -x 0 -y 0 -w 60% -h 100%

alpha

> ./vvin -t notepad alpha 75%

always on top

> ./vvin -t notepad topmost

> ./vvin -t notepad topmost --restore
> ./vvin -t notepad topmost -r

wait

wait for a window to appear

> ./vvin wait notepad

wait closed

> ./vvin wait notepad --closed