From a3c857360b62d31799b28ae127a1ba3efd22c2c1 Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Mon, 10 Aug 2020 09:43:57 -0400 Subject: [PATCH] mawp --- alacritty/alacritty.yml | 13 +++++++------ hammerspoon/init.lua | 6 +++++- wezterm/wezterm.lua | 2 +- 3 files changed, 13 insertions(+), 8 deletions(-) diff --git a/alacritty/alacritty.yml b/alacritty/alacritty.yml index 319a1dd..5a323dd 100644 --- a/alacritty/alacritty.yml +++ b/alacritty/alacritty.yml @@ -32,6 +32,8 @@ window: # Spread additional padding evenly around the terminal content. dynamic_padding: false + dynamic_title: true + # Window decorations # # Values for `decorations`: @@ -83,12 +85,12 @@ font: # Italic font face italic: - family: Iosevka Custom + family: Dank Mono # The `style` can be specified to pick a specific face. - style: Medium Italic + # style: Medium Italic # Point size - size: 12.0 + size: 16.0 # Offset is the extra space around each character. `offset.y` can be thought of # as modifying the line spacing, and `offset.x` as modifying the letter spacing. @@ -200,7 +202,7 @@ colors: # - Linear # # Specifying a `duration` of `0` will disable the visual bell. -visual_bell: +bell: animation: EaseOutExpo duration: 0 @@ -261,7 +263,6 @@ selection: # clipboard. save_to_clipboard: false -dynamic_title: true cursor: # Cursor style @@ -284,7 +285,7 @@ live_config_reload: true # You can set `shell.program` to the path of your favorite shell, e.g. `/bin/fish`. # Entries in `shell.args` are passed unmodified as arguments to the shell. shell: - program: /usr/bin/zsh + program: /usr/local/bin/zsh args: - --login # - "sleep 1 && tmux new -A -s DefaultSession" diff --git a/hammerspoon/init.lua b/hammerspoon/init.lua index fc52837..58daf19 100644 --- a/hammerspoon/init.lua +++ b/hammerspoon/init.lua @@ -13,5 +13,9 @@ hs.hotkey.bind({"cmd", "alt", "ctrl"}, "SPACE", function () end) hs.hotkey.bind({"ctrl"}, "t", function () - hs.application.launchOrFocus("iTerm") + hs.application.launchOrFocus("Alacritty") end) + +hs.hotkey.bind({"cmd", "alt"}, ",", function () + hs.application.launchOrFocus("System Preferences") +end) \ No newline at end of file diff --git a/wezterm/wezterm.lua b/wezterm/wezterm.lua index bcf067f..b70ace1 100644 --- a/wezterm/wezterm.lua +++ b/wezterm/wezterm.lua @@ -1,7 +1,7 @@ local wezterm = require 'wezterm'; function font_with_fallback(name, params) - local names = {name, "Iosevka Custom", "Noto Color Emoji", "JetBrains Mono", "Monaco"} + local names = {name, "Iosevka 3.3.0 Custom", "Noto Color Emoji", "JetBrains Mono", "Monaco"} return wezterm.font_with_fallback(names,params) end