My scripts for startup, dmenu, and the command line
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

textopener 120 B

12345678
  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