mirror of
https://github.com/notwa/rc
synced 2024-11-05 03:29:02 -08:00
16 lines
318 B
Text
16 lines
318 B
Text
|
#!/usr/bin/env zsh
|
||
|
|
||
|
screeny() {
|
||
|
local user="${1:?needs arg for user name}"
|
||
|
shift
|
||
|
home="/home/$user"
|
||
|
pushd "$home" >/dev/null
|
||
|
local name="${1:?needs arg for screen name}"
|
||
|
shift
|
||
|
~/sh/unscreen "$name"
|
||
|
screen -S "$name" -dm sudo -Hu "$user" "$@"
|
||
|
popd "$home" >/dev/null
|
||
|
}
|
||
|
|
||
|
screeny "$@"
|