custom firefox profile added
This commit is contained in:
parent
04c0874114
commit
66dcbb52da
1 changed files with 9 additions and 6 deletions
15
larbs.sh
15
larbs.sh
|
@ -117,12 +117,11 @@ systembeepoff() { dialog --infobox "Getting rid of that retarded error beep soun
|
||||||
rmmod pcspkr
|
rmmod pcspkr
|
||||||
echo "blacklist pcspkr" > /etc/modprobe.d/nobeep.conf ;}
|
echo "blacklist pcspkr" > /etc/modprobe.d/nobeep.conf ;}
|
||||||
|
|
||||||
installdotfiles() { # Download $dotfilesrepo and install them in user's home.
|
putgitrepo() { # Downlods a gitrepo $1 and places the files in $2 only overwriting conflicts
|
||||||
# Downloading and installing dotfiles
|
|
||||||
dialog --infobox "Downloading and installing config files..." 4 60
|
dialog --infobox "Downloading and installing config files..." 4 60
|
||||||
rm -rf /tmp/dotfiles/
|
dir=$(mktemp -d)
|
||||||
sudo -u $name git clone --depth 1 $dotfilesrepo /tmp/dotfiles &>/dev/null &&
|
sudo -u $name git clone --depth 1 $1 $dir &>/dev/null &&
|
||||||
sudo -u $name cp -rT /tmp/dotfiles/ /home/$name
|
sudo -u $name cp -rT $dir $2
|
||||||
}
|
}
|
||||||
|
|
||||||
resetpulse() { dialog --infobox "Reseting Pulseaudio..." 4 50
|
resetpulse() { dialog --infobox "Reseting Pulseaudio..." 4 50
|
||||||
|
@ -186,7 +185,11 @@ manualinstall $aurhelper
|
||||||
# and all build dependencies are installed.
|
# and all build dependencies are installed.
|
||||||
installationloop
|
installationloop
|
||||||
|
|
||||||
installdotfiles
|
# Install the dotfiles in the user's home directory
|
||||||
|
putgitrepo "$dotfilesrepo" "/home/$name"
|
||||||
|
|
||||||
|
# Install the LARBS Firefox profile in ~/.mozilla/firefox/
|
||||||
|
putgitrepo "https://github.com/LukeSmithxyz/mozillarbs.git" "/home/$name/.mozilla/firefox"
|
||||||
|
|
||||||
# Pulseaudio, if/when initially installed, often needs a restart to work immediately.
|
# Pulseaudio, if/when initially installed, often needs a restart to work immediately.
|
||||||
[[ -f /usr/bin/pulseaudio ]] && resetpulse
|
[[ -f /usr/bin/pulseaudio ]] && resetpulse
|
||||||
|
|
Loading…
Reference in a new issue