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 /skype | |
download | utils-chroot-5eaf060a9cb25f809df96bd124173891f8c4b954.tar.gz utils-chroot-5eaf060a9cb25f809df96bd124173891f8c4b954.tar.bz2 |
Initial import
Diffstat (limited to 'skype')
-rwxr-xr-x | skype | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -0,0 +1,14 @@ +#!/bin/bash +# +# Chroot wrapper +# + +# 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 squeeze -p skype" & +sleep 1 +xhost - |