[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RP] [PATCH] Update expose.pl to Work with 1.4.9
From: |
Fahri Cihan Demirci |
Subject: |
[RP] [PATCH] Update expose.pl to Work with 1.4.9 |
Date: |
Mon, 13 Nov 2017 23:17:40 +0000 |
Since after xrandr support was added, sdump returns current screen name,
screen number, x-coordinate, y-coordinate, width, height and a boolean
flag designating the active screen.
This patch changes sdump parsing method in the expose.pl script to
accommodate those changes.
---
contrib/expose.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contrib/expose.pl b/contrib/expose.pl
index 0a7127e..4db326b 100644
--- a/contrib/expose.pl
+++ b/contrib/expose.pl
@@ -41,7 +41,7 @@ my $frames_old = &rp('fdump'); chomp $frames_old;
my @r; # Sub-optimal way of grabbing screen x,y,w,h.
#fixed to use sdump
-($_, $r[0], $r[1], $r[2], $r[3]) = split(/ /,&rp ('sdump'));
+($_, $_, $r[0], $r[1], $r[2], $r[3], $_) = split(/ /,&rp ('sdump'));
my $ret = join(", ", &rp_split(address@hidden, \&split, $n, address@hidden));
--
2.14.2
- [RP] [PATCH] Update expose.pl to Work with 1.4.9,
Fahri Cihan Demirci <=