938d6977f1
Sound, headphone and speakers work trackpad works wifi works
25 lines
647 B
Bash
25 lines
647 B
Bash
#!/bin/sh -xe
|
|
|
|
#Setup locales
|
|
apt install -y locales
|
|
#Install xfce, wicd
|
|
apt install -y task-xfce-desktop wicd wicd-curses wicd-gtk xserver-xorg-input-synaptics acpi
|
|
#Copy in acpi, pulse audio, trackpad settings, funtion key settings
|
|
cp -rf /os_configs/default.pa /etc/pulse/default.pa
|
|
mkdir /etc/acpi
|
|
cp -rf /os_configs/sound.sh /etc/acpi/sound.sh
|
|
mkdir /etc/acpi/events
|
|
cp -rf /os_configs/headphone-acpi-toggle /etc/acpi/events/headphone-acpi-toggle
|
|
mkdir /etc/X11/xorg.conf.d/
|
|
cp -rf /os_configs/50-synaptics.conf /etc/X11/xorg.conf.d/
|
|
|
|
locale-gen
|
|
|
|
echo "Username: "
|
|
read username
|
|
adduser $username
|
|
usermod -a -G sudo,netdev $username
|
|
|
|
|
|
reboot
|