-
I have a main monitor in front of me and a side monitor at 90 degrees. Only the main screen has the bar displayed. Main screen has spaces 1-3 and side screen has spaces 4-6. Is there a way to make an icon highlight the space that has focus on the side monitor? For example I have 6 icons on the bar on monitor one. If I switch to space 4 which is on the side monitor, I want only the 4th icon to highlight. Currently only 1-3 change color. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Yes, try to set |
Beta Was this translation helpful? Give feedback.
-
Thanks for the super quick response! I gave the option a go, here's the config:
The above displays the 6 icons on the bar but no highlighting happens on any of them. If I add It's a small issue and not a big deal, if you have any ideas let me know when you have time. |
Beta Was this translation helpful? Give feedback.
-
I wasn't going to bother you with this as I'm the only one that has asked but about a month ago I managed to brute force a patch that made the space items highlight correctly (IMHO! :) I just updated it for the recent commit: https://gist.github.com/PhrantiK/2d88344ec3abd55bd5715dc1cc7d52e7 I'm a monkey with a typewriter so not sure if it's useful but sharing it anyway. The change to this function: Line 213 in fb59232 Came about because for some inexplicable reason the ids & indexes on my monitors swapped randomly when waking from sleep. From this: [{
"id":1,
"uuid":"3AB1D648-6014-498C-92C5-3477DFB6E94C",
"index":1,
"label":"",
"frame":{
"x":0.0000,
"y":0.0000,
"w":3008.0000,
"h":1692.0000
},
"spaces":[1, 2, 3],
"has-focus":true
},{
"id":2,
"uuid":"D7CE0AD5-B301-405A-81BB-8B960CA16D36",
"index":2,
"label":"",
"frame":{
"x":-1692.0000,
"y":-539.0000,
"w":1692.0000,
"h":3008.0000
},
"spaces":[4, 5, 6],
"has-focus":false
}] to this: [{
"id":2,
"uuid":"3AB1D648-6014-498C-92C5-3477DFB6E94C",
"index":1,
"label":"",
"frame":{
"x":0.0000,
"y":0.0000,
"w":3008.0000,
"h":1692.0000
},
"spaces":[1, 2, 3],
"has-focus":true
},{
"id":1,
"uuid":"D7CE0AD5-B301-405A-81BB-8B960CA16D36",
"index":2,
"label":"",
"frame":{
"x":-1692.0000,
"y":-539.0000,
"w":1692.0000,
"h":3008.0000
},
"spaces":[4, 5, 6],
"has-focus":false
}] I don't know the greater context for getting the active display ID the original way but nabbing it with Never had an issue before applying the patch so it's likely (definitely) related to me missing something. Thanks again for the rad software dude! |
Beta Was this translation helpful? Give feedback.
I wasn't going to bother you with this as I'm the only one that has asked but about a month ago I managed to brute force a patch that made the space items highlight correctly (IMHO! :)
I just updated it for the recent commit:
https://gist.github.com/PhrantiK/2d88344ec3abd55bd5715dc1cc7d52e7
I'm a monkey with a typewriter so not sure if it's useful but sharing it anyway.
The change to this function:
SketchyBar/src/display.c
Line 213 in fb59232
Came about because for some inexplicable reason the ids & indexes on my monitors swapped randomly when waking from sleep. From this: