mirror of
https://github.com/polybar/polybar.git
synced 2024-11-11 13:50:56 -05:00
xrandr: Allow not to purge cloned monitors
This commit is contained in:
parent
b5e7078d93
commit
cc36350849
2 changed files with 7 additions and 2 deletions
|
@ -51,7 +51,7 @@ namespace randr_util {
|
|||
|
||||
monitor_t make_monitor(xcb_randr_output_t randr, string name, unsigned short int w, unsigned short int h, short int x, short int y,
|
||||
bool primary);
|
||||
vector<monitor_t> get_monitors(connection& conn, xcb_window_t root, bool connected_only = false);
|
||||
vector<monitor_t> get_monitors(connection& conn, xcb_window_t root, bool connected_only = false, bool purge_clones = true);
|
||||
monitor_t match_monitor(vector<monitor_t> monitors, const string& name, bool exact_match);
|
||||
|
||||
void get_backlight_range(connection& conn, const monitor_t& mon, backlight_values& dst);
|
||||
|
|
|
@ -80,7 +80,7 @@ namespace randr_util {
|
|||
/**
|
||||
* Create a list of all available randr outputs
|
||||
*/
|
||||
vector<monitor_t> get_monitors(connection& conn, xcb_window_t root, bool connected_only) {
|
||||
vector<monitor_t> get_monitors(connection& conn, xcb_window_t root, bool connected_only, bool purge_clones) {
|
||||
vector<monitor_t> monitors;
|
||||
|
||||
#if WITH_XRANDR_MONITORS
|
||||
|
@ -148,6 +148,11 @@ namespace randr_util {
|
|||
}
|
||||
|
||||
// Test if there are any clones in the set
|
||||
|
||||
if (!purge_clones) {
|
||||
continue;
|
||||
}
|
||||
|
||||
for (auto& monitor : monitors) {
|
||||
if ((*m) == monitor || monitor->w == 0) {
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue