add user to video group

This commit is contained in:
SArpnt 2024-02-16 23:01:53 -05:00
parent 1b85039102
commit 5fa8fda85c
Signed by: SArpnt
SSH Key Fingerprint: SHA256:iDMeic8KkqqEsN4wODlgsk1d/oW1ojZ/cu/MEWyfLBw
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ end
echo "select a nickname"
echo "this can be any text and is usually used to display the name of the user in programs (🆒 GUY)"
set -l nickname (ask $user)
useradd -m -G games,realtime,wheel -c $nickname $user
useradd -m -G games,realtime,wheel,video -c $nickname $user
passwd $user # TODO this only takes in one character for some reason? fix it