Compare commits

...

2 Commits

Author SHA1 Message Date
bfcbca14ce Adjust size 2025-10-13 00:18:43 -07:00
b5f733f750 Toggle WezTerm 2025-10-13 00:10:15 -07:00
3 changed files with 18 additions and 2 deletions

View File

@ -311,6 +311,8 @@ alias ls='ls -CG'
alias .='pwd' alias .='pwd'
alias d='chezmoi'
for i in $(seq 2 8); do for i in $(seq 2 8); do
dots=$(printf '.%.0s' $(seq 1 $i)) dots=$(printf '.%.0s' $(seq 1 $i))
paths=$(printf '../%.0s' $(seq 1 $((i - 1)))) paths=$(printf '../%.0s' $(seq 1 $((i - 1))))

View File

@ -1,3 +1,17 @@
-- Auto-hide WezTerm when it loses focus
weztermAppWatcher = hs.application.watcher.new(function(appName, eventType, appObject)
if eventType == hs.application.watcher.deactivated and appName == "WezTerm" then
print("WezTerm lost focus, hiding...")
appObject:hide()
end
end)
weztermAppWatcher:start()
print("WezTerm auto-hide enabled")
-- Function to simulate key presses -- Function to simulate key presses
local function pressFn(mods, key) local function pressFn(mods, key)
if key == nil then if key == nil then

View File

@ -18,8 +18,8 @@ config.font = wezterm.font({
family = 'SF Mono', family = 'SF Mono',
weight = 'Regular' weight = 'Regular'
}) })
config.line_height = 1.3 config.line_height = 1.2
config.font_size = 13.2 config.font_size = 14
config.cell_width = 1 config.cell_width = 1
-- Cursor -- Cursor