12345678910111213141516171819202122232425 |
- #!/bin/sh
- # Set a custom session root path. Default is `$HOME`.
- # Must be called before `initialize_session`.
- # session_root "/home/oleg/src/git.savannah.gnu.org/git/guix"
- # Create session with specified name if it does not already exist. If no
- # argument is given, session name will be based on layout file name.
- if initialize_session "guix"; then
- # Create a new window inline within session layout definition.
- #new_window "misc"
- # Load a defined window layout.
- load_window "guix"
- # load_window "guix-machines"
- # Select the default active window on session creation.
- #select_window 1
- fi
- # Finalize session creation and switch/attach to it.
- finalize_and_go_to_session
|