My configuration files for Debian/Ubuntu applications
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

15 行
391 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/clean_plugins.sh" # has correct exit code
  10. }
  11. main