AnyEvent-I3X-Workspace-OnDemand
view release on metacpan or search on metacpan
lib/AnyEvent/I3X/Workspace/OnDemand.pm view on Meta::CPAN
}
);
$self->subscribe(
binding => sub {
my $event = shift;
$self->log_event('binding', $event);
my $payload = $event->{change};
if (my $sub = $binding{$payload}) {
$sub->($self, $i3, $event);
}
}
);
}
method _is_in_group ($name, $group) {
my $ws = $workspace{$name};
return 0 unless $ws;
return 0 unless exists $ws->{group};
return 1 if exists $ws->{group}{$group};
return 1 if exists $ws->{group}{all};
}
method _get_layout ($name, $group) {
my $ws = $workspace{$name};
return unless $ws;
return $ws->{layout} unless exists $ws->{group};
return unless $self->_is_in_group($name, $group);
return $ws->{group}{$group}{layout} // $ws->{group}{all}{layout}
// $ws->{layout};
}
method switch_to_group ($group) {
my $cur = $current_workspace;
return if $current_group eq $group && $cur ne '__EMPTY__';
$i3->get_workspaces->cb(
sub {
my $y = shift;
my $x = $y->recv;
my @current_workspaces = @$x;
if ($cur eq '__EMPTY__') {
($cur) = map { $_->{name} } grep { $_->{focused} } @current_workspaces;
$current_workspace = $cur;
return if $current_group eq $group;
}
my $qr = qr/^$group\:.+/;
my @available = grep { /^$qr/ } map { $_->{name} } @$x;
foreach my $name (keys %workspace) {
my $ws = $workspace{$name};
next unless exists $ws->{group};
if (any { $name eq $_->{name}} @current_workspaces) {
if ($self->_is_in_group($name, $current_group)) {
$self->workspace($name, "rename workspace to $current_group:$name");
}
}
if (any { "$group:$name" eq $_ } @available) {
$self->workspace("$group:$name", "rename workspace to $name");
}
}
$current_group = $group;
$self->set_group_on_root_window($group);
$self->workspace($cur);
}
);
}
method log ($msg) {
return unless $debug;
warn $msg, $/;
return;
}
method debug ($d = undef) {
return $debug unless defined $d;
$debug = $d;
}
my @any = qw(any *);
method on_workspace ($name, $type, $sub) {
if (ref $sub ne 'CODE') {
croak("Please supply a code ref!");
}
state @actions = qw(init focus empty urgent reload rename restored move);
if (any { $_ eq $type } @any) {
$workspace{$name}{$_} = $sub for @actions;
}
elsif (any { $_ eq $type } @actions) {
$workspace{$name}{$type} = $sub;
}
else {
croak("Unsupported action '$type', please use any of the following:"
. join(", ", @actions));
}
}
method on_shutdown ($payload, $sub) {
if (ref $sub ne 'CODE') {
croak("Please supply a code ref!");
}
state @payloads = qw(exit restart);
if (any { $_ eq $payload } @any) {
$shutdown{$_} = $sub for @payloads;
}
elsif (any { $_ eq $payload } @payloads) {
$shutdown{$payload} = $sub;
}
else {
croak("Unsupported action '$payload', please use any of the following:"
. join(", ", @payloads));
}
}
method on_tick ($payload, $sub) {
if (ref $sub ne 'CODE') {
croak("Please supply a code ref!");
}
$tick{$payload} = $sub;
}
method add_swallow ($match, $cmd, $on = undef) {
push(
@swallows,
{
match => $match,
cmd => $cmd,
defined $on ? (on => $on) : (),
}
);
}
method subscribe ($action, $sub) {
my $answer = $i3->subscribe({ $action => $sub });
$answer->send;
return;
}
method get_i3() {
return $i3;
}
method command (@args) {
$i3->command(join(" ", @args));
lib/AnyEvent/I3X/Workspace/OnDemand.pm view on Meta::CPAN
my $i3 = AnyEvent::I3X::Workspace::OnDemand->new(
debug => 0,
layout_path => "$ENV{HOME}/.config/i3",
workspaces => {
foo => {
layout => 'foo.json',
},
bar => {
layout => 'bar.json',
groups => {
foo => undef,
# Override the layout for group bar
bar => { layout => 'foo.json' },
}
},
baz => {
layout => 'baz.json',
groups => {
all => undef,
}
}
},
groups => [
qw(foo bar baz)
],
swallows => [
{
cmd => 'kitty',
match => {
class => '^kitty$',
}
},
{
# Start firefox on group bar
cmd => 'firefox',
on => {
group => 'bar',
}
match => {
window_role => '^browser$',
}
},
{
cmd => 'google-chrome',
on => {
group => 'foo',
}
match => {
window_role => '^browser$',
}
}
],
);
=head1 DESCRIPTION
Workspace switcher for i3.
This module listens to tick events which are named C<< group:$name >> where the
name corresponds to the workspace groups you have defined. When you send a tick
event the current workspaces get renamed to C<< $former_group:$workspace_name
>> and leaves new workspaces for the ones you have defined.
In your C<< .config/i3/config >> you can set something like this to switch
groups:
bindsym $mod+w mode "Activities"
mode "Activities" {
bindsym 0 exec i3-msg -t send_tick group:foo; mode default
bindsym 9 exec i3-msg -t send_tick group:bar; mode default
bindsym 8 exec i3-msg -t send_tick group:baz; mode default
bindsym Return mode "default"
bindsym Escape mode "default"
}
For the user guide please refer to
L<AnyEvent::I3X::Workspace::OnDemand::UserGuide>.
=head1 METHODS
=head2 $self->subscribe
See L<AnyEvent::I3/subscribe>
=head2 $self->get_i3
Get the L<AnyEvent::I3> instance
=head2 $self->command(@args)
Execute a command, the command can be in scalar or list context.
See also L<AnyEvent::I3/command>.
=head2 $self->debug(1)
Enable or disable debug
=head2 $self->log($msg)
Print warns when debug is enabled
=head2 $self->on_tick($payload, $sub)
Subscribe to a tick event with C<< $payload >> and perform the action. Your sub
needs to support the following prototype:
sub foo($self, $i3, $event) {
print "Yay processed foo tick";
}
$self->on_tick('foo', \&foo);
=head2 $self->on_workspace($name, $type, $sub)
Subscribe to a workspace event for workspace C<< $name >> of C<< $type >> with
C<< $sub >>.
C<< $type >> can be any of the following events from i3 plus C<any> or C<*>
$i3->on_workspace(
( run in 2.338 seconds using v1.01-cache-2.11-cpan-d8267643d1d )