diff --git a/pyprland/plugins/shift_monitors.py b/pyprland/plugins/shift_monitors.py index caa179d..f047da3 100644 --- a/pyprland/plugins/shift_monitors.py +++ b/pyprland/plugins/shift_monitors.py @@ -8,6 +8,7 @@ class Extension(Plugin): self.monitors = [mon["name"] for mon in await hyprctlJSON("monitors")] async def run_shift_monitors(self, arg: str): + """Swaps monitors' workspaces in the given direction""" direction: int = int(arg) if direction > 0: mon_list = self.monitors[:-1]