From 9518290544952f7d87bee02532e3d59d5c0eca33 Mon Sep 17 00:00:00 2001 From: Tobias Kessels Date: Wed, 1 Oct 2025 12:25:09 +0200 Subject: [PATCH] Moved and renamed screensettings scripts --- .../3_screen_setup.sh} | 0 .../screensettings/notebook_extended.sh | 23 +++++++++++++++++++ .../single_fullhd.sh} | 0 3 files changed, 23 insertions(+) rename systemscripts/{reset_screens.sh => screensettings/3_screen_setup.sh} (100%) create mode 100755 systemscripts/screensettings/notebook_extended.sh rename systemscripts/{fullhd => screensettings/single_fullhd.sh} (100%) diff --git a/systemscripts/reset_screens.sh b/systemscripts/screensettings/3_screen_setup.sh similarity index 100% rename from systemscripts/reset_screens.sh rename to systemscripts/screensettings/3_screen_setup.sh diff --git a/systemscripts/screensettings/notebook_extended.sh b/systemscripts/screensettings/notebook_extended.sh new file mode 100755 index 0000000..7b72242 --- /dev/null +++ b/systemscripts/screensettings/notebook_extended.sh @@ -0,0 +1,23 @@ +#!/bin/bash +# Display configuration script +# Run this anytime you want to restore your display settings + +echo "Configuring displays..." + +# Primary display (laptop screen) +xrandr --output eDP-1 --mode 3840x2160 --pos 0x0 --primary + +# External display at native resolution with proper positioning +if xrandr | grep -q "DP-1-3 connected"; then + echo "Configuring external display DP-1-3..." + xrandr --output DP-1-3 --mode 2240x1400 --pos 3840x760 --scale 1x1 + echo "External display configured:" + echo " - Native resolution: 2240x1400" + echo " - Position: bottom-aligned with laptop screen" + echo " - No scaling artifacts" + echo " - Mouse can move seamlessly between screens" +else + echo "External display DP-1-3 not connected" +fi + +echo "Display configuration complete!" \ No newline at end of file diff --git a/systemscripts/fullhd b/systemscripts/screensettings/single_fullhd.sh similarity index 100% rename from systemscripts/fullhd rename to systemscripts/screensettings/single_fullhd.sh