chore: make fish files executable

This commit is contained in:
2025-10-23 23:44:05 +03:00
parent 0bd72c6d51
commit 3f2d1b85ed
18 changed files with 299 additions and 320 deletions

View File

@@ -2,8 +2,8 @@
# Dependencies: tmux
# Usage: open-tmux
function open-tmux --wraps='tmux attach-session -t main || tmux new-session -s main' --description 'open tmux session'
# Check if not in an SSH session and not already in a tmux session
if test -z "$SSH_TTY"; and not set -q TMUX
command tmux attach-session -t main || command tmux new-session -s main
end
# Check if not in an SSH session and not already in a tmux session
if test -z "$SSH_TTY"; and not set -q TMUX
command tmux attach-session -t main || command tmux new-session -s main
end
end