mirror of
https://github.com/Matir/skel.git
synced 2026-05-26 05:29:09 -07:00
11 lines
186 B
Bash
Executable File
11 lines
186 B
Bash
Executable File
#!/bin/bash
|
|
|
|
CHROME=`which google-chrome`
|
|
|
|
if [ `id -u` != "0" ] ; then
|
|
exec $CHROME "$@"
|
|
fi
|
|
|
|
CMD="${CHROME} --user-data-dir=${HOME}/.chrome-data-dir \"$@\""
|
|
su -c "${CMD}" chromeuser
|