aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils/lumina-xconfig/ScreenSettings.h
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/core-utils/lumina-xconfig/ScreenSettings.h')
-rw-r--r--src-qt5/core-utils/lumina-xconfig/ScreenSettings.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src-qt5/core-utils/lumina-xconfig/ScreenSettings.h b/src-qt5/core-utils/lumina-xconfig/ScreenSettings.h
index ab480a97..4f042cb8 100644
--- a/src-qt5/core-utils/lumina-xconfig/ScreenSettings.h
+++ b/src-qt5/core-utils/lumina-xconfig/ScreenSettings.h
@@ -38,7 +38,9 @@ class ScreenInfo{
class RRSettings{
public:
//Reset current screen config to match previously-saved settings
- static void ApplyPrevious(); //generally performed on startup of the desktop
+ static void ApplyPrevious();
+ //Setup all the connected monitors as a single mirror
+ static void MirrorAll();
//Read the current screen config from xrandr
static QList<ScreenInfo> CurrentScreens(); //reads xrandr information
bgstack15