summaryrefslogtreecommitdiffstats
path: root/files/portable-directories-flash-liveusb-rw
diff options
context:
space:
mode:
Diffstat (limited to 'files/portable-directories-flash-liveusb-rw')
-rwxr-xr-xfiles/portable-directories-flash-liveusb-rw22
1 files changed, 0 insertions, 22 deletions
diff --git a/files/portable-directories-flash-liveusb-rw b/files/portable-directories-flash-liveusb-rw
deleted file mode 100755
index dbdda92..0000000
--- a/files/portable-directories-flash-liveusb-rw
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-
-function create_mozilla_profile() {
- USER_DIR=$1
- PORTABLE_DIR=$2
- [ -d $USER_DIR ] && return
- mkdir -p $USER_DIR
- ln -sf "$PORTABLE_DIR/Data/profile" $USER_DIR
- cat > "$USER_DIR/profiles.ini" <<EOF
-[General]
-StartWithLastProfile=1
-
-[Profile0]
-Name=default
-IsRelative=1
-Path=profile
-EOF
-}
-
-PORTABLE_ROOT=/live/media/.apps
-create_mozilla_profile "$HOME/.mozilla/firefox" "$PORTABLE_ROOT/FirefoxPortable"
-create_mozilla_profile "$HOME/.thunderbird" "$PORTABLE_ROOT/ThunderbirdPortable"