├── requirements.txt ├── pluginrc.zsh ├── .github ├── ISSUE_TEMPLATE │ ├── other.md │ ├── bug_report.md │ └── feature_request.md └── FUNDING.yml ├── .gitignore ├── README.md └── LICENSE /requirements.txt: -------------------------------------------------------------------------------- 1 | xxh-xxh 2 | -------------------------------------------------------------------------------- /pluginrc.zsh: -------------------------------------------------------------------------------- 1 | CURR_DIR="$(cd "$(dirname "$0")" && pwd)" 2 | unset ZSH_THEME # https://github.com/romkatv/powerlevel10k#cannot-make-powerlevel10k-work-with-my-plugin-manager 3 | export POWERLEVEL9K_DISABLE_CONFIGURATION_WIZARD=true 4 | source $CURR_DIR/powerlevel10k/powerlevel10k.zsh-theme -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Other 3 | about: Any other questions 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | 12 | **For community:** 13 | ⬇️ **Please click the 👍 reaction instead of leaving a `+1` or 👍 comment** 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | xxh 2 | squashfs-root 3 | appimage 4 | xxh-shell* 5 | xxh-plugin* 6 | *.pyc 7 | *.out 8 | *.xcf 9 | *.egg 10 | .eggs/ 11 | .pytest_cache/ 12 | build/ 13 | dist/ 14 | xxh_xxh.egg-info/ 15 | venv/ 16 | 17 | # temporary files from vim and emacs 18 | *~ 19 | *# 20 | .#* 21 | *.swp 22 | *.swo 23 | 24 | # Editor project files 25 | *.komodo* 26 | .cache 27 | .idea 28 | .vscode/ 29 | 30 | # Mac 31 | .DS_Store 32 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [powerlevel10k](https://github.com/romkatv/powerlevel10k) xxh plugin for [xxh-shell-zsh](https://github.com/xxh/xxh-shell-zsh). 2 | 3 | ## Install 4 | Install from xxh repo: 5 | ``` 6 | xxh +I xxh-plugin-zsh-powerlevel10k 7 | ``` 8 | Install from any repo: 9 | ``` 10 | xxh +I xxh-plugin-zsh-powerlevel10k+git+https://github.com/xxh/xxh-plugin-zsh-powerlevel10k 11 | ``` 12 | 13 | ## Connect 14 | ``` 15 | xxh yourhost +s zsh +if 16 | ``` 17 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Local OS (where xxh is installed):** 11 | **Destination host OS:** 12 | **xxh version:** 13 | **xxh-plugins installed:** 14 | 15 | **Steps to Reproduce** 16 | 1. I run `xxh ... +v` 17 | 2. The output log: 18 | 3. What is the problem 19 | 20 | **For community:** 21 | ⬇️ **Please click the 👍 reaction instead of leaving a `+1` or 👍 comment** 22 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | #github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: xonssh # Replace with a single Patreon username 5 | #open_collective: # Replace with a single Open Collective username 6 | #ko_fi: # Replace with a single Ko-fi username 7 | #tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | #community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | #liberapay: # Replace with a single Liberapay username 10 | #issuehunt: # Replace with a single IssueHunt username 11 | #otechie: # Replace with a single Otechie username 12 | #custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | 22 | **For community:** 23 | ⬇️ **Please click the 👍 reaction instead of leaving a `+1` or 👍 comment** 24 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | BSD 2-Clause License 2 | 3 | Copyright (c) 2020, xxh 4 | All rights reserved. 5 | 6 | Redistribution and use in source and binary forms, with or without 7 | modification, are permitted provided that the following conditions are met: 8 | 9 | 1. Redistributions of source code must retain the above copyright notice, this 10 | list of conditions and the following disclaimer. 11 | 12 | 2. Redistributions in binary form must reproduce the above copyright notice, 13 | this list of conditions and the following disclaimer in the documentation 14 | and/or other materials provided with the distribution. 15 | 16 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 17 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 19 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 20 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 22 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 23 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 24 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 | --------------------------------------------------------------------------------