This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo Adding microphone to Pulseaudio | |
grep -qxF 'load-module module-alsa-source device=hw:0,99' /etc/pulse/default.pa || echo 'load-module module-alsa-source device=hw:0,99' >> /etc/pulse/default.pa | |
echo Adding headphone to Pulseaudio | |
grep -qxF 'load-module module-alsa-sink device=hw:0,1' /etc/pulse/default.pa || echo 'load-module module-alsa-sink device=hw:0,1' >> /etc/pulse/default.pa | |
echo Adding headset microphone to Pulseaudio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. connect to network | |
2. open terminal | |
3. change password | |
1. $: passwd | |
4. update packages | |
1. $: sudo apt update | |
5. install chromium | |
1. $: sudo apt install chromium unclutter | |
6. Reboot | |
7. set chromium to launch at start up with custom url and flags |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -x | |
_VER='1.0.1-beta' | |
echo "Script version veyron-install: $_VER" | |
export TGTDEV=mmcblk0 | |
sgdisk -Z /dev/$TGTDEV | |
sync | |
partprobe /dev/$TGTDEV | |
partprobe /dev/$TGTDEV | |
sgdisk -C -e -G /dev/$TGTDEV |