Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion wrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ while getopts "r:w:e:abcdfhmnpuv" opt; do
# Bind the .Xauthority file so that the authorization data is available.
if [ -n "${XAUTHORITY:-}" ]; then
# Bind a custom path Xauthority file to the standard path in the sandbox
bwrap_opts+=(--ro-bind "${HOME}/${XAUTHORITY}" "$HOME/.Xauthority")
bwrap_opts+=(--ro-bind "${XAUTHORITY}" "$HOME/.Xauthority")
elif [ -f "$HOME/.Xauthority" ]; then
# Bind the standard path Xauthority file to the sandbox
bwrap_opts+=(--ro-bind "$HOME/.Xauthority" "$HOME/.Xauthority")
Expand Down