tests: add cmd() function for typing less to get i3 to run a command

This commit is contained in:
Michael Stapelberg 2010-11-29 11:21:33 +01:00
parent a0cd3c2bab
commit a61480db99
1 changed files with 5 additions and 1 deletions

View File

@ -10,7 +10,7 @@ use List::Util qw(first);
use v5.10;
use Exporter ();
our @EXPORT = qw(get_workspace_names get_unused_workspace get_ws_content get_ws get_focused open_empty_con open_standard_window);
our @EXPORT = qw(get_workspace_names get_unused_workspace get_ws_content get_ws get_focused open_empty_con open_standard_window cmd);
BEGIN {
my $window_count = 0;
@ -119,4 +119,8 @@ sub get_focused {
return $lf;
}
sub cmd {
i3("/tmp/nestedcons")->command(@_)->recv
}
1