Compare commits
2 Commits
42f931ba3c
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| bfcbca14ce | |||
| b5f733f750 |
@ -311,6 +311,8 @@ alias ls='ls -CG'
|
||||
|
||||
alias .='pwd'
|
||||
|
||||
alias d='chezmoi'
|
||||
|
||||
for i in $(seq 2 8); do
|
||||
dots=$(printf '.%.0s' $(seq 1 $i))
|
||||
paths=$(printf '../%.0s' $(seq 1 $((i - 1))))
|
||||
|
||||
@ -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
|
||||
local function pressFn(mods, key)
|
||||
if key == nil then
|
||||
|
||||
@ -18,8 +18,8 @@ config.font = wezterm.font({
|
||||
family = 'SF Mono',
|
||||
weight = 'Regular'
|
||||
})
|
||||
config.line_height = 1.3
|
||||
config.font_size = 13.2
|
||||
config.line_height = 1.2
|
||||
config.font_size = 14
|
||||
config.cell_width = 1
|
||||
|
||||
-- Cursor
|
||||
|
||||
Reference in New Issue
Block a user