スクリプトラッパーでtmuxを起動する方法

スクリプトラッパーでtmuxを起動する方法

私は持っています

# dotfiles/bin/withtmux.sh
#!/bin/sh

exec tmux

欲しい

# i3config
# start terminal without tmux, plain zsh, work
bindsym $mod+e exec $terminal

# and with tmux, not working
bindsym $mod+Shift+e exec $terminal -e ~/.config/dotfiles/bin/withtmux.sh

ベストアンサー1

スクリプトファイル(script.sh)から

<terminal> -e tmux

例: ターミネーター -e tmux

i3 構成ファイルから bindsym $mod+Shift+e exec 'bash path_to_script/script.sh'

おすすめ記事