14 lines
296 B
Bash
Executable File
14 lines
296 B
Bash
Executable File
#!/bin/bash
|
|
#function set-title() {
|
|
# if [[ -z "$ORIG" ]]; then
|
|
# ORIG=$PS1
|
|
# fi
|
|
# TITLE="\[\e]2;$*\a\]"
|
|
# PS1=${ORIG}${TITLE}
|
|
#}
|
|
#set-title "chrome terminal"
|
|
|
|
|
|
#gnome-terminal -x sh -c "export XDG_RUNTIME_DIR=/run/user/$UID; su - $1 -c chrome"
|
|
gnome-terminal -x sh -c "su - $1 -c chrome"
|