mirror of
https://github.com/Stichting-MINIX-Research-Foundation/xsrc.git
synced 2025-09-26 05:18:44 -04:00
10 lines
325 B
Bash
10 lines
325 B
Bash
#!/bin/sh
|
|
# Assign ownership of the console to the invoking user
|
|
#
|
|
# 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.
|
|
#
|
|
chown $USER /dev/console
|