summarylogtreecommitdiffstats
path: root/zenity.sh
diff options
context:
space:
mode:
authorStar Brilliant2015-08-26 11:21:47 +0800
committerStar Brilliant2015-08-26 11:22:31 +0800
commit1657ee451f1f21fcb9d1141b7db26bde8b319642 (patch)
tree87f4a8819f77b27816784b1c4962789097eeec30 /zenity.sh
parenta9b71c22efbee90ecffe30afe5fe561aeec52c26 (diff)
downloadaur-1657ee451f1f21fcb9d1141b7db26bde8b319642.tar.gz
Add zenity wrapper to fix file opening issue
Diffstat (limited to 'zenity.sh')
-rw-r--r--zenity.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/zenity.sh b/zenity.sh
new file mode 100644
index 000000000000..1b821a1048f5
--- /dev/null
+++ b/zenity.sh
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+# ISSE reads stderr alongside with stdout,
+# causing the file choose dialog to fail.
+# Let's block stderr.
+exec /usr/bin/zenity "$@" 2>/dev/null