5 lines
104 B
Bash
5 lines
104 B
Bash
#!/bin/sh
|
|
|
|
if [ -z "$DISPLAY" ] && [ "$(tty)" = "/dev/tty1" ]; then
|
|
exec river &> /tmp/river.log
|
|
fi
|