sudo pacman -S gnome gdm
sudo systemctl enable gdm
reboot
Set keyboard layout (for GDM)
Based on:
Assumptions
/dev/nvme0n1
is the system's disk, and /dev/sda
is USB drive.package main | |
import ( | |
"fmt" | |
"regexp" | |
"strings" | |
) | |
var camel = regexp.MustCompile("(^[^A-Z0-9]*|[A-Z0-9]*)([A-Z0-9][^A-Z]+|$)") |