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