My scripts for startup, dmenu, and the command line
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

9 行
120 B

  1. #!/bin/sh
  2. if [ "$TERM" = "tmux-256color" ]; then
  3. tmux -u split-window vim "$@"
  4. else
  5. st -t "Editor" -e vim "$@" &
  6. fi