improve session opening behavior
This commit is contained in:
parent
5d861c6390
commit
9d36592dac
@ -12,7 +12,7 @@ tell application "System Events"
|
|||||||
click
|
click
|
||||||
if exists menu item "Connecter" of menu 1 then
|
if exists menu item "Connecter" of menu 1 then
|
||||||
click menu item "Connecter" of menu 1
|
click menu item "Connecter" of menu 1
|
||||||
return "Connecting..."
|
return "Connecting to Bluetooth device..."
|
||||||
else
|
else
|
||||||
key code 53 -- Close main BT drop down if Connect wasn't present
|
key code 53 -- Close main BT drop down if Connect wasn't present
|
||||||
return "Connect menu was not found, are you already connected?"
|
return "Connect menu was not found, are you already connected?"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
docker_app=$(find /Applications/ \
|
docker_app=$(find /Applications/ \
|
||||||
-name "Docker.app" -maxdepth 1 -mindepth 1 -type d)
|
-name "Docker.app" -maxdepth 1 -mindepth 1 -type d)
|
||||||
if [ -z "$docker_app" ]; then
|
if [ -z "$docker_app" ]; then
|
||||||
echo "Installation of Docker for Mac"
|
echo 'Install Docker Desktop for Mac OS X'
|
||||||
curl -o ~/Downloads/Docker.dmg -sL https://download.docker.com/mac/stable/Docker.dmg
|
curl -o ~/Downloads/Docker.dmg -sL https://download.docker.com/mac/stable/Docker.dmg
|
||||||
hdiutil verify ~/Downloads/Docker.dmg
|
hdiutil verify ~/Downloads/Docker.dmg
|
||||||
hdiutil attach ~/Downloads/Docker.dmg -nobrowse
|
hdiutil attach ~/Downloads/Docker.dmg -nobrowse
|
||||||
|
@ -96,9 +96,11 @@ eval "$(fasd --init auto)"
|
|||||||
|
|
||||||
#cm apply
|
#cm apply
|
||||||
|
|
||||||
|
# check if we have new jira issues
|
||||||
|
istherenewissues
|
||||||
|
|
||||||
case "$(uname -s)" in
|
case "$(uname -s)" in
|
||||||
Darwin)
|
Darwin)
|
||||||
echo 'Install Docker Desktop for Mac OS X'
|
|
||||||
~/.scripts/install_docker_for_mac.sh
|
~/.scripts/install_docker_for_mac.sh
|
||||||
unlink "$HOME/Library/Application Support/Code/User/settings.json"
|
unlink "$HOME/Library/Application Support/Code/User/settings.json"
|
||||||
ln -s "$HOME/.config/Code/User/settings.json" "$HOME/Library/Application Support/Code/User/settings.json"
|
ln -s "$HOME/.config/Code/User/settings.json" "$HOME/Library/Application Support/Code/User/settings.json"
|
||||||
@ -106,9 +108,6 @@ case "$(uname -s)" in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# check if we have new jira issues
|
|
||||||
istherenewissues
|
|
||||||
|
|
||||||
#THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!! https://github.com/sdkman/sdkman-cli/issues/613
|
#THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!! https://github.com/sdkman/sdkman-cli/issues/613
|
||||||
export SDKMAN_DIR="$HOME/.sdkman"
|
export SDKMAN_DIR="$HOME/.sdkman"
|
||||||
[[ -s "$SDKMAN_DIR/bin/sdkman-init.sh" ]] && source "$SDKMAN_DIR/bin/sdkman-init.sh"
|
[[ -s "$SDKMAN_DIR/bin/sdkman-init.sh" ]] && source "$SDKMAN_DIR/bin/sdkman-init.sh"
|
||||||
|
Loading…
Reference in New Issue
Block a user