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.
|
- #!/bin/sh
-
-
- if [ "$TERM" = "tmux-256color" ]; then
- tmux -u split-window vim "$@"
- else
- st -t "Editor" -e vim "$@" &
- fi
|