Bug fixes: mbsync path, ghostty new process

This commit is contained in:
Random936 2024-12-29 19:17:48 -08:00
parent cfcdf228bc
commit 94fba6481a
2 changed files with 13 additions and 4 deletions

View File

@ -29,7 +29,16 @@ outer.right = 5
[mode.main.binding] [mode.main.binding]
# See: https://nikitabobko.github.io/AeroSpace/goodness#open-a-new-window-with-applescript # See: https://nikitabobko.github.io/AeroSpace/goodness#open-a-new-window-with-applescript
cmd-enter = 'exec-and-forget open -n -a "Ghostty"' cmd-enter = '''exec-and-forget osascript << EOF
tell application "Ghostty"
if it is running then
activate
tell application "System Events" to keystroke "n" using {command down}
else
activate
end if
end tell
EOF'''
cmd-shift-e = 'exec-and-forget /etc/profiles/per-user/*/bin/emacs' cmd-shift-e = 'exec-and-forget /etc/profiles/per-user/*/bin/emacs'
cmd-shift-f = 'exec-and-forget open -n -a "Google Chrome"' cmd-shift-f = 'exec-and-forget open -n -a "Google Chrome"'
cmd-shift-d = 'exec-and-forget open -n -a "Discord"' cmd-shift-d = 'exec-and-forget open -n -a "Discord"'

View File

@ -1,9 +1,9 @@
IMAPAccount gmail IMAPAccount gmail
Host imap.gmail.com Host imap.gmail.com
User jadenprovost@gmail.com User jadenprovost@gmail.com
PassCmd "bw --session $(cat $HOME/.bw_session) --nointeraction get password 'Emacs Gmail'" PassCmd "PATH=/opt/homebrew/bin:$PATH bw --session $(cat $HOME/.bw_session) --nointeraction get password 'Emacs Gmail'"
SSLType IMAPS TLSType IMAPS
SSLVersions TLSv1.2 TLSVersions +1.2
AuthMechs PLAIN AuthMechs PLAIN
SystemCertificates no SystemCertificates no
CertificateFile /etc/ssl/certs/ca-certificates.crt CertificateFile /etc/ssl/certs/ca-certificates.crt