summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMike Crute <crutem@amazon.com>2019-05-19 21:17:57 +0200
committerMike Crute <crutem@amazon.com>2019-05-19 21:17:57 +0200
commit1f8139785a5f0c3aa8101e97562af1de42a65dd3 (patch)
treeaf77538ef41e30e606fa29f29f5e95ef4d14e668 /bin
parent46f03fe732b90204b87a1553dd6321fb87b07d10 (diff)
downloaddotfiles-1f8139785a5f0c3aa8101e97562af1de42a65dd3.tar.bz2
dotfiles-1f8139785a5f0c3aa8101e97562af1de42a65dd3.tar.xz
dotfiles-1f8139785a5f0c3aa8101e97562af1de42a65dd3.zip
Use stable wine dir
Diffstat (limited to 'bin')
-rwxr-xr-xbin/amazon-workspaces.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/bin/amazon-workspaces.sh b/bin/amazon-workspaces.sh
index 29e7dc6..507747e 100755
--- a/bin/amazon-workspaces.sh
+++ b/bin/amazon-workspaces.sh
@@ -1,7 +1,10 @@
1#!/bin/bash 1#!/bin/bash
2BASE_DIR="$HOME/.wine/" 2BASE_DIR="$HOME/.wine/"
3 3
4# Remove this beacuse it causes crashes 4# Sometimes wine is in /opt on Ubuntu
5PATH="/opt/wine-stable/bin:$PATH"
6
7# Remove this because it causes crashes
5find "$BASE_DIR" -name pcoip_vchan_remoteprintclient.dll -exec rm '{}' \; 8find "$BASE_DIR" -name pcoip_vchan_remoteprintclient.dll -exec rm '{}' \;
6 9
7exec wine "$(find "$BASE_DIR" -name workspaces.exe)" & 10exec wine64 "$(find "$BASE_DIR" -name workspaces.exe)" &