We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ceb17d8 commit 30a24abCopy full SHA for 30a24ab
StandaloneChromeDebug/clear_x_locks.sh
@@ -0,0 +1,10 @@
1
+#!/bin/bash
2
+
3
+file="/tmp/.X??-lock"
4
5
+echo "Looking for lock file: $file"
6
+if [ -f $file ] ; then
7
+ echo "Lock file: $file FOUND"
8
+ rm $file
9
+ echo "Lock file: $file REMOVED"
10
+fi
StandaloneChromeDebug/entry_point.sh
@@ -1,4 +1,6 @@
#!/bin/bash
+source "clear_x_locks.sh"
export GEOMETRY="$SCREEN_WIDTH""x""$SCREEN_HEIGHT""x""$SCREEN_DEPTH"
function shutdown {
0 commit comments