-
-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How would I got about spawning the example for each monitor #48
Comments
by making it a function and calling it as many times as you want const bar = (monitor) => ({
name: `bar${monitor}`, // make sure its still unique
monitor,
anchor: ['top', 'left', 'right'],
exclusive: true,
child: { /* stuff */ }
});
var config = { windows: [bar(0), bar(1), bar(2)] }; |
Thanks |
Maybe am missing something obvious. Sorry if that is the case. |
my bad, forgot to add monitor to the attributes |
ok, got it to work. Thanks |
I will leave this here in case anyone needs it.
|
How would I got about spawning the example bar for each monitor? Cannot figure how I would do that.
I know how to spawn more of the bars. Right now it launches on the monitor that I am on when launching ags. Do I need to like add some padding or something?
The text was updated successfully, but these errors were encountered: