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