This commit is contained in:
Chris 2016-12-27 01:39:12 +01:00
parent 2c929cd7f7
commit 01992d7697
1 changed files with 2 additions and 0 deletions

View File

@ -119,11 +119,13 @@ class Window
public function windowMinimize() public function windowMinimize()
{ {
exec("xdotool windowminimize {$this->windowId}"); exec("xdotool windowminimize {$this->windowId}");
return $this;
} }
public function windowRestore() public function windowRestore()
{ {
exec("xdotool windowmap {$this->windowId}"); exec("xdotool windowmap {$this->windowId}");
return $this;
} }
public function dump() public function dump()