mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-09-18 22:14:26 +00:00
- Added settings (references #88)
- Added dependency EasyBind to UI - Using property bindings instead of listeners in lots of places of the UI now
This commit is contained in:
-2
@@ -72,8 +72,6 @@ final class MacOsXWebDavMounter implements WebDavMounterStrategy {
|
||||
String activateAppleScript = String.format("tell application \"Finder\" to activate \"%s\"", volumeIdentifier);
|
||||
String ejectAppleScript = String.format("tell application \"Finder\" to if \"%s\" exists then eject \"%s\"", volumeIdentifier, volumeIdentifier);
|
||||
|
||||
System.err.println("open: " + openAppleScript + "\nactivate: " + activateAppleScript + "\neject: " + ejectAppleScript);
|
||||
|
||||
this.revealCommand = new ProcessBuilder("/usr/bin/osascript", "-e", openAppleScript, "-e", activateAppleScript);
|
||||
this.unmountCommand = new ProcessBuilder("/usr/bin/osascript", "-e", ejectAppleScript);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user