Hacker News new | ask | show | jobs
by feiss 1200 days ago
I've been using it for +1 year now, love it.

I have only one complain: I tried everything to configure it to open in a specific position in the screen (top left corner), and for FSM's sake, It's impossible! (Windows 10)

1 comments

it's possible now with the nightly version (might need negative X on some machines)

  local wezterm = require("wezterm")
  wezterm.on('gui-startup', function(cmd) -- set startup Window position
    local tab, pane, window = wezterm.mux.spawn_window(cmd or
      {position={x=0,y=0},width=100,height=20}
    )
  end)
Oh, I will try, thanks so much!