diff options
Diffstat (limited to '.config/polybar')
-rwxr-xr-x | .config/polybar/focus | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.config/polybar/focus b/.config/polybar/focus index 0cccea4..8eeb92a 100755 --- a/.config/polybar/focus +++ b/.config/polybar/focus | |||
@@ -19,9 +19,9 @@ use strict; | |||
19 | use warnings; | 19 | use warnings; |
20 | use IO::CaptureOutput qw/capture_exec/; | 20 | use IO::CaptureOutput qw/capture_exec/; |
21 | 21 | ||
22 | my ($stdout, $stderr, $success, $exit_code) = capture_exec("task active"); | 22 | my ($stdout, $stderr, $success, $exit_code) = capture_exec("task custom_focus"); |
23 | 23 | ||
24 | #print("out: $stdout\nerr: $stderr\nexit_code: $exit_code\n"); | 24 | # print("out: $stdout\nerr: $stderr\nexit_code: $exit_code\n"); |
25 | 25 | ||
26 | if ($stderr =~ /No matches\./) { | 26 | if ($stderr =~ /No matches\./) { |
27 | system 'echo "What a beautiful day"'; | 27 | system 'echo "What a beautiful day"'; |
@@ -37,6 +37,7 @@ my $task = $lines[2]; | |||
37 | $task =~ s/^\s+|\s+$//g; | 37 | $task =~ s/^\s+|\s+$//g; |
38 | $task =~ s/\s+/ /g; | 38 | $task =~ s/\s+/ /g; |
39 | 39 | ||
40 | if ($task =~ m/.*?next (.*)$/) { | 40 | # if ($task =~ m/.*?next (.*)$/) { |
41 | print "$1"; | 41 | # print "$1"; |
42 | } | 42 | # } |
43 | print $task; | ||