Display i3bar tray on all outputs/screens
Hi,
Is it possible to display the tray in i3bar on all screens? If not, what are the alternatives to get a tray on all screens?
Thank you.
Edit
Ok, I tried (as suggested by sycamorex)
.i3/config
bar {
output eDP1
status_command i3status
}
bar {
output HDMI1
status_command i3status
}
bar {
output DP2
status_command i3status
}
as well as (specifying tray_output for every bar)
.i3/config
bar {
output eDP1
status_command i3status
tray_output eDP1
}
bar {
output HDMI1
status_command i3status
tray_output HDMI1
}
bar {
output DP2
status_command i3status
tray_output DP2
}
But I get the tray only on the very right screen (HDMI1)
My xrandr output looks as follows:
$ xrandr | grep \ connected
eDP1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 309mm x 175mm
HDMI1 connected 1920x1200+3840+0 (normal left inverted right x axis y axis) 518mm x 324mm
DP2 connected primary 1920x1200+1920+0 (normal left inverted right x axis y axis) 518mm x 324mm
Any other idea to get the tray on all screens? I didn't find anything until now but it is very bad if I miss important IM notifications at work :D
Thank you