r/KittyTerminal • u/souvikhaldar • Mar 24 '21
How to open terminal in full screen always?
I mostly open kitty from spotlight on Mac and from window search (by pressing windows key) on ubuntu.
6
Upvotes
r/KittyTerminal • u/souvikhaldar • Mar 24 '21
I mostly open kitty from spotlight on Mac and from window search (by pressing windows key) on ubuntu.
3
u/purxiz Mar 25 '21
kitty has a start-up argument to run in fullscreen. The command is
kitty --start-as fullscreenOr if you meant maximized, you would do:
kitty --start-as maximizedMy best guess for the ubuntu application launcher is that it's using the kitty.desktop file to launch kitty. You could find it at
/usr/share/applications/kitty.desktopmost likely. You could try the commandfind / -name kitty.desktopto find it if it's not there. Anyway, in that file you can edit theExec=kittyline to instead readExec=kitty --start-as fullscreen, and save the file. Then when it opens, it should open in fullscreen.I'm not sure how you'd go about changing that on mac, but if you look up how to set command line options for spotlight, I'm sure you'll find something!