mirror of https://github.com/mitchell/dotfiles.git
9 lines
201 B
Plaintext
9 lines
201 B
Plaintext
|
#!/usr/bin/env fish
|
||
|
if command -q prime-run
|
||
|
set -lx __NV_PRIME_RENDER_OFFLOAD 1
|
||
|
set -lx __VK_LAYER_NV_optimus NVIDIA_only
|
||
|
/usr/bin/wezterm-gui $argv
|
||
|
else
|
||
|
/usr/bin/wezterm-gui $argv
|
||
|
end
|