script: add update-gdm-monitors

This commit is contained in:
lelgenio 2020-04-06 23:48:09 -03:00
parent a8e9550335
commit e10d27ca07
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
#!/bin/sh
# updates gdm to reflect the curent users monitors configurations
main(){
[ "$USER" = "root" ] && echo "Don't run as root" && exit 1
set -e
sudo cp ~/.config/monitors.xml /var/lib/gdm/.config/
sudo chown gdm:gdm /var/lib/gdm/.config/monitors.xml
}
if [ "$1" = "-h" ] || [ "$1" = "--help" ]
then
echo "Usage:"
echo " \$ $0"
else
main
fi