11 lines
387 B
Plaintext
11 lines
387 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
################################################################################
|
||
|
#
|
||
|
# gdm-update-display-settings
|
||
|
# Copies user's current display settings to GDM's config folder
|
||
|
#
|
||
|
################################################################################
|
||
|
|
||
|
sudo cp .config/monitors.xml /var/lib/gdm/.config/ && echo "Copied .config/monitors.xml to /var/lib/gdm/.config"
|