Multiple monitors with Aerospace + SketchyBar #624
Replies: 3 comments
-
Up! 🚀 Actually facing the same conundrum at the moment as well. |
Beta Was this translation helpful? Give feedback.
-
I'm encountering the same issue and currently relying on a workaround in my SketchyBar config, which is far from ideal and prone to breaking. Here's the function I use in my setup using SbarLua: -- Map monitor IDs between AeroSpace and SketchyBar
local function sketchyBarMonitorId(monitor_id, total_monitors)
return (total_monitors > 1 and monitor_id == 1) and 2 or (monitor_id == 2 and 1 or monitor_id)
end A good workaournd would be to have a SketchyBar command that directly outputs a monitor ID-to-name mapping. Similar to what AeroSpace provides:
|
Beta Was this translation helpful? Give feedback.
-
It's not super ideal, but I was hacking at this and came up with a few workarounds here: #607 |
Beta Was this translation helpful? Give feedback.
-
Hello everyone!
I used to use yabai + sketchybar, but I'm migrating to aerospace + sketchybar.
In a multi-monitor setup, I'm having a hard time getting the desired behavior. I'd like each monitor to only display the workspaces associated with it. I've tried a few approaches, like multiple bars, items associated to specific displays, but I haven't managed to get anything to look good.
Currently what I have is that all the bars appear on all monitors and when I change the workspace in one display, the change (i.e., the highlighted workspace in the bar) happens on all monitors (leading to wrong highlighting on displays other than the one where the change happened).
The important sections of my config files are:
Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions