Ventto/lux

Fails to work when run as root on a Debian-based system

Closed this issue · 1 comments

I fixed this by removing the quotes from around ${SUDO_USER} on line 103. Maybe more should be done.

  •    if ! id -nG "${SUDO_USER}" | grep video > /dev/null ; then
    
  •    if ! id -nG ${SUDO_USER} | grep video > /dev/null ; then
    

Effectively, thanks for contribution.