My scripts for startup, dmenu, and the command line
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- #!/bin/sh
- #This is a wrapper script for editing files from nnn. It checks if it nnn is running in tmux then calls the appropriate editor.
-
- if ! { [ "$TERM" = "tmux-256color" ] && [ -n "$TMUX" ]; } then
- # Remove option --tab for new window
- st -e vim "$@"
- else
- # tmux session running
- # tmux -u split-window vim "$@"
- # wait $!
- vim "$@"
- fi
|