22 lines
668 B
Bash
22 lines
668 B
Bash
#!/bin/sh
|
|
# Assign ownership of the console to the invoking user
|
|
# $OpenBSD: GiveConsole.in,v 1.3 2023/11/10 18:49:21 matthieu Exp $
|
|
#
|
|
# By convention, both xconsole and xterm -C check that the
|
|
# console is owned by the invoking user and is readable before attaching
|
|
# the console output. This way a random user can invoke xterm -C without
|
|
# causing serious grief.
|
|
#
|
|
prefix="@prefix@"
|
|
exec_prefix="@exec_prefix@"
|
|
|
|
GROUP=`id -g $USER`
|
|
|
|
chown $USER:$GROUP /dev/console
|
|
if [ -c /dev/dri/card0 ]; then
|
|
chown $USER:$GROUP /dev/dri/card0
|
|
fi
|
|
if [ -c /dev/dri/renderD128 ]; then
|
|
chown $USER:$GROUP /dev/dri/renderD128
|
|
fi
|
|
@bindir@/sessreg -a -l $DISPLAY -u none $USER
|