From cc6e5ea071bb9426ae2ead806b73fa3589c47377 Mon Sep 17 00:00:00 2001 From: Ryan Yin Date: Mon, 17 Jul 2023 11:38:38 +0800 Subject: [PATCH] feat: start kitty as fullscreen on macOS --- home/base/desktop/kitty.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home/base/desktop/kitty.nix b/home/base/desktop/kitty.nix index 1f68f7e3..3ba00692 100644 --- a/home/base/desktop/kitty.nix +++ b/home/base/desktop/kitty.nix @@ -17,5 +17,8 @@ # macOS specific settings, force kitty to use nushell as default shell shell = "/run/current-system/sw/bin/nu"; } else {}); + + # macOS specific settings + darwinLaunchOptions = [ "--start-as=fullscreen" ]; }; }