mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-11 17:16:38 +01:00
10 lines
197 B
Bash
10 lines
197 B
Bash
|
|
#!/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
|