Make sure you have a .wezterm.lua
Config file ready in your home directory and it's correctly loaded by WezTerm. Refer to the Configuration Docs.
The Config
The configuration as a constant opacity
variable which is just there for consistency. An initial background opacity will be set when the configuration is read the first time.
We then listen to the window-focus-changed
event to - get any previous and - set a new config override.
This is inteded to run on macOS, apparently you can build a similar effect on Windows.
1local wezterm = require 'wezterm' 2 3local config = wezterm.config_builder() 4local opacity = 0.9 5 6wezterm.on('window-focus-changed', function(window, pane) 7 local overrides = window:get_config_overrides() or {} 8 9 if window:is_focused() then 10 overrides.window_background_opacity = 1 11 else 12 overrides.window_background_opacity = opacity 13 end 14 15 window:set_config_overrides(overrides) 16end) 17 18config.window_background_opacity = opacity 19config.macos_window_background_blur = 30 20 21return config
Sources
https://wezfurlong.org/wezterm/config/lua/window-events/window-resized.html
https://wezfurlong.org/wezterm/config/lua/config/macos_window_background_blur.html
Read more...
No, you can't use your $6,299.00 Camera as a Webcam. That will be $5
$30 billion company want's you to pay $5 for using your own camera as a webcam
Fix Laravel Job Queue not processing with MaxAttemptsExceededException
Fix issues with the Laravel Job Queue not processing jobs due to max attempts exceeding.