mirror of
https://github.com/tmux-plugins/tmux-continuum.git
synced 2024-11-16 15:38:46 +00:00
Merge pull request #85 from chrisminton/alacritty-start-option
feat: add alacritty to the list of auto start terminals
This commit is contained in:
commit
5a75f0716a
@ -24,6 +24,9 @@ Config options:
|
|||||||
of `Terminal.app`
|
of `Terminal.app`
|
||||||
- `set -g @continuum-boot-options 'kitty,fullscreen'` - start `kitty`
|
- `set -g @continuum-boot-options 'kitty,fullscreen'` - start `kitty`
|
||||||
in fullscreen
|
in fullscreen
|
||||||
|
- `set -g @continuum-boot-options 'alacritty'` - start [alacritty](https://github.com/alacritty/alacritty) instead of `Terminal.app`
|
||||||
|
- `set -g @continuum-boot-options 'alacritty,fullscreen'` - start `alacritty`
|
||||||
|
in fullscreen
|
||||||
|
|
||||||
Note: The first time you reboot your machine and activate this feature you may be prompted about a script requiring
|
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
|
access to a system program (i.e. - System Events). If this happens tmux will not start automatically and you will need
|
||||||
|
70
scripts/handle_tmux_automatic_start/osx_alacritty_start_tmux.sh
Executable file
70
scripts/handle_tmux_automatic_start/osx_alacritty_start_tmux.sh
Executable file
@ -0,0 +1,70 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# for "true full screen" call the script with "fullscreen" as the first argument
|
||||||
|
TRUE_FULL_SCREEN="$1"
|
||||||
|
|
||||||
|
start_terminal_and_run_tmux() {
|
||||||
|
osascript <<-EOF
|
||||||
|
tell application "alacritty"
|
||||||
|
activate
|
||||||
|
delay 0.5
|
||||||
|
tell application "System Events" to tell process "alacritty"
|
||||||
|
set frontmost to true
|
||||||
|
keystroke "tmux"
|
||||||
|
key code 36
|
||||||
|
end tell
|
||||||
|
end tell
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
|
resize_window_to_full_screen() {
|
||||||
|
osascript <<-EOF
|
||||||
|
tell application "alacritty"
|
||||||
|
activate
|
||||||
|
tell application "System Events"
|
||||||
|
if (every window of process "alacritty") is {} then
|
||||||
|
keystroke "n" using command down
|
||||||
|
end if
|
||||||
|
|
||||||
|
tell application "Finder"
|
||||||
|
set desktopSize to bounds of window of desktop
|
||||||
|
end tell
|
||||||
|
|
||||||
|
set position of front window of process "alacritty" to {0, 0}
|
||||||
|
set size of front window of process "alacritty" to {item 3 of desktopSize, item 4 of desktopSize}
|
||||||
|
end tell
|
||||||
|
end tell
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
|
resize_to_true_full_screen() {
|
||||||
|
osascript <<-EOF
|
||||||
|
tell application "Alacritty"
|
||||||
|
activate
|
||||||
|
delay 0.5
|
||||||
|
tell application "System Events" to tell process "Alacritty"
|
||||||
|
if front window exists then
|
||||||
|
tell front window
|
||||||
|
if value of attribute "AXFullScreen" then
|
||||||
|
set value of attribute "AXFullScreen" to false
|
||||||
|
else
|
||||||
|
set value of attribute "AXFullScreen" to true
|
||||||
|
end if
|
||||||
|
end tell
|
||||||
|
end if
|
||||||
|
end tell
|
||||||
|
end tell
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
|
main() {
|
||||||
|
start_terminal_and_run_tmux
|
||||||
|
if [ "$TRUE_FULL_SCREEN" == "fullscreen" ]; then
|
||||||
|
resize_to_true_full_screen
|
||||||
|
else
|
||||||
|
resize_window_to_full_screen
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
main
|
||||||
|
|
||||||
|
resize_to_
|
@ -41,6 +41,8 @@ get_strategy() {
|
|||||||
echo "iterm"
|
echo "iterm"
|
||||||
elif [[ "$options" =~ "kitty" ]]; then
|
elif [[ "$options" =~ "kitty" ]]; then
|
||||||
echo "kitty"
|
echo "kitty"
|
||||||
|
elif [[ "$options" =~ "alacritty" ]]; then
|
||||||
|
echo "alacritty"
|
||||||
else
|
else
|
||||||
# Terminal.app is the default console app
|
# Terminal.app is the default console app
|
||||||
echo "terminal"
|
echo "terminal"
|
||||||
|
Loading…
Reference in New Issue
Block a user