tmux-continuum/scripts/handle_tmux_automatic_start
Dimitar Nizamov b4e32f8a75 fix alacritty script formatting 2024-01-20 17:09:22 +01:00
..
README.md Fixed scripts/handle_tmux_automatic_start/README.md symlink 2020-12-05 15:05:38 -03:00
osx_alacritty_start_tmux.sh fix alacritty script formatting 2024-01-20 17:09:22 +01:00
osx_disable.sh Enable easy 'tmux auto start' configuration 2015-02-17 17:13:48 +01:00
osx_enable.sh add warp to strategy script 2024-01-19 20:42:33 +01:00
osx_iterm_start_tmux.sh Fix syntax errors in auto-start osx iterm script 2022-07-19 04:28:40 -04:00
osx_kitty_start_tmux.sh refactor fullscreen delays 2024-01-20 17:01:23 +01:00
osx_terminal_start_tmux.sh Bugfixes for Terminal.app and iTerm tmux start scripts 2015-02-19 13:43:41 +01:00
osx_warp_start_tmux.sh refactor fullscreen delays 2024-01-20 17:01:23 +01:00
systemd_disable.sh Add Sven Vowe @nuclearglow as a systemd maintainer 2022-06-03 10:57:42 +02:00
systemd_enable.sh Update systemd_enable.sh 2022-06-10 12:17:00 -04:00

README.md

Automatic Tmux start

Tmux is automatically started after the computer/server is turned on.

OS X

To enable this feature:

  • put set -g @continuum-boot 'on' in .tmux.conf
  • reload tmux config with this shell command: $ tmux source-file ~/.tmux.conf

Next time the computer is started:

  • Terminal.app window will open and resize to maximum size
  • tmux command will be executed in the terminal window
  • if "auto restore" feature is enabled, tmux will start restoring previous env

Config options:

  • set -g @continuum-boot-options 'fullscreen' - terminal window will go fullscreen
  • set -g @continuum-boot-options 'iterm' - start iTerm instead of Terminal.app
  • set -g @continuum-boot-options 'iterm,fullscreen' - start iTerm in fullscreen
  • set -g @continuum-boot-options 'kitty' - start kitty instead of Terminal.app
  • set -g @continuum-boot-options 'kitty,fullscreen' - start kitty in fullscreen
  • set -g @continuum-boot-options 'alacritty' - start alacritty instead of Terminal.app
  • set -g @continuum-boot-options 'alacritty,fullscreen' - start alacritty in fullscreen
  • set -g @continuum-boot-options 'warp' - start warp instead of Terminal.app
  • set -g @continuum-boot-options 'warp,fullscreen' - start warp in fullscreen

Note: The first time you reboot your machine and activate this feature you may be prompted about a script requiring access to a system program (i.e. - System Events). If this happens tmux will not start automatically and you will need to go to System Preferences -> Security & Privacy -> Accessability and add the script to the list of apps that are allowed to control your computer.

Linux

Help with this would be greatly appreciated. Please get in touch.

Systemd

this will only start the tmux server, it will not start any terminal emulator

To enable automatic start with systemd:

  • Put set -g @continuum-boot 'on' in .tmux.conf
  • reload tmux config with this shell command: $ tmux source-file ~/.tmux.conf
  • see systemd for more details about how this is implemented