This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles-old/scripts/.local/bin/update-gdm-monitors

24 lines
384 B
Bash
Executable File

#!/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