My configuration files for Debian/Ubuntu applications
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 
 

15 рядки
393 B

  1. #!/usr/bin/env bash
  2. # Script intended for use via the command line.
  3. #
  4. # `.tmux.conf` needs to be set for TPM. Tmux has to be installed on the system,
  5. # but does not need to be started in order to run this script.
  6. CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
  7. SCRIPTS_DIR="$CURRENT_DIR/../scripts"
  8. main() {
  9. "$SCRIPTS_DIR/install_plugins.sh" # has correct exit code
  10. }
  11. main