My scripts for startup, dmenu, and the command line
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ewrap 202 B

4 years ago
4 years ago
4 years ago
12345678910
  1. #!/bin/sh
  2. if ! { [ "$TERM" = "tmux-256color" ] && [ -n "$TMUX" ]; } then
  3. # Remove option --tab for new window
  4. app-vim $*
  5. else
  6. # tmux session running
  7. vim $* #tmux -u split-window "vim \"$*\""
  8. fi