Restructure repo layout and document conventions
Move legacy systemscripts into scripts/display and scripts/setup. Rehome stray top-level tools into their domain folders. Archive narrow experiments and outdated codegrab leftovers. Remove empty legacy directories and stale root files. Expand macOS metadata ignores and update the README with the refined repository structure.
This commit is contained in:
4
scripts/display/3_screen_setup.sh
Executable file
4
scripts/display/3_screen_setup.sh
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
xrandr --output DVI-I-1 --mode 1920x1080 --rotate left --pos 0x0
|
||||
xrandr --output DP-1 --primary --mode 2560x1440 --pos 1080x350
|
||||
xrandr --output DP-2 --mode 2560x1440 --pos 3640x350
|
||||
23
scripts/display/notebook_extended.sh
Executable file
23
scripts/display/notebook_extended.sh
Executable file
@@ -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!"
|
||||
2
scripts/display/single_fullhd.sh
Executable file
2
scripts/display/single_fullhd.sh
Executable file
@@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
xrandr --output eDP-1 --mode 1920x1080
|
||||
Reference in New Issue
Block a user