kitty: Add default window size

Since kitty would automatically assume a fullscreen or half screen size
as the default, it's much easier to simply specify the size all floating
windows should start out as.

Since kitty allows specifying the size in cells instead of pixels, it
is easy to achieve the same "actual" terminal size regardless of which
DPI is being used.
This commit is contained in:
Donovan Glover 2018-11-18 02:21:41 -05:00
parent e6d88d57ad
commit b3519b2cd2
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -26,6 +26,11 @@ dynamic_background_opacity yes
# Allow remote control so the above command can be executed
allow_remote_control yes
# Use a consistent window size for floating windows
remember_window_size no
initial_window_width 100c
initial_window_height 30c
# Don't limit frames per second to the monitor's refresh rate
sync_to_monitor no