mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 08:14:58 +01:00
9 lines
197 B
Bash
Executable file
9 lines
197 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Author: Aaron Voisine <aaron@voisine.org>
|
|
|
|
if [ "$DISPLAY"x == "x" ]; then
|
|
echo :0 > /tmp/$UID/TemporaryItems/display
|
|
else
|
|
echo $DISPLAY > /tmp/$UID/TemporaryItems/display
|
|
fi
|