From 7b62aeb67cbb5eb66152377f7950549af3fc1d48 Mon Sep 17 00:00:00 2001 From: Tobias Witek Date: Tue, 1 Nov 2016 08:31:59 +0100 Subject: [PATCH] [output/i3] Restrict workspace rotation to current output --- bumblebee/outputs/i3.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bumblebee/outputs/i3.py b/bumblebee/outputs/i3.py index 9632e0b..6940579 100644 --- a/bumblebee/outputs/i3.py +++ b/bumblebee/outputs/i3.py @@ -31,8 +31,8 @@ class i3bar(bumblebee.output.Output): super(i3bar, self).__init__(theme) self._data = [] - self.add_callback("i3-msg workspace prev", 4) - self.add_callback("i3-msg workspace next", 5) + self.add_callback("i3-msg workspace prev_on_output", 4) + self.add_callback("i3-msg workspace next_on_output", 5) self._thread = threading.Thread(target=read_input, args=(self,)) self._thread.start()