how do I run Conky on primary AND 2nd monitors #2184
-
how do I run two separate conky instances so it's on each monitor? using own_window_type = 'normal' puts it on 2nd display (external monitor), and using own_window_type = 'desktop' puts it on my primary display (laptop monitor) noticed that using 'desktop', and not 'normal', setting: here's my current .conkyrc file:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This isn't supported by conky - it displays only a single window on a single screen by design because it would be redundant to draw a separate window for each screen with identical information. Assuming you're using Xinerama (and not Wayland), you can draw the same window twice by copying the configuration file, changing In the other discussion you created, you mentioned changing |
Beta Was this translation helpful? Give feedback.
This isn't supported by conky - it displays only a single window on a single screen by design because it would be redundant to draw a separate window for each screen with identical information.
Assuming you're using Xinerama (and not Wayland), you can draw the same window twice by copying the configuration file, changing
xinerama_head
in the second file and running two separate conky instances that use different configuration files.In the other discussion you created, you mentioned changing
window_type
worked for you on Wayland (not sure why) - so you'd change that across two files instead ofxinerama_head
, and run two conky instances to display the same window twice on two monitors. You…