Add sessions

This commit is contained in:
Jeff Lance 2019-10-05 21:14:21 +02:00
parent 16653060ee
commit 01db97eb7c
2 changed files with 27 additions and 1 deletions

View File

@ -54,7 +54,7 @@ update_check_interval 24
#: available update. The default is to check every 24 hrs, set to zero
#: to disable.
startup_session none
startup_session sessions.conf
#: Path to a session file to use for all kitty instances. Can be
#: overridden by using the kitty --session command line option for

26
kitty/sessions.conf Normal file
View File

@ -0,0 +1,26 @@
# vim:fileencoding=utf-8:ft=conf:foldmethod=marker
#: Sessions {{{
layout tall
#: Set the window layout for the current tab
cd ~
#: Set the working directory for windows in the current tab
launch zsh
#: Create a window and run the specified command in it
launch vim
#: Create a window with some environment variables set and run vim in it
title Chat with x
launch irssi --profile x
#: Set the title for the next window
#: }}}