I know… I was thinking about zooming in later after I change the font size and show it changing, but I completely forgot to zoom in. Thanks for the feedback!
I’m not sure as well. Someone said some of its ligatures aren’t. If you open the Font Book app on MacOS and click on the “Fixed-width” collection you won’t see Dank Mono there.
I had the same dilemma, but after seeing a few videos about Ghostty it didn’t convince me to wait. But I’d gladly move over to Ghostty if it’s worth it 😁
I’ll give it a spin, but idk… I saw some of the videos about Ghostty and I wasn’t convinced that it’s “superior”. I’m open to be positively surprised by it though 😁
Wezterm is so nice so you can toggle transparency with a shortcut. config.keys = { { key = "o", mods = "CTRL|SHIFT", -- toggling opacity action = wezterm.action_callback(function(window, _) local overrides = window:get_config_overrides() or {} if overrides.window_background_opacity == 1.0 then overrides.window_background_opacity = 0.7 else overrides.window_background_opacity = 1.0 end window:set_config_overrides(overrides) end), }, }
Zooming in on your terminal would greatly help people watching on mobile
I know… I was thinking about zooming in later after I change the font size and show it changing, but I completely forgot to zoom in. Thanks for the feedback!
Just tried out Wezterm after switching from kitty and loved it, your timing was perfect. Thanks!!😁
WezTerm actually rules. I really like that I can configure it with Lua, as opposed to a key=value syntax. It allows me to do more.
I'm so impressed by the results in the video. So proud of you, baby. You are so talented! 💖
Loving the new style, beard & hair looks great!
I'm confused, if Dank Mono is a monospaced font, why is it not fixed width? I thought that was the definition of monospace.
I’m not sure as well. Someone said some of its ligatures aren’t. If you open the Font Book app on MacOS and click on the “Fixed-width” collection you won’t see Dank Mono there.
cool video like learning stuff like this a
Hey really nice config, I was looking for something like this, but I don't know if I configure my WezTerm now or if I wait for Ghostty
I had the same dilemma, but after seeing a few videos about Ghostty it didn’t convince me to wait. But I’d gladly move over to Ghostty if it’s worth it 😁
Can you share what mounts you are using for the Voyager?
I got the UGREEN magnetic phone stands from Amazon. They were around $30 CAD each.
@ thanks! Will buy if they go on sale for Boxing Day. Any cons with the setup?
uhh I've been loving to use Rio
Rio?
Ghostty launches in like 2 days, you’re gonna have to redo it all again!
I’ll give it a spin, but idk… I saw some of the videos about Ghostty and I wasn’t convinced that it’s “superior”. I’m open to be positively surprised by it though 😁
fr 2 days?
yeah they said 26-31st December in their Discord server
tomorrow ghostty is going to release
Do you think it’s going to be better than WezTerm?
@@nikolovlazar i am not sure but i love WezTerm , i am using it for last 3mon
Lesson Learnt: Updates are bad
bruh the beard, i thought i clicked on someone else's video
Yeah I cut it a few weeks ago 😅 I thought after 10 years or so it's time to cut it to an "easier-to-maintain" length.
Wezterm is so nice so you can toggle transparency with a shortcut.
config.keys = {
{
key = "o",
mods = "CTRL|SHIFT",
-- toggling opacity
action = wezterm.action_callback(function(window, _)
local overrides = window:get_config_overrides() or {}
if overrides.window_background_opacity == 1.0 then
overrides.window_background_opacity = 0.7
else
overrides.window_background_opacity = 1.0
end
window:set_config_overrides(overrides)
end),
},
}
Yeah that’s what I’m doing as well. Nifty!