summaryrefslogtreecommitdiffstats
path: root/packages/Keyguard/scripts/copy_profile_icons.sh
diff options
context:
space:
mode:
Diffstat (limited to 'packages/Keyguard/scripts/copy_profile_icons.sh')
-rwxr-xr-xpackages/Keyguard/scripts/copy_profile_icons.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/Keyguard/scripts/copy_profile_icons.sh b/packages/Keyguard/scripts/copy_profile_icons.sh
new file mode 100755
index 0000000..5416101
--- /dev/null
+++ b/packages/Keyguard/scripts/copy_profile_icons.sh
@@ -0,0 +1,14 @@
+#!/bin/bash
+
+for user in `adb $* shell ls /data/system/users | grep -v xml`
+do
+ user=${user/$'\r'/}
+ adb shell mkdir /data/user/${user}/users
+ for photo in `adb $* shell ls /data/system/users | grep -v xml`
+ do
+ photo=${photo/$'\r'/}
+ adb shell mkdir /data/user/${user}/users/${photo}
+ adb pull /data/system/users/${photo}/photo.png
+ adb push photo.png /data/user/${user}/users/${photo}
+ done
+done