diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-09-18 16:37:31 -0300 |
---|---|---|
committer | Silvio Rhatto <user@example.org> | 2014-09-18 16:37:31 -0300 |
commit | 5eaf060a9cb25f809df96bd124173891f8c4b954 (patch) | |
tree | b305a1a93983662dd427647277fb2e53a6359082 /chroot-firefox | |
download | utils-chroot-5eaf060a9cb25f809df96bd124173891f8c4b954.tar.gz utils-chroot-5eaf060a9cb25f809df96bd124173891f8c4b954.tar.bz2 |
Initial import
Diffstat (limited to 'chroot-firefox')
-rwxr-xr-x | chroot-firefox | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/chroot-firefox b/chroot-firefox new file mode 100755 index 0000000..5f78555 --- /dev/null +++ b/chroot-firefox @@ -0,0 +1,20 @@ +#!/bin/bash +# +# Chroot wrapper +# + +if [ -z "$1" ]; then + chroot="wheezy" +else + chroot="$1" +fi + +# Load configuration +if [ -e "$HOME/.config/scripts/chroot" ]; then + source $HOME/.config/scripts/chroot +fi + +xhost local:$CHROOT_USER +sudo su $CHROOT_USER -c "schroot -d /home/$CHROOT_USER -c $chroot -p iceweasel" & +sleep 1 +xhost - |