update: wezterm: switch default on OS
This commit is contained in:
parent
f84c77c78d
commit
409a83feb7
1 changed files with 10 additions and 1 deletions
|
@ -1,5 +1,13 @@
|
||||||
local wezterm = require 'wezterm'
|
local wezterm = require 'wezterm'
|
||||||
|
|
||||||
|
-- default Program on each machine OS
|
||||||
|
local default_prog = { "bash" }
|
||||||
|
if wezterm.target_triple == 'x86_64-pc-windows-msvc' then
|
||||||
|
default_prog = { 'pwsh' }
|
||||||
|
elseif wezterm.target_triple == 'x86_64-unknown-linux-gnu' then
|
||||||
|
default_prog = { 'fish' }
|
||||||
|
end
|
||||||
|
|
||||||
-- from manual
|
-- from manual
|
||||||
local launch_menu = {}
|
local launch_menu = {}
|
||||||
if wezterm.target_triple == 'x86_64-pc-windows-msvc' then
|
if wezterm.target_triple == 'x86_64-pc-windows-msvc' then
|
||||||
|
@ -26,7 +34,7 @@ if wezterm.target_triple == 'x86_64-pc-windows-msvc' then
|
||||||
end
|
end
|
||||||
|
|
||||||
return {
|
return {
|
||||||
default_prog = { 'pwsh' },
|
default_prog = default_prog,
|
||||||
launch_menu = launch_menu,
|
launch_menu = launch_menu,
|
||||||
|
|
||||||
-- keys = {
|
-- keys = {
|
||||||
|
@ -44,3 +52,4 @@ return {
|
||||||
|
|
||||||
window_background_opacity = 0.8,
|
window_background_opacity = 0.8,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue