My configuration files for Debian/Ubuntu applications
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 4 година
1234567891011121314
  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