diff options
author | David Morgan <djm_uk@protonmail.com> | 2024-09-03 16:00:09 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2024-09-03 16:00:09 +0100 |
commit | 95ed21bec068982547dcedc4efc64d4e1fb56d69 (patch) | |
tree | 303b8977862a060d4fd730ce1d0675415451e7c8 /nix-conf/home/otm.nix | |
parent | 33141c2f7adb53c9de83390b45470d6665848450 (diff) | |
download | dotfiles-95ed21bec068982547dcedc4efc64d4e1fb56d69.tar.gz |
Minor tweaks to recent reformatting
Diffstat (limited to 'nix-conf/home/otm.nix')
-rw-r--r-- | nix-conf/home/otm.nix | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/nix-conf/home/otm.nix b/nix-conf/home/otm.nix index 0876cbc..b9e3c44 100644 --- a/nix-conf/home/otm.nix +++ b/nix-conf/home/otm.nix @@ -128,11 +128,9 @@ in { home.shellAliases = { notify_success = '' - ( osascript -e 'display notification "The command finished" with title "Success"' && afplay /System/Library/Sounds/Ping.aiff && say done ) - ''; + ( osascript -e 'display notification "The command finished" with title "Success"' && afplay /System/Library/Sounds/Ping.aiff && say done )''; notify_failure = '' - ( osascript -e 'display notification "The command failed" with title "Failure"' && afplay /System/Library/Sounds/Sosumi.aiff && say failed ) - ''; + ( osascript -e 'display notification "The command failed" with title "Failure"' && afplay /System/Library/Sounds/Sosumi.aiff && say failed )''; notify = "notify_success || notify_failure"; auth = "auth2aws login -r aws_otm_dev_developers,aws_otm_prd_developers && osascript -e 'tell app \"iTerm\" to activate'"; |