My configuration files for Debian/Ubuntu applications
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

20 wiersze
485 B

  1. #!/usr/bin/env bash
  2. # Tmux key-binding script.
  3. # Scripts intended to be used via the command line are in `bin/` directory.
  4. CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
  5. SCRIPTS_DIR="$CURRENT_DIR/../scripts"
  6. HELPERS_DIR="$SCRIPTS_DIR/helpers"
  7. source "$HELPERS_DIR/tmux_echo_functions.sh"
  8. source "$HELPERS_DIR/tmux_utils.sh"
  9. main() {
  10. reload_tmux_environment
  11. "$SCRIPTS_DIR/clean_plugins.sh" --tmux-echo >/dev/null 2>&1
  12. reload_tmux_environment
  13. end_message
  14. }
  15. main